/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #14324b;
	background-image: url("../../images/interface/background_2008.jpg");
	background-repeat: repeat-x;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/*
a, a:link {
	color: #000;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #000;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
}

*/

/* Navigation */
#nav {
	margin: 0;
	padding: 0;
	background: #14324b;
	list-style-type: none;
	font-size: 11px;
	height: 32px;
	text-align: center;
	}
#nav li {
	margin: 0;
	padding: 0;
	float: left;
}
#nav a {
	display: block;
	padding: 8px 15px 15px 15px;	
	text-align: center;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #fff;
}
#nav #nav_con a {
	border: none;
}
#indexLeft001 {
	font-family: "Lucida Sans", "Trebuchet MS", sans-serif;
	font-size: 13px;
	line-height: 18px;
	width: 450px;
	background: url("../../images/interface/bkgrd_com.jpg") no-repeat bottom;
	padding: 20px 15px 30px 15px;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 828px;
}
#outerWrapper #topnav {
	background-color: #14324c;
	font-size: 18px;
	font-weight: bold;
	height: 30px;
	line-height: 15px;
	padding: 0 auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 800px;
	padding-top: 11px;
	padding-right: 28px;
	text-align: right;
}


#topnav p {
    font-size: 11px;
	margin: 0;
	color: #fff;
	font-weight: normal;
	}
#topnav p span {
    margin: 0 4px;
	}
#topnav p a:link,
#topnav p a:visited {
    color: #fff;
	background: none;
	font-weight: normal;
    }
#topnav p a:hover {
    color: #fff;
	}



#outerWrapper #branding {
	background-color: #ebebeb;
	background-image: url("../../images/interface/header_2008.jpg");
	height: 245px;
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 828px;
}
#outerWrapper #middlenav {
	height: 32px;
	padding: 0 auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 828px;
	background: #14324b;
	}


#outerWrapper #contentWrapper #indexright {
	float: right;
	padding: 10px 40px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 229px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
}


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #indexleft {
	margin: 0 0px 20px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 0px 0px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 480px;
}

/* CONTENT PAGE COLUMNS */

#outerWrapper #contentWrapper #columnleft {
	padding: 10px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin: 0 18px 0 18px;
	width: 188px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	float: left;
}

#outerWrapper #contentWrapper #columnright {
	margin: 10px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 20px 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 560px;
	float: right;
}

#subindexright {
	float: right;
	margin-top: 20px;
	padding: 0 auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 229px;
	font-family: "Lucida Sans", "Trebuchet MS", sans-serif;
	font-size: 11px;
	line-height: 16px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#subindexleft {
	margin-top: 20px;
	padding: 0 auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 229px;
	float: left;
	font-family: "Lucida Sans", "Trebuchet MS", sans-serif;
	font-size: 11px;
	line-height: 16px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
.clearFloat {
	clear: right;
	display: block;
}
#outerWrapper #footer {
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#footer {
 height: 130px;
 background: #14324b url(../../images/interface/footer_2008.jpg) bottom no-repeat;
 
 }

#footer p {
    font-size: 11px;
	margin: 0;
	color: #fff;
	font-weight: normal;
	}
#footer p span {
    margin: 0 4px;
	}
#footer p a:link,
#footer p a:visited {
    color: #fff;
	background: none;
	font-weight: normal;
    }
#footer p a:hover {
    color: #fff;
	}
p.copyright {
    display: block;
	padding-bottom: 10px;
	}
p.footerlinks {
    color: #fff;
    display: block;
	}
/*------------------------------------ */
/*navigation*/
/*------------------------------------ */


#navigation {
	margin: 0;
	padding: 0;
	text-align: left;
}
#navigation ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-family: "Trebuchet MS", sans-serif
}
#navigation ul li {
	font-size: 13px;
	display: inline;
	margin: 0;
	padding: 0;
}
#navigation ul li a {
	display: block;
	float: right;
	margin: 0;
	padding: 10px 12px 20px 12px;
	border: none;
}
#navigation ul li a:link {
	color: #e1decd;
	text-decoration: none;
	background: none;
}
#navigation ul li a:visited {
	color: #e1decd;
	text-decoration: none;
	background: none;
}
#navigation ul li a:hover {
	color: #fff;
	text-decoration: none;
	background: #c08520;
}


/* NAVBAR */

div#navbar {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: .8em;
	font-weight: bold;
	text-align: right;
	}
	
#navbar ul li a:link, #navbar ul li a:visited {
	color: #999;
	background-color: #ffffff;
	text-decoration: none;
	display: inline;
	border-left: solid #fff 0px;
	padding-top: 0px;
	padding-left: 10px;
	padding-bottom: 0px;
	padding-right:18px; 
	}
/*
#navbar ul li a.current {
	color: #90bded;
	background-color: #ffffff;
	text-decoration: none;
	border-left: solid #f78e1a 30px; 
	}
	*/
	
	
#home #navbar ul li a.home ,
#about #navbar ul li a.about,
#services #navbar ul li a.services,
#information #navbar ul li a.information
{
	color: #90bded;
	background-color: #ffffff;
	text-decoration: none;
	border-left: solid #f78e1a 30px; 
	
}	
	
	
	
	
#navbar ul li a:hover {
	color: #0080ff;
	background-color: #ffffff;
	text-decoration: none;
	}
		
	
#navbar ul li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: inline;
}
#navbar ul {
	padding: 25px 0px 0px 0px;
	margin: 0px;
}

/* Site Nav */


#mynavigation ul, #mynavigation ul li {
     list-style: none;
     margin: 0;
     padding: 8px 0 0 0;
	 font-size: 12px;
 }


 #mynavigation ul {
     text-align: center;
 }

 #mynavigation ul li {
     display: inline;
   
	 padding: 0px 10px 0px 10px;
 }

 #mynavigation ul li.last {
     margin-right: 0;
 }
 
 
 #mynavigation li a {
     padding: 5px 30px 5px 30px;
	  }
 
 #mynavigation ul li a {
     color: #fff;
     padding: 5px 0;
     text-decoration: none;
 }


 #mynavigation ul li a span {
     padding: 5px 1em;
 }

 #mynavigation ul li a:hover span {
     color: #fff;
     text-decoration: underline;
 }