/* CSS Document */
body {font-family:Helvetica,Verdana, Arial, sans-serif; width:100%; height:100%; background-color:#21076A; /*background-image:url(../images/default/background-clouds.jpg); background-attachment:fixed;*/}
* {margin:0; padding:0;} 

/*
body {font-family:Helvetica,Verdana, Arial, sans-serif; width:100%; height:100%; background-color:#0a4e74; background-image:url(../images/default/bckgrnd_blue.jpg); background-repeat:repeat-x;}
* {margin:0; padding:0;} 
*/

/**** Common formatting. ****/
/****Here we define the css that is for the whole page ****/
div#wrapper {
	width:760px;
	margin:0 auto;
}
div#page {width: 760px; margin: 0px auto; background-color:#FFFFFF; margin-top:20px;}

div#page a { /* Here we define the default css for links */
	color:#0A344C;
}
div#page a:visited {}

p { 
	color:#0A344C; /* default font color for the page */
	padding:0 0 10px 0;
	font-size:0.90em;
}

h1, h2, h3 { color:#0A344C;}
img { border:none;}

li { list-style-type:none;}

table { font-size:0.90em; color:#0A344C;}
/**** Global Classes *****/
.hidden {display: none;}
.bold { font-weight:bold;}
.italic { font-style:italic;}
.txtCenter { text-align:center;}
.clear { clear:both;}
/**** the horizontal menu starts here ****/
div#listmenu {
	width:100%; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	font-size:.8em;	/* SET FONT-SIZE HERE */
	background-color:#dbbd85; /* colors the div */
	padding:2px 0px 2px 0px;
	}
div#listmenu ul {
	margin:0 0 0 9%;/* indents ul from edge of container */
	
	}
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#dbbd85; /*sets the background of the menu items */
	border-right:1px solid #0A344C; /* creates dividing lines between the li elements */
	font-weight:bold;
	
	}
	/*div#listmenu li:last-child {border:none;}*/ /* !!This fucks up the last item in the dropdown menus!! */
div#listmenu li:first-child {
	/*border-left:1px solid #FFF; /*the first vertical line on the menu */
	}
div#listmenu li:hover {
	/*background-color: #999999; /*sets the background of the menu items */
	}
div#listmenu a {
	display:block; /*makes list items in drop down highlight and wrapped lines indent correctly */
	padding:0 20px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#0A344C;	/* sets the type color */
	padding-top:0px;
	padding-bottom:2px;
	
	}
div#listmenu a:hover {
	background-color:#cdb17c;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:12em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	}
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	/*border-left:1px solid #FFF; /*  three sides of each drop-down item 
	border-bottom:1px solid #FFF;*/
	border-right:none;
	/*padding:2px 0 2px;*/
	}
/*div#listmenu ul li ul li:hover {background-color:#00A9FB;}*/ /* MY CODE */
div#listmenu ul li ul li:first-child {
/*	border-top:1px solid #FFF;*/ /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#listmenu ul li ul li ul  {
	visibility:hidden; /* same effect as display:none in this situation */
	top:-1px;
	left:10em;
	}
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* second level popouts start here*/
div#listmenu ul li ul li:hover ul li ul {visibility:hidden;}
div#listmenu ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* third level popouts start here*/
div#listmenu ul li ul li ul li:hover ul li ul {visibility:hidden;}
div#listmenu ul li ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	/*border-left:1px solid #FFFFFF; /* adds the rightmost menu vertical line to the ul */
	margin-left:4.5%; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
/*	border-top:1px solid #FFF;*/
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  div#listmenu ul li ul li ul { 
  left:9.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:10em;
  }
/* and the "be nice to Opera" rule */
html>body div#listmenu ul li ul li ul {
  left:10em;
  }


/* finally after feeding values to all others, we deal with MAc5 IE */
/* IE5 Mac can't do drop-downs so we need to present the info in a different way*/
/* we present the drop down choices in a row and never show any second-level drops */
 /* this stylesheet is read by IE5 Mac only - hack omits 'url' and leave no space between @import and ("   */
@import("ie51_menu_hack.css"); 
/* END OF DROP DOWN MENUS */

/* Clearfix */
/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */

/* Default code for the site */
.hometxtblock {margin-bottom: 20px;}
.hometextblock p {padding: 0px 30px;}

/*Text at bottom*/
div#textbottom{font-family:Arial, Helvetica, sans-serif; color:#fff; font-size:.80em; background-color:#0a4e74;}

div#clearfloats {
clear:both;
}
/*added by Giri*/
#container{
    margin-bottom: 35px;
}
