/***********************************************/
/* 2col_leftNav.css                            */
/* Use with template 2col_leftNav.html          */
/***********************************************/

/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

body{
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	line-height: 1.166;
	margin: 0px;
	padding: 0px;
	background-image: url(images/bg-2.jpg);
	background-repeat: repeat;
}

a:link, a:visited, a:hover {
	color: #0000FF;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #009900;
}
/* overrides decoration from previous rule for hovered links */

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0px;
	padding: 0px;
}

h1{
 font-family: Georgia, "Times New Roman", Times, serif;
 font-size: 2.5em;
 color: #000000;
}

h2{
	font-size: 1.8em;
	color: #000000;
	font-weight: bold;
}

h3{
 font-size: 100%;
 color: #334d55;
}

h4{
 font-size: 100%;
 font-weight: normal;
 color: #333333;
}

h5{
 font-size: 100%;
 color: #334d55;
}

ul{
 list-style-type: square;
}

ul ul{
 list-style-type: disc;
}

ul ul ul{
 list-style-type: none;
}

label{
 font: bold 100% Arial,sans-serif;
 color: #334d55;
}
				

/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#masthead{
	margin: 0;
	width: 100%;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	text-align: center;
}

#navBar{
	padding: 0px;
	top: 160px;
	position: absolute;
	margin-top: 0;
	margin-right: 79%;
	margin-bottom: 0;
	margin-left: 25px;
	width: 220px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
}

#content{
	float:right;
	width: 68%;
	background-image: url(images/transp.png);
	background-repeat: repeat;
	font-size: 1em;
	margin-right: 25px;
	margin-bottom: 15px;
	padding-right: 3%;
	padding-bottom: 0;
	margin-top: 20px;
	
}


/***********************************************/
/*Component Divs                               */
/***********************************************/

#siteName{
	margin: 0px;
	padding: 0px 0px 10px 10px;
}


/*************** #pageName styles **************/

#pageName{
	padding: 0px 0px 10px 10px;
}


/************* #globalNav styles **************/

.example {
	padding: 50px;
}

/* - - - ADxMenu: BASIC styles - - - */

.menu {
	width: 10em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu {
	width: 15em;
}

.menu ul {
	width: 15em;
}

.menu a {
	text-decoration: none;
	font-size: 1.2em;
	color: #FFFFFF;
	background-image: url(images/nav_off.gif);
	font-weight: bold;
	background-repeat: no-repeat;
	height: 47px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 15px;
	display: block;
	background-image: url(images/nav_off.gif);
	font-family: Geneva, Arial, Helvetica, sans-serif;
}

.menu a:hover, .menu li:hover>a {
	color: #999999;
	background-image: url(images/nav_on.gif);
	background-repeat: no-repeat;
	text-decoration: none;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 15px;
	height: 47px;
}

.menu li li:hover>a {
	background:#003399;
	}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 15px;
	left: 90%;
}

.menu li li a{
	font-size:0.7em;
	height: 1.5em;
	width: 15em;
	background-image: url(images/subnavback.jpg);
	background-repeat: repeat-x;
	}

.menu li li:hover>a {
	height: 1.5em;
	background-image: url(images/subnavback_on.jpg);
	background-repeat: repeat-x;
	}


[if lte IE 6]>
/*<![CDATA[*/

/* - - - ADxMenu: BASIC styles - - - */

/*
	this rules improves accessibility - if Javascript is disabled, the entire menu will be visible
	of course, that means that it might require different styling then.
	in which case you can use adxie class - see: aplus.co.yu/adxmenu/examples/ie6-double-style/
 */
.menu ul {
	visibility: visible;
	position: static;
}

.menu, .menu ul {	/* float.clear */
	zoom: 1;
}

.menu li.adxmhover {
	z-index: 10000;
}

.menu .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menu .adxmhoverUL {	/* submenu goes to the right */
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menu li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menu li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menu a:hover, .menu .adxmhoverA {		/* li:hover>a selector */
	color: #999999;
}

.menu .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/*]]>*/	
	
/************* #breadCrumb styles *************/

#breadCrumb{
	font-size: 80%;
	padding: 5px 0px 5px 10px;
}


/************** .feature styles ***************/

.feature{
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding-top: 5px;
	padding-bottom: 10px;
	padding-left: 15px;
}

.feature h3{
	padding: 30px 0px 5px 0px;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	color: #000000;
}
.feature h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 2em;
	color: #0000FF;
}


