/*----------------------------------
TABLE OF CONTNENTS
  
  Body 16
  Page Titles 35
  Link Styles 78
  Header Elements 135
  Navigation 171
------------------------------------*/

/* 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: #000000;
	color: #2d2e2e;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.82em;
	line-height: 1.4em;
	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. */
	background-image: url(http://www.btes.net/themes/BristolEssential/images/bteshome-bkgd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
img {
	border: 0px;
}	

/*--------------------------------- 
PAGE TITLES 
---------------------------------------*/

h1 {
	font-family: 'Candal', serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	text-shadow: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0em;
	word-spacing: 0em;
	line-height: 1.2;
	color: #316AB4;
}
h2 {
	color: #333333;
	font-size: 1.22em;
	font-weight: bold;
	line-height: 1.8em;
}
h5	{
	color: #000000;
	font-size:2.5em;
	font-weight: bold;
	line-height: normal;
}
h6 {
	color: #074987;
	font-size: 1.0em;
	font-weight: bold;
	line-height: 1.5em;
	padding-left: 70px;
	background-image: url(http://www.btes.net/themes/BristolEssential/images/h6bkgd.gif);
	background-position: left center;
	background-repeat: no-repeat;
	padding-top: 5px;
	padding-bottom: 10px;
}

/*---------------------------------------
LINK STYLES
------------------------------------------*/

a img { border: 0 }

a,  a:link {
  color: #4095df;
  font-weight: bold;
  text-decoration: none;
}
a:visited {
  color: #4870aa;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #2170bd;
  text-decoration: underline;
}
a:focus {
  color: #2170bd;
}
a:active {
  color: #039;
}

/* Additional Link Class*/

a.graylink:link {
	color: #A7A7A7;
	font-weight: bold;
	font-size: 0.8em;
	text-decoration: underline;
}
a.graylink:hover {
	color: #898989;
	font-weight: bold;
	font-size: 0.8em;
	text-decoration: underline;
}	

/* -------------------------------------------
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 {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	overflow: hidden;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
	background-color: #FFFFFF;
}
#outerWrapper #contentWrapper {
	background-color: #FFFFFF;
}

/* -------------------------------------------
HEADER ELEMENTS
----------------------------------------------*/

#header {
	background-color: transparent; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: .95em;
	font-weight: bold;
	line-height: 1.2em; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(http://www.btes.net/themes/BristolEssential/images/headerlogo-bkgd.png);
	background-repeat: no-repeat;
	background-position: left top;
	width: 1000px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
/*#header #logo {
	width: 180px;
	height: 75px;
	position: relative;
	left: 30px;
	top: 40px;
}*/
.button1 {
	float: right;
	height: 60px;
	width: 175px;
}
.button2 {
	float: right;
	height: 60px;
	width: 175px;
	margin-right: 15px;
}

/*--------------------------------------------
NAVIGATION
----------------------------------------------*/

.topNavigation {
	width: 700px;
	z-index: 51;
	margin-top /*\**/: -30px\9;/*--IE8Hack--*/
	*margin-top : 25px;/*--IE7Hack--*/
}

/* ------- Main Nav --------- */

/*#header #topNavigation #nav {
	flaot: left;
	width: 700px;
	height: 35px;
	margin-left: 30px;
}*/


.rightNav {
	height: 40px;
	width: 250px;
	background-image: url(http://www.btes.net/themes/BristolEssential/images/rightnav-bkgd.png);
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 35px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	position: relative;
	top: -20px;
	z-index: 52;
	margin-top /*\**/: 5px\9;/*--IE8Hack--*/
	*top : -20px;/*--IE7Hack--*/
}
.rightNav a{
	font-size: 1.1em;
	color: #333333;
	font-weight: normal;
}

/*------------
NEW HEADER MENU
--------------*/
.nav{
	border:none;
	border:0px;
	font-size:0.9em;
	font-weight:normal;
	text-decoration:none;
	font-family: "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	text-transform: uppercase;
	position: relative;
	top: -4px;
	*top : 10px;/*--IE7Hack--*/
}

.nav ul{
	height:35px;
	list-style:none;
	margin:0;
	padding:0;
}
.nav li{
	list-style: none;
	float:left;
	padding:0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #252C3B;
}
.nav li a{
	background-image: url(http://www.btes.net/themes/BristolEssential/images/navli-bkgd-static.gif);
	background-repeat: repeat-x;
	background-position: center top;
	color:#FFFFFF;
	display:block;
	font-weight:normal;
	line-height:35px;
	letter-spacing:0.0em;
	margin:0px;
	text-align:center;
	text-decoration:none;
	padding-top: 0px;
	padding-right: 7px;
	padding-bottom: 0px;
	padding-left: 7px;
}
.nav li a:hover, .nav ul li:hover a{
	background: #4095df;
	color:#FFFFFF;
	text-decoration:none;
}
.nav li ul{
	background:#232937;
	display:none;
	height:auto;
	padding:0px;
	margin:0px;
	border:0px;
	position:absolute;
	min-width:175px;
	max-width: 220px;
	z-index:250;
	text-align: left;
	/*top:1em;
	/*left:0;*/
}
	.nav li:hover ul{
		display:block;
		
		}
	.nav li li {
		background:url('http://www.btes.net/themes/BristolEssential/images/sub_sep.gif') bottom left no-repeat;
		display:block;
		float:none;
		margin:0px;
		padding:0px;
		min-width:175px;
		max-width: 220px;
		}
	.nav li:hover li a{
		background:none;
		
		}
	.nav li ul a{
	display:block;
	height:35px;
	font-size:1.15em;
	letter-spacing:0.05em;
	font-style:normal;
	margin:0px;
	padding:0px 10px 0px 15px;
	text-align:left;
	text-transform: capitalize;
		}
		.nav li ul a:hover, .nav li ul li:hover a{
			background:#4095df;
			border:0px;
			color:#ffffff;
			text-decoration:none;
			}
	.nav p{
		clear:left;
		}

/* ----------- Footer nav ---------- */

#menu {
	width: 1000px;
	float: left;
}
#menu ul{
	list-style: none;
	float: left;
}

#menu li{
	float: left;
	list-style: none;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 0px;
	left: -35px;
	position: relative;
}
#menu li a {
	color: #999999;
	padding-right: 10px;
	font-weight: normal;
}	

/* ----------------------------------------------- 
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. 
--------------------------------------------------*/

#contenttopcap {
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(http://www.btes.net/themes/BristolEssential/images/content-topcap.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 20px;
}
#contentbottomcap {
	margin: 0;
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 20px;
	background-image: url(http://www.btes.net/themes/BristolEssential/images/content-bottomcap.png);
}
#outerWrapper #contentWrapper #content {
	margin: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFFFFF;
	padding: 10px;
}

