/*Purpose:styles for all of Jim's Ford Corral site site
Name:jfc.css
Copyright: Jim's Ford Corral Museum copyright 2007
Author:Gerald Manweiler GWN Websites
*/

/*PARENT ELEMENT RULES*/

/*purpose:parent element styles
*selectors: html, body
*/
html, body
{
	/*no margin, padding, or border*/
	margin: 0px;
	padding: 0px;
	border: none; 
	/*ie hack for auto margin centering*/
	text-align: center; 
	/*maximize height in browser*/
	height: 100%; 
	/*background color*/
 background-color: #ffffff;
	/*set font and line height to 100%*/
	font-size: 100%;
	line-height: 100%; 
	/*sans-serif fonts*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
}

/*LAYOUT CONTAINERS RULES*/

/*Purpose:styles for wrapper element containing all content of page
*classname:pagecontainer
*/
.pagecontainer
{
 /*set width*/
 width: 86%; 
 /*small top and bottom margin, auto center, no padding*/
 margin: 2% auto 2% auto; 
 padding: 0%;
}

/*CONTENT CONTAINER RULES*/

/*purpose:styles for element containing navbar and brand graphics
*classname:header
*/
.header
{
 /*almost max width*/
 width: 96%;
 /*no top, small bottom margin, auto centered*/
 margin: 0% auto 2% auto;
 /*no padding*/
 padding: 0%;
}

/*purpose:styles for element containing logo
selector: img
classname: logo
NB Elements using this rule are left hand paired with elements using the .info rule
*/
.logo
{
/*float element to left*/
	float: left;
}

/*purpose:style for element containing branding info
classname: info
NB Elements using this rule are right hand paired with elements using the .logo rule
*/
.info
{
 /*float element to right*/
 float: right;
	/*center the text in the element*/
	text-align: center;
	/*set font weight, family, size and line height*/
 font-weight: bold;
	font-family: Georgia, serif;
	font-size: 110%;
	line-height: 110%;
	/*side padding, samll top and bottom padding, no margins*/
	padding: 0% 1% 0% 1%;
	margin: 0%;
}

/*purpose:styles for wrapper element containing main page content
classname:content
*/
.content
{
	/*almost max width*/
 width: 96%;
 /*small top, no bottom margin, auto centered*/
 margin: 2% auto 0% auto;
 /*no padding except bottom*/
 padding: 0% 0% 1% 0%;
}

/*purpose:styles for element containing main page content
classname:contentstext
*/
.contentstext
{
 /*max width*/
 width: 100%; 
 /*clear floats*/
 clear: both; 
 /*small top & bottom margin, auto centered*/
 margin: 1% auto 0% auto; 
 /*small top & bottom padding, no left & right*/
 padding: 1% 0% 0% 0%;
 /*centered text*/
 text-align: center;
 /*light gray background*/
 background-color: #fcfcfc;
	/*dark gray border matching shadows, very thin and solid*/
	border-color: #a7a7a7;
	border-style: solid;
	border-width: 1px;
}

/*purpose:styles for element containing summary home page text
classname:summary
*/
.summary
{
 /*text align left and little bit of left and right margin*/
	text-align: left;
	margin: 0% 1% 0% 1%;
}

/*purpose:styles for home page pics
classname:pics
*/
.pics
{
	/*no padding, no top/bottom margin, auto center, max width in container*/
 padding: 0%;
	margin: 0% auto 1% auto;
	width: 100%;
 /*hide overflow and display horizontally*/
 overflow: hidden;
 display: inline-block;
}

.pics img.left
{
	float: left;
	margin-left: 5%;
}

.pics img.right
{
	float: right;
	margin-right: 5%;
}

/*purpose:styles for element containing map
classname:map
*/
.map
{
 /*clear any outstanding floats*/
 clear: both;
	/*no padding, no top/bottom margin, auto center, max width in container*/
 padding: 0%;
	margin: 0% auto 1% auto;
	width: 100%;	
/*hide overflow*/
 overflow: hidden;
}

/*purpose:styles for home page map
classname:map
descendant:img
id:map
*/
.map img#map
{
 /*float left*/
	float: left;
	/*small black border*/
	border: 1px solid #000000;
	/*no padding, no top/bottom margin, small right, more left margin*/
	padding: 0%;
	margin: 0% 1% 0% 5%;
}

/*purpose:style for home page map direction
classname:map
descendant:div
id:dir
*/
.map div#dir
{
 /*algin text left*/
	text-align: left;
	/*small top padding, little right padding, no bottom/left*/
	padding: 2% 1% 0% 0%;
}

/*purpose:styles for element containing footer
*classname:footer
*/
.footer
{
 /*almost max width*/
 width: 96%;
 /*no top, small bottom margin, auto centered*/
 margin: 0% auto 2% auto;
 /*no padding*/
 padding: 0%;
}

/*NAVIGATION ELEMENTS RULES*/

/*purpose:style rules for element containing crumbtrail links
classname:crumbtrail
*/
.crumbtrail
{
	/*set font size, family, and weight*/
	font-size: 105%;
	font-family: Georgia;
 font-weight: bold;	
	/*set padding, and bottom margin*/
	padding: 5px 0px 5px 15px;
	margin-bottom: 5px;
}

/*purpose:styles for horizontal navigation bar
classname:chromestyle
*/
.chromestyle
{
 /*clear any preceding floats*/
	clear: both;
	/*small top padding*/
 padding: 1% 0% 0% 0%;
	margin: 0% auto 0% auto;
 /*max widht in containing element*/
 width: 100%;
	/*set family and size*/
	font-family: Georgia, serif;
	font-size: 80%;
}

/*purpose:styles for horizontal nav bar unordered list
classname: chromestyle
descendant: ul
*/
.chromestyle ul
{
 /*thin solid grayish border*/
 border: 1px solid #BBB;
	/*small top padding, no right, no margins*/
 padding: 4px 0px 0px 0px;
 margin: 0%;
	/*max width in container*/
	width: 100%;
	/*align contained text to center*/
 text-align: center;
	/*no list markers*/
	list-style-type: none;
	/*background image*/
 background: url(../images/chromebg.gif) center center repeat-x;
}

/*purpose:styles for horizontal nav bar list items
classname:chromestyle
descendants: ul li
*/
.chromestyle ul li
{
 /*display list items horizontally*/
 display: inline;
}

/*purpose:styles for horizontal nav bar anchors
classname:chromestyle
descendants: ul li a
*/
.chromestyle ul li a
{
 /*set black link color*/
 color: #000000;
	/*small top padding and more right padding*/
 padding: 4px 8px 0px 8px;
	/*no text decoration for link and bold text*/
 text-decoration: none;
 font-weight: bold;
	/*thin solid red-grayish border*/
 border-right: 1px solid #E8BEBE;
}

/*purpose:style for horizontal nav bar anchor with left border
classname:chromestyle
descendants: ul li a classname:leftbar
*/
.chromestyle ul li a.leftbar
{
	/*thin solid red-grayish border*/
 border-left: 1px solid #E8BEBE;
 padding-left: 8px;
}

/*Purpose:style for horizontal nav bar pseudoclass link & visited colors
classname:chromestyle
descendants: ul li a
Pseudoclasses:link, visited
*/
.chromestyle ul li a:link, .chromestyle ul li a:visited
{
 /*black links only*/
 color: #000000;	
}

/*Purpose:style for horizontal nav bar pseudoclass hover color
classname:chromestyle
descendants:ul li a
Pseudoclass:hover
*/
.chromestyle ul li a:hover
{
 /*black links only and use background image*/
 color: #000000;
 background: url(../images/chromebg-over.gif) center center repeat-x;
}

/*purpose:styles for null link
classname:chromestyle
descendant selectors: ul li a
descendant selector/classname: li.null
descendant selector/psuedoclasses: a:link, a:visited, a:hover
*/
.chromestyle ul li.null a:link, .chromestyle ul li.null a:visited, .chromestyle ul li.null a:hover
{
 /*grey text and overide hover rule to no background image*/
 color: #A9A9A9;
	background: none;
}

/*UNDER CONSTRUCTION RULES*/
/**NB thse rules will eventually not be needed*/

/*purpose:styles for elements containing "under construction" content
classname:construction
*/
.construction
{
 /*no top & bottom margin, auto centered, no padding*/
 margin: 0% auto 0% auto;
 padding: 0%;
	width: 100%;
	/*set font size, weight, family*/
 font-size: 100%;
 font-weight: bold;
	font-family: Georgia;
	/*set background image*/
	background-image: url(../images/ucbar.gif);
	background-position: bottom center;
	background-repeat: no-repeat;
	/*hide overflow and display horizontally*/
 overflow: hidden;
 display: inline-block;
}

/*purpose:style rule for leftside under construction image
classname:construction
descendant:img id:left
*/
.construction img#left
{
	float: left;
	margin: 0%;
	padding: 0%;
}

/*purpose:style rule for righttside under construction image
classname:construction
descendant:img id:right
*/
.construction img#right
{
	float: right;
	margin: 0%;
	padding: 0%;
}

/*TEXT ELEMENT RULES*/

/*purpose:style rules for heading elements
selectors:h1 h2 h3
*/
h1, h2, h3
{
 /*serif fonts, bold*/
 font-family: Georgia, "MS Serif", serif;	
 font-weight: bold;
}
/*purpose:style rules for h1 elements
*selector:h1
*/
h1
{
	/*big and spaced apart*/
	font-size: 130%;
	letter-spacing: 2px;
}

/*purpose:style rules for h2 elements
selector:h1
*/
h2
{
	/*not quite as big and not quite as spaced apart*/
	font-size: 120%;
	letter-spacing: 1px;
	/*decreased line height for vertical spacing*/
	line-height: 20%;
}

/*purpose:style rules for h2 elements
selector:h3
*/
h3
{
	/*slightly bigger than normal*/
	font-size: 105%;	
}

/*purpose:style rules for indenting text
classname:leftindent
*/
.leftindent
{
 /*left alignment and small indent*/
 text-align: left;
 text-indent: 3ex;
 /*small top margin*/
 margin-top: 2%;
	margin-right: 2%;
	margin-left: 2%;
}
/*Purpose:set hyperlink styles for all anchors not previously covered
*Selector:a
*/
a
{
 /*no underline*/
	text-decoration: none; 
}

/*
Purpose:set hyperlink pseudoclass link color style
Selector:a
Pseudoclass:link
*/
a:link
{
 /*blue*/
 color: #0066ff;
}

/*
Purpose:set hyperlink pseudoclass visited color style
Selector:a
Pseudoclass:visited
*/
a:visited
{
 /*purple*/
 color: #9966cc;			
}

/*
Purpose:set hyperlink pseudoclass hover color style
Selector:a
Pseudoclass:hover
*/
a:hover
{
 /*green*/
 color: #009933;
}

/*purpose:style rules for copyright notice
classname:copyright
*/
.copyright
{
 /*normal line height*/
	line-height: 100%;
	/*font settings*/
	font-size: 70%;
	font-style: italic;
	font-family: Verdana;
	font-weight: bold;
	/*small padding*/
	padding: 1%;
	/*medium grey text*/
	color: #a7a7a7;
}