/*----------------------------------------------------------*/
/* Gearin' Up												*/
/* CSS name: main.css										*/
/* Developer: MindPick Software LLC							*/
/* Date: 2/18/2010											*/
/*															*/
/* 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 {	/* hack: IE6 */
	width: expression( document.documentElement.clientWidth < 782 ? "780px" : "auto");
}



/*------------------------------------------------------------------*/
/* 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.       											*/
/* A background image is put to the bottom left for a rounded		*/
/* corner. Position is relative so the rounded corner at the		*/
/* bottom right can be added with an absolutely positioned			*/
/* element (#body_bottom).											*/
/* NOTE: The hack below uses the !important bug in IE5/6 to			*/
/* simulate minimum height in those browsers.						*/
/* A second hack keeps the rounded bottom right corner from 		*/
/* overflowing (see #body_bottom).									*/
/*------------------------------------------------------------------*/
#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;
	min-height: 425px;
	height: auto !important;	/* hack: IE<7 */
	height: 425px;
	position: relative;
	padding-bottom: 20px;
	_overflow: hidden;		/* hack: IE<7 */
}

/*--------------------------------------------------------------*/
/* body_bottom gives is used to place a rounded corner at the	*/
/* bottom right of the page content (#page_body).				*/
/* NOTE: IE v6 and lower will put an absolutely bottom (right)	*/
/* positioned item up (left) 1px if the containing item has		*/
/* an odd number of pixel height (width). Set bottom to -1px	*/
/* so gap doesn't show.											*/
/*--------------------------------------------------------------*/
#body_bottom {
	clear: both;
	height: 10px;
	background: transparent url(../images/br-corner.gif) no-repeat right bottom;
	position: absolute;
	bottom: 0;
	_bottom: -1px;	/* hack: IE<7 */
	right: 0;
	_right: -1px;	/* hack: IE<7 */
	width: 6px;
}

/*--------------------------------------------------------------*/
/* 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;
}

/* Hack: 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;
}

.red {
	color: red;
}
