@charset "UTF-8";

/*** iPhone or Mobile APPROACH Horizontal Navigation Website Styles by TED Incorporated (w/ stuHover NavBar) ***/

/*** After-thought add-ins to resize search box text and footer text. (I should really incorporate these into the respective divs...) ***/

.style1 {font-size: 65%}
.style2 {font-size: 75%}
.style3 {
	font-size: 90%;
	font-weight: bold;
	}

/*** Remove space between table cells on home page. ***/

table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
}

table img {
	display:block;
	margin-left: auto;
    margin-right: auto;
}/*** This tag removes horizontal space between table cells. ***/





/*** Begin Scrollable Styles. ***/

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 647px;	 
	height:300px;
		
}

/* Link colours for the scrollable nav list. */
div.scrollable a:link { 
	color: #999999;
	text-decoration: none;
	}
div.scrollable a:visited { 
	color: #999999;
	text-decoration: none;
	}
div.scrollable a:hover { 
	color: #000000;
	text-decoration: none;
	}
div.scrollable a:active { 
	color: #000000;
	text-decoration: none;
	}


/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:1px solid #222;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}



/* single item */
#thumbs div {
	float:left;
	width:214px;
	height:300px;
	background:#333 url(../images/scrollable/h150a.png) repeat-x 0 166px;
	color:#fff;
	border-left:1px solid #333;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#666666;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;		
	font-family:"bitstream vera sans";
	font-size:13px;
	color:#fff;	
}

#thumbs h3 em {
	font-style:normal;
	color:#FFFFFF;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/scrollable/arrow/left.png) no-repeat;
	float:left;
	margin:43px 6px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/scrollable/arrow/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	


/*** End Scrollable Styles. ***/




/*** These 2 tags style the BoxOver tooltips. ***/

.dvhdr1 {
            background:#F3F0E7;
            font-family:arial;
            font-size:12px;
            font-weight:bold;
            border:1px solid #C8BA92;
            padding:5px;
            width:150px;
			text-align: left;
         }
         
.dvbdy1 {
            background:#FFFFFF;
            font-family:arial;
            font-size:12px;
            border-left:1px solid #C8BA92;
            border-right:1px solid #C8BA92;
            border-bottom:1px solid #C8BA92;
            padding:5px;
            width:150px;
			text-align: left;
         }




/*** Global Link styles (used to apply red link colour and remove text decoration). ***/

a:link { 
	color: #CC0000;
	text-decoration: none;
	}
a:visited { 
	color: #CC0000;
	text-decoration: none;
	}
a:hover { 
	color: #000000;
	text-decoration: none;
	}
a:active { 
	color: #000000;
	text-decoration: none;
	}

/*** Body styles ***/

body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #FAFAFA;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #474747;
}

/*** Wrapper styles ***/

.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FAFAFA;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 100%;
	margin-top: 15px;
}

/*** Header styles. Header Div contains Banner and Search Divs ***/

.oneColFixCtrHdr #header {
	background: #FAFAFA; 
	height: 135px;
	margin-top: 20px;
	margin-bottom: 10px;
}

/*** Left floating banner ***/

.oneColFixCtrHdr #banner {
	background: url(../images/APPROACH-Banner-3Web.gif);
	background-repeat:no-repeat;
	height: 135px;
	width: 575px;
	float: left;
}

/*** Right floating search box ***/

.oneColFixCtrHdr #search {
	width: 200px;
	height: 125px;
	padding-top: 10px;
	float: right;
	line-height: 11pt;
}

/*** Header text styles. Unused here, but kept just in case... ***/

.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Horizontal, nested navbar styles. */

.preload1 {background: url(../images/three_1.gif);}
.preload2 {background: url(../images/three_1a.gif);}

/*** Basic navbar styles ***/

#nav {padding:0; margin:0; list-style:none; height:38px; background:#fff url(../images/three_0.gif) repeat-x; position:relative; z-index:500; font-family:arial, verdana, sans-serif;}
#nav li.top {display:block; float:left; height:38px;}

#nav li a.top_link {display:block; float:left; height:35px; line-height:33px; color:#333333; text-decoration:none; font-size:12px; font-weight:bold; padding:0 0 0 9px; cursor:pointer;background: url(../images/three_0.gif);}/*** Basic/Visible navbar text styles, among other things. ***/

