/*----------------------------------------------------------*/
/* Gearin' Up												*/
/* CSS name: main.css										*/
/* Developer: MindPick Software LLC							*/
/* Date: 6/5/2009											*/
/*															*/
/* Description: Style sheet for elements of all pages	 	*/
/* 		and all media.										*/
/*----------------------------------------------------------*/


			/*-----------------------------*/
			/*** Generic HTML selectors. ***/
			/*-----------------------------*/
			
/*-----------------------------------------*/
/* Reset so all browsers format the same.  */
/*-----------------------------------------*/
* {
	margin: 0;
	border: 0;
	padding: 0;
}
body {
	line-height: 1.0;
}
h1, h2, h3, h4, h5, h6, p, pre, ul, ol, dl, address, fieldset, menu, dir, form {
	margin: 1em 0;
}
blockquote {
	margin: 1em 40px;
}
li, dd {
	margin-left: 40px;
}
fieldset {
	padding: .5em;
}
select {
	min-width: 1.5em;  /* Fixes bug - dropdown arrow hidden - in older Firefox when margin, padding 0 */
}
abbr, acronym {
	border-bottom: 1px dotted #333;	cursor: help;}
hr {
	border-style: inset;
	border-width: 1px;
}

/*----------------------------------------------------------*/
/* Set overall background color and font info. Also, set	*/
/* the minimum window width. Use a hack for IE6. The		*/
/* window will have gutters on either side.					*/
/*----------------------------------------------------------*/
body {
	min-width: 780px;
	padding: 0 15px;
	color: #100040;
	background-color: #660099;
	line-height: 1em;
	text-align: center;
}

* html body {
	width: expression( document.documentElement.clientWidth < 782 ? "780px" : "auto");
}



				/*----------------------------*/
				/*** Page layout (3 column) ***/
				/*----------------------------*//*-------------------------------------------------------------------*/
/* page_body is the section of the page between the header and		*/
/* the footer. Set margins to make it slighyly narrower than the	*/
/* navigation menu. Also, set default content font info, including	*/
/* 12px font size.       											*/
/*------------------------------------------------------------------*/
#page_body {
	clear: both;
	display: block;
	margin: 0 3px;
	background: #ffffd8 url(../images/bl-corner.gif) no-repeat left bottom;
	font: normal .75em/1.25em Verdana, Arial, SunSans-Regular, sans-serif;
	text-align: center;
}

/*--------------------------------------------------------------*/
/* body_bottom gives an asthetic space at the bottom of the		*/
/* content and allows for the background corner.				*/
/*--------------------------------------------------------------*/
#body_bottom {
	clear: both;
	overflow: hidden;
	height: 20px;
	background: transparent url(../images/br-corner.gif) no-repeat right bottom;
}

/*--------------------------------------------------------------*/
/* Set up the columns. In the HTML, the order of the columns is	*/
/* product (left), team info (right), then content (center).	*/
/* This is so text browsers display the page in that order.   	*/
/*--------------------------------------------------------------*/                                         
#products, #page_content, #teams {
	position: relative;
	color: #100040;
}

/* Fix to show home page image in IE6 and earlier. */
* html #home #page_content {
	display: inline;
}

/* Products and teams are in a bordered "box."	*/
#products, #teams {
	border: 1px solid #660099;
	display: inline;    /*Fix for IE double float-margin bug.*/  
	background-color: #ffffaa;
}
	
#page_content {
	margin: 0 40px;
	text-align: left;
}

#products {
	float: left;
	width: 207px;
	wid\th: 160px;
	margin: 0 15px 1em 0;
	padding: 2em 20px;
	font: bold 1.5em "Comic sans MS", cursive, sans-serif;
	text-align: center;
	right: 8px;
}

#teams {
	float: right;
	width: 207px;
	wid\th: 180px;
	margin: 0 0 0 15px;
	padding: 0 10px;
	left: 8px;
}

/*-----------------------------------------------------------*/
/* Clear to make columns the same size vertically when page  */
/* is resized. May never be used.                            */
/*-----------------------------------------------------------*/
.clear {
	display: block;
	clear: both;
}


/*--------------------------*/
/* Format the page content. */
/*--------------------------*/

.info_title {
	margin: 0;
	color: #006600;
	font: bold 1.3em "Comic sans MS", cursive, sans-serif;
}

.info_content {
	color: #cc3333;
	font: 1.1em Arial, SunSans-Regular, sans-serif;
}

.content_title {
	color: #660099;
	font: bold 1.7em/1.3em "Comic sans MS", cursive, sans-serif;
	text-align: center;
}

.content_subtitle {
	margin: 1.5em 5% 1em;
	color: #ffff00;
	font: bold 1.3em "Comic sans MS", cursive, sans-serif;
}

.content_link {
	color: #CC3333;
	font-weight: bold;
}

.captioned_photo {
	font-size: smaller;
	font-style: italic;
	text-align: center;
}

.txt_browse {
	display: none; /* Text to display only in text-based browsers */
}


				/*---------------------------*/
				/*** Miscellaneous styles. ***/
				/*---------------------------*/
.ital {
	font-style: italic;
}

.bold {
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}

.small {
	font-size: smaller;
}

.center {
	text-align: center;
}

.justify {
	text-align: justify;
}