/* CSS Document */
/* French Ranges Global CSS Document */
/*	Author:			Steve Waag 
*	Date:			April 5, 2010	
*	Version:		1.0
*	File:			main.css
*	Description:	CSS File to style the main elements in every page	
*/


/* the height spawns a vertical scrollbar on all pages
 * to prevent short pages jumping to the left on Firefox */
html, body{
height: 101%;
}

html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset{
margin: 0;
padding: 0;
border: 0;
}

body{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
text-align: left;
background-color: #000000; 
}

a{
text-decoration: none;
color: #666;
}

a:hover{
text-decoration: underline;
color: #232323;
}

#banner{
position: relative;
width: 940px;
}

#nav{
position: absolute;
top: 130px; /* you could also use auto here to glue the nav to the bottom of banner (as long as the banner is the nearest positioned ancestor) */
left: 0px;
background-image: url(../images/head/nav_bar_background.gif);
background-repeat: no-repeat;
width: 940px;
height: 22px;
z-index: 1000;
}

.breadcrumbs{
position: relative;
top: 22px;
left: 50px;
width: 770px;
height: 20px;
font-size: 65%;
font-weight: bold;
padding-top: 10px;
padding-left: 5px;
color: #666666;
letter-spacing: 2px;
text-align: left;
word-spacing: 3px;
}

.breadcrumbs-new{
margin: 22px 0 0 50px;
height: 20px;
font-size: 65%;
font-weight: bold;
padding-top: 10px;
padding-left: 5px;
color: #666666;
letter-spacing: 2px;
text-align: left;
word-spacing: 3px;
}

/* This is the brown color column on the right side of the page.
   The height is set individual for each column as inline CSS. */
#rightcol{
margin-top: 0px;
margin-right: 10px;
margin-bottom: 10px;
float: right;
position: relative;
display: inline; /* another IE bug (doubling the left margin of a floated element) is killed with display: inline */ 
background-image: url(../images/content/col_right_col_background.gif);
background-repeat: repeat-y;
width: 220px; /* floats must have a width */
}

#footer{
clear: both;
text-align: center;
border-top: 1px solid #505050;
margin-top: 10px;
padding-top: 0.25em;
padding-bottom: 0.5em;
padding-left: 0.25em;
font-size: 70%;
letter-spacing: 1px;
color: #383838;
word-spacing: 2em; /* word-spacing is not supported by WinIE v5 and 5.5 but impact minimal in these browsers */

}

#footer a{
text-decoration: none;
color: #383838;
}

#footer a:hover{
text-decoration: underline;
color: #0C0C0C;
}