/*---------------------------------------------------
NEWS DIVS
-----------------------------------------------------*/
#outerWrapper #contentWrapper #newsleftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 300px;
	min-height: 500px;
	background-image: url(http://www.btes.net/themes/BristolEssential/images/news-leftcol-bkgd.gif);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 10px;
	margin-left: 15px;
}
#outerWrapper #contentWrapper #newsleftColumn1 #newscontent{
	width: 280px;
	margin-left: auto;
	margin-right: auto;
}
/* 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 #newscontentleftcol {
  margin: 0 0 0 320px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/*---------------------------------------------------
LEFT COLUMN DIVS
-----------------------------------------------------*/
#outerWrapper #contentWrapper #leftColumn1 {
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
}
/* 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 #contentleftcol {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 230px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
}

/*---------------------------------------------------
RIGHT COLUMN DIVS
-----------------------------------------------------*/
#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #CCCCCC;
	border-left: solid 1px #a8a2d1; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 250px;
	margin-right: 15px;
}
/* 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 #contentrightcol {
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: 300px;
	margin-bottom: 0;
	margin-left: 0;
}

/*---------------------------------------------------
FOOTER DIVS
-----------------------------------------------------*/
#footer {
	color: #CCCCCC;
	width: 1000px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	text-align: left;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#feedback {
	float: right;
	margin-bottom: 20px;
	border: 1px solid #333333;
	padding: 10px;
	margin-right: 20px;
	background-color: #000000;
	background-image: url(http://www.btes.net/themes/BristolEssential/images/feedback-bkgd.gif);
	background-repeat: repeat-x;
	background-position: center top;
}
#feedback a{
	color: #CCCCCC;
}
#search-go
{
	border: none;
	color: #CCCCCC;
	border: thin none #999999;
	background-color: #000000;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
}
/*------------------------------------
SPEED TEST DIVS
------------------------------------*/
#belowbefore {
	color: #2d2e2e;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.82em;
	line-height: 1.4em;
}