.feature img{
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.feature a:link {
	color:#0000FF;
	text-decoration: none;
	}
	
.feature a:hover {
	color:#009900;
	text-decoration: underline;
	}
	
.feature a:visited {
	color:#6666FF;
	text-decoration: none;
	}
	
.pics {
	white-space: nowrap;
	clear: both;
	float: none;
	background-position: center;
	text-align: center;
	padding-top: 2%;
	padding-right: 2%;
	padding-bottom: 2%;
	padding-left: 4%;
}

/* adjust margins to change separation between the feature image and text flowing around it */


/************** .story styles *****************/

.story{
	clear: both;
	padding: 10px 0px 0px 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
}
#content .story ul {
	list-style-type: none;
}
#content .story h2 {
	font-size: 1.2em;
	color: #000000;
	text-decoration: underline;
	font-family: Georgia, "Times New Roman", Times, serif;
}



.story p{
	padding: 0px 0px 10px 0px;
}
.story img {
	float: none;
	padding: 2px;
}

.story2 {
	font-size: 0.8em;
	font-weight: normal;
	line-height: 1em;
	}
.story2 p {
	font-size: 1em;
	line-height: 1.14em;
	font-weight: bold;
}

.story2 h1 {
	font-size: 2.2em;
	line-height: 2em;
	color: #000000;
}
.story2 h3 {
	font-size: 1.2em;
	text-align: left;
	line-height: 1.5em;
}
.story2 h2 {
	font-size: 1.8em;
	line-height: 1.8em;
	color: #000000;
}

.story2 ul {
	list-style: circle;
	line-height: 1em;
	font-size: 1em;
	}
	
.story2 ol {
	list-style-position: outside;
	padding-left: 10px;
	line-height: 1em;
	}

.story2 ol ol {
	list-style:lower-alpha;
	}
	

/************* #siteInfo styles ***************/

#siteInfo{
	clear: both;
	border: 1px solid #cccccc;
	font-size: 75%;
	color: #333333;
	padding: 10px 10px 10px 10px;
	margin-top: 0px;
	background-image: url(images/transp.png);
	background-repeat: repeat;
}
/* negative top margin pulls siteinfo up so its top border overlaps (and thus lines up with)
	the bottom border of the navBar in cases where they "touch" */

#siteInfo img{
	padding: 4px 4px 4px 0px;
	vertical-align: middle;
}


/************* #search styles ***************/

#search{
	padding: 5px 0px 5px 10px;
	border-bottom: 1px solid #cccccc;
	font-size: 90%;
}

#search form{
 margin: 0px;
 padding: 0px;
}

#search label{
	display: block;
	margin: 0px;
	padding: 0px;
}


/*********** #navBar link styles ***********/

#navBar ul a:link, #navBar ul a:visited {display: block;}
#navBar ul {list-style: none; margin: 0; padding: 0;}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
#navBar li {}

/* fix for browsers that don't need the hack */
html>body #navBar li {border-bottom: none;}


/*********** #sectionLinks styles ***********/

#sectionLinks a:link{
	width: auto;
	font-size: 1.2em;
	color: #FFFFFF;
	background-image: url(images/nav_off.gif);
	font-weight: bold;
	background-repeat: no-repeat;
	height: 47px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 15px;
}

#sectionLinks a:visited{
	width: auto;
	voice-family: "\"}\"";
	voice-family:inherit;
	width: auto;
	font-size: 1.2em;
	color: #FFFFFF;
	background-image: url(images/nav_off.gif);
	font-weight: bold;
	background-repeat: no-repeat;
	height: 47px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 15px;
	}

#sectionLinks a:hover{
	color: #999999;
	background-image: url(images/nav_on.gif);
	background-repeat: no-repeat;
	text-decoration: none;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 15px;
	height: 47px;
}


/*********** .relatedLinks styles ***********/

.relatedLinks{
	margin: 0px;
	padding: 0px 0px 10px 10px;
	font-size: 90%;
}

.relatedLinks h3{
	padding: 10px 0px 2px 0px;
}


/************** #advert styles **************/

#advert{
	padding: 10px 0px 0px 10px;
	font-size: 80%;
	border-top: 1px solid #cccccc;
}

#advert img{
	display: block;
}


/************** #headlines styles **************/

#headlines{
	margin: 0px;
	padding: 10px 0px 20px 10px;
	font-size: 80%;
}

#headlines p{
	padding: 5px 0px 5px 0px;
}
td {
	font-size: .8em;
	vertical-align: top;
}
th {
	font-size: .8em;
	vertical-align: top;
}
#content .feature ul {
	list-style-type: none;
	line-height: 2em;
}
.flashvid {
	width: 300px;
	float: right;
	padding-bottom: 50px;
	padding-left: 50px;
}
.contform {
	width: 300px;
	padding-left: 20%;
}

.contform table {
	padding-left: 20px;
	left: 20px;
}
