@charset "utf-8";
/* CSS Document */

*{margin:0px; padding:0px;}
.star {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 9px;
	font-style: normal;
	line-height: normal;
	color:#FF0000;
	text-decoration: none;
}
body {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.header-bg {
	background-image: url(../images/header-bg.gif);
	background-repeat: repeat-x;
	background-position: center top;
}
.footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-align:left;
	text-decoration: none;
}
.footer a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
.footer a:hover {
text-decoration:underline;
}
.mnu-top {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	width:78px;
	text-align:center;
	text-decoration: none;
}
.mnu-top a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
	display:block;
	height:22px;
	width:78px;
	padding-top:12px;
}
.mnu-top a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(../images/mnu-hover.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
.hed-pad {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	}
.serv-bg {
	background-image: url(../images/serv-bg.gif);
	background-repeat: repeat-x;
	background-position: center top;
}
.line {
	background-image: url(../images/dot-line.gif);
	background-repeat: repeat-x;
	background-position: center center;
}
.footer-bg {
	background-image: url(../images/footer-bg.gif);
	background-repeat: repeat-x;
	background-position: center top;
}
.footer-sep {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	display:block;
	text-align: center;
	vertical-align: middle;
}
.ttl {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #a0a0a0;
	padding-bottom:5px;
	text-decoration: none;
}
.ttl a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #a0a0a0;
	padding-bottom:5px;
	text-decoration: none;
}
.txarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #333333;
	text-decoration: none;
	background-color: #deeef6;
	width:178px;
	padding-left:3px;
	border: 2px solid #b6d0dc;
}
.srch {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}
.top-txt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
.top-txt a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
.top-txt a:hover {
text-decoration:underline;
}
.had1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}
.had2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #00a0af;
	text-decoration: none;
}
.had3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #00a0af;
	text-decoration: none;
}




/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
.transMenu {
	position: absolute;
	overflow: hidden;
	left: -1000px;
	top: -1000px;
}



/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.transMenu .items {
	position: relative;
	left: 0px;
	top: 0px;
	z-index: 2;
}

.transMenu.top .items {
	border-top: none;
}

/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
.transMenu .background {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	-moz-opacity: .8;
	filter: alpha(opacity=80);
}

/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowRight {
	width: 2px;
	position: absolute;
	z-index: 3;
	top: 3px;
	-moz-opacity: .4;
	filter: alpha(opacity=40);
}

/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowBottom {
	position: absolute;
	z-index: 1;
	left: 3px;
	height: 2px;
	-moz-opacity: .4;
	filter: alpha(opacity=40);
}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
/* each TR.item is one menu item */
.transMenu .item{
  	color:#a0217e;
    font-size:11px;
	font-weight: bold;
    font-family: Tahoma;
    text-decoration:none;
	
	
	margin: 0px;
	border: none;
	display: block; /* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	font-size: 11px;
	cursor: pointer;
	cursor: hand;
	
	/* Border By Atta */
	border:1px;
	border-width:thin;
	border-color:#1fbdd5;
	/* Border By Atta */
}

.transMenu .item td {
	height: 18px;
	line-height: 18px;
	font-size: 11px;
	color: #00A0AF;
	/*	Atta	*/
	
	
}

.transMenu .item.hover {
	/*background: #628862;  */
	background: #1ABBCF;  
	 
	color:#fff;
	/* Atta */
}

.transMenu .item.hover td {
	color:#FFFFFF;
	/*	Atta	*/
}

/* this is either the dingbat that indicates there is a submenu, or a spacer gif in it's place. We give it extra margin to create some space between the text and the dingbat */
.transMenu .item img {
	margin-left: 10px;
}

/* Added classes by Khanh - 050629 */
.transMenu .item#active {
		 
	background: #8BB448;
	color: #FFFFFF!important;
	-moz-opacity: .6;
	filter: alpha(opacity=60);
}

.transMenu .item#active.hover {
	color: #FFFFFF;
}

.manidatory{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FF0000;
}
.lg-bdr {
	border: 3px solid #1bc5d5;
}
 .testi {
	font-family: Arial;
	font-size: 14px;
	color: #000000;
	text-decoration: none;
}
.testi a {
	font-family:Arial;
	font-size:14px;
	color:#0033FF;
	text-decoration: none;
	font-weight:bold;
}
.testi a:hover {
	text-decoration: underline;
}
.testi ul  {
 list-style-type: none;
 padding-left:0;
 margin-left:20px;
 margin-bottom:0px;
 margin-top:30px;
 padding-left:15px;
}

.testi ul li {
	color:#000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size:9pt;
	margin-bottom:8px;
	margin-right:20px;
	padding-left:15px;
	padding-top:5px;
	background-image: url(../images/serv-bullet.gif);
	background-repeat: no-repeat;
	background-position: left 10px;
	line-height: normal;
}


/* End added */
