/* Mobile CSS */
body{
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	color: #111111;
}

#header{
	width: 960px;
	height: 110px;
	margin: 0px auto;
	padding: 0px auto;
	/*border: 1px solid red;*/
}

#header a:link {color: #333333;text-decoration: none;}
#header a:visited {color: #333333;text-decoration: none;}
#header a:hover {color: #333333;text-decoration: none;}
#header a:active {color: #333333;}

#header .btn_login{
	width: 100px;
	height: 25px;
	background-image: url(../images/btn_bg.jpg);
	background-repeat:repeat-x;
	color: #FFFFFF;
}

#header .btn_login a:link {color: #FFFFFF;text-decoration: underline;}
#header .btn_login a:visited {color: #FFFFFF;text-decoration: underline;}
#header .btn_login a:hover {color: #FFFFFF;text-decoration: underline;}
#header .btn_login a:active {color: #FFFFFF;}

a:link {
	color: #b5121b;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	font-size: 12px;
	line-height: 20px;
}
a:visited {
	color: #b5121b;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	font-size: 12px;
	line-height: 20px;
}
a:hover {
	color: #b5121b;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	font-size: 12px;
	line-height: 20px;
}
a:active {
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	font-size: 12px;
	line-height: 20px;
}




.link_red_small_undline {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-decoration: underline;
	color: #b5121b;
}

.link_red_small_undline:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-decoration: underline;
	color: #b5121b;
}

.link_red_small_undline:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-decoration: underline;
	color: #b5121b;
}

.link_red_small_undline:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-decoration: underline;
	color: #b5121b;
}

.link_red_small_undline:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-decoration: underline;
	color: #b5121b;
}


.text_1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}



.Big_Title_black {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
}
.Big_Title_red {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #b5121b;
	font-size: 20px;
	font-weight: bold;
}
.First_text_red {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #B5121B;
	font-weight: bold;
}
.Text_red {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #B5121B;
	font-weight: bold;
}
.Text_white {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #ffffff;
	font-weight: bold;
	font-size: 12px;
}
.Text_white_unbold {
		color: #ffffff;
	font-weight: none;
	
}
.Text_remarks {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}

td.menuon { background-color: #000000; color: #B5121B; font-size:13px; }
td.menuoff { background-color: #fff2ed; color: #B5121B; font-size:13px; }

/* Menu -------------------------------------------------- */
	#nav1 {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav1 li {
			float:left; 
			display:block; 
			width:289px; 
			background:#ccc; 
			position:relative;
			z-index:500; 
			margin:0 1px;
		}
		
		/* this is the parent menu */
		#nav1 li a {
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:700;  
			height:23px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#333;
		}

		#nav1 li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav1 a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav1 ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav1 ul li {
			width:100px; 
			float:left; 
			border-top:1px solid #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav1 ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		
		#nav1 ul a:hover {
			text-decoration:underline;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav1 ul {
			margin:0 0 0 -2px;
		}
		
/*---------------------------------------------------------------------------------- */

/* Menu -------------------------------------------------- */
	#nav2 {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav2 li {
			float:left; 
			display:block; 
			width:223px; 
			background:#ccc; 
			position:relative;
			z-index:500; 
			margin:0 1px;
		}
		
		/* this is the parent menu */
		#nav2 li a {
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:700;  
			height:23px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#333;
		}

		#nav2 li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav2 a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav2 ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav2 ul li {
			width:100px; 
			float:left; 
			border-top:1px solid #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav2 ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		
		#nav2 ul a:hover {
			text-decoration:underline;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav2 ul {
			margin:0 0 0 -2px;
		}
		
/*---------------------------------------------------------------------------------- */
/* Menu -------------------------------------------------- */
	#nav3 {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav3 li {
			float:left; 
			display:block; 
			width:232px; 
			background:#ccc; 
			position:relative;
			z-index:500; 
			margin:0 1px;
		}
		
		/* this is the parent menu */
		#nav3 li a {
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:700;  
			height:23px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#333;
		}

		#nav3 li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav3 a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav3 ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav3 ul li {
			width:100px; 
			float:left; 
			border-top:1px solid #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav3 ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		
		#nav3 ul a:hover {
			text-decoration:underline;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav3 ul {
			margin:0 0 0 -2px;
		}
		
/*---------------------------------------------------------------------------------- */
/* Menu -------------------------------------------------- */
	#nav4 {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav4 li {
			float:left; 
			display:block; 
			width:219px; 
			background:#ccc; 
			position:relative;
			z-index:500; 
			margin:0 1px;
		}
		
		/* this is the parent menu */
		#nav4 li a {
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:700;  
			height:23px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#333;
		}

		#nav4 li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav4 a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav4 ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav4 ul li {
			width:100px; 
			float:left; 
			border-top:1px solid #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav4 ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		
		#nav4 ul a:hover {
			text-decoration:underline;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav4 ul {
			margin:0 0 0 -2px;
		}
		
/*----------------------------------Press Releases------------------------------------------ */

  .almcOnlineTitle {
    background-color: #858484;
    color: #FFFFFF;
    font-family: Verdana,Geneva,sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
  }
  
  .padding_bottom_5px {
    padding-bottom: 5px;
  }
  .padding_right_10px {
    padding-right: 10px;
  }
  .padding_left_10px {
    padding-left: 10px;
  }
  .padding_top_10px {
    padding-top: 10px;
  }