#nav li a.top_link span {float:left; display:block; padding:0 28px 0 16px; height:35px; background: url(../images/three_0.gif) right top no-repeat;}
#nav li a.top_link span.down {float:left; display:block; padding:0 28px 0 16px; height:35px; background: url(../images/three_0a.gif) no-repeat right top;}

/*** Hover over navbar styles ***/

#nav li:hover a.top_link {color:#fff; background: url(../images/three_1.gif) no-repeat;}
#nav li:hover a.top_link span {background:url(../images/three_1.gif) no-repeat right top;}
#nav li:hover a.top_link span.down {background:url(../images/three_1a.gif) no-repeat right top;}

/* Default list styling */

#nav li:hover {position:relative; z-index:200;}

/*** Primary dropdown/nested list styles ***/

#nav li:hover ul.sub
{left:1px; top:38px; background: #CCCCCC; padding:3px; border:1px solid #000000; white-space:nowrap; width:190px; height:auto; z-index:300; 	
	font: menu;/*** JB's Firefox chopped font fix. ***/
}
#nav li:hover ul.sub li
{display:block; height:20px; position:relative; float:left; width:190px; font-weight:normal;}
#nav li:hover ul.sub li a
{display:block; font-size:11px; height:18px; width:188px; line-height:18px; text-indent:5px; color:#000; text-decoration:none;border:1px solid #CCCCCC;} /*** Dropdown text styles, among other things. ***/
#nav li ul.sub li a.fly
{background:#CCCCCC url(../images/arrow.gif) 180px 6px no-repeat;}
#nav li:hover ul.sub li a:hover 
{background:#999999; color:#fff; border-color:#fff;}
#nav li:hover ul.sub li a.fly:hover
{background:#999999 url(../images/arrow_over.gif) 180px 6px no-repeat; color:#fff;}

/*** I think these are styles for second generation dropdown/nested list, as yet unused... ***/

#nav li:hover li:hover ul,
#nav li:hover li:hover li:hover ul,
#nav li:hover li:hover li:hover li:hover ul,
#nav li:hover li:hover li:hover li:hover li:hover ul
{left:190px; top:-4px; background: #CCCCCC; padding:3px; border:1px solid #000000; white-space:nowrap; width:190px; z-index:400; height:auto;}

#nav ul, 
#nav li:hover ul ul,
#nav li:hover li:hover ul ul,
#nav li:hover li:hover li:hover ul ul,
#nav li:hover li:hover li:hover li:hover ul ul
{position:absolute; left:-9999px; top:-9999px; width:0; height:0; margin:0; padding:0; list-style:none;}

#nav li:hover li:hover a.fly,
#nav li:hover li:hover li:hover a.fly,
#nav li:hover li:hover li:hover li:hover a.fly,
#nav li:hover li:hover li:hover li:hover li:hover a.fly
{background:#999999 url(../images/arrow_over.gif) 170px 6px no-repeat; color:#fff; border-color:#fff;} 

#nav li:hover li:hover li a.fly,
#nav li:hover li:hover li:hover li a.fly,
#nav li:hover li:hover li:hover li:hover li a.fly
{background:#CCCCCC url(../images/arrow.gif) 160px 6px no-repeat; color:#000; border-color:#CCCCCC;} 

/* End of horizontal, nested navbar styles. */

/*** Main content area styles ***/

.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FAFAFA;
	font-size: 85%;
}

/*** The footerbox contains the bottomnav and footer divs. ***/

.oneColFixCtrHdr #footerbox {
	background:#FAFAFA;
	border-top: 1px solid #000000;
}

/*** Left floated bottom navigation styles ***/

.oneColFixCtrHdr #bottomnav {
		padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */

	background:#FAFAFA;
	text-align: left;
	float: left;
}

/*** Right floated footer (copyright) styles ***/

.oneColFixCtrHdr #footer {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FAFAFA;
	text-align: right;
	float: right;
}

/*** Original footer text styles ***/

.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/*** The notice below is a requirement to use the javascript dropdown navbar. ***/

/* ================================================================ 
This copyright notice must be kept untouched in the stylesheet at 
all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.stunicholls.com/menu/pro_drop_2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

