/* 

Title :			TYPOGRAPHY CSS
Author :		KristofCreative.com
URL :			
Description : 
Created : 		YEAR MONTH DAY  format: 0000-00-00
Modified :		

*/


/* =TYPOGRAPHY Divs
------------------------------------ */


body { 
	font-family: Trebuchet, Arial, Verdana, Helvetica, sans-serif; /* a global setting that should cascade */
	font-size: 62.5%;		/* same here */
	color: #444;			/* and here */
	margin-top: 0;			/* remove default top margin */
	text-align: center;		/* centering for pre-IE 6 versions on PC */
	}

body * { 				/* effect every element within the body tag! */
	margin: 0;				/* remove all default margins! */
	padding: 0;				/* remove all default padding! */
	text-decoration: none;	/* remove default underline from links */
	border: none;			/* remove default borders on images */
	color: #444;			/* make all text dark grey */
	list-style-type: none;	/* no bullets on lists */
	}



/* =Layout Divs
------------------------------------ */

#wrapper {				/* here's our whole-page containment box */
	text-align: left;		/* reverse the effect of the centering */
	margin-left: auto;		/* helps to ensure centering */
	margin-right: auto;		/* same here */
	width: 630px;			/* fixed width */
	}

#content  {
	width: 570px;
	height: auto;
	margin: 0;
	padding: 20px;
	font-size: 1.3em;
	text-align: left;
	line-height: 1.6em;
	}

/* =TEXT BASICS
------------------------------------ */

blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
	}
pre {
	display: block;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
	background-color: #eee;
	}
strong, b {
	font-weight: bold;
	}
em, i {
	font-style:italic;
	}
code {
	display: block;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
	background-color: #eee;
	}



/* =HEADER STYLES
------------------------------------ */

h1, h2, h3, h4, h5, h6	{
	font-family: Trebuchet, "Gill Sans", Myriad, Arial, "Bitstream Vera Sans", Helvetica, sans-serif;
	font-weight: normal;
	}

h1 { font-size: 1.8em; }
h2 { font-size: 1.4em; }
h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1.1em; }


h1	{
	color: #8B0000;
	font-weight: bold;
    margin: 20px 0 8px 0;
	} 

	h1 a	{
		color: #8B0000;
		} 

h2	{
 	color: #333;
	font-weight: bold;
    margin: 20px 0 8px 0;
	} 

h3	{
 	color: #8B0000;
	font-weight: bold;
    margin: 15px 0 -10px 0;
	} 

h4 {
	color: #8B0000;
	line-height: 31px;
	text-transform: uppercase;
	font-weight: normal;
	}


p.large	{
	color: #8B0000;
	font-size: 1.8em;
	font-weight: bold;
    margin: 20px 0 20px 0;
	} 

	p.large a	{
		color: #8B0000;
		} 

form#cse-search-box {
    margin: 20px 0 20px 0;
	}

form#cse-search-box input.text {
    border: 1px solid #DCDCDC;
	}



/* =TABLES
------------------------------------ */
table {
	table-layout:fixed;			/*  Sets width of table as specified  */
	word-wrap: break-word;		/*  Specified in the CSS3 Text Effects Module
									Forces the browser to break words as necessary to prevent overflow
									Only works in IE/Win, Safari, and Shiira*/

	overflow: hidden;			/*  For the browsers that donŐt support word-wrap -- Hides additional text  */
	}

table {
	font-size: 1em;
	border-collapse: collapse;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc; 
	margin: 5px auto;
	width: auto;
	}

table caption {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 5px;
	background: #333;
	border: 1px solid #ccc;
	color: #FFF;
	}

table tr th, 
table tr td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	line-height: 1.5em;
	vertical-align: middle;
	height: 25px;
	padding: 5px;
	}

table tr td.color {
	height: 75px;
	}

table tr.odd th, 
table tr.odd td {
	background: #eeeeee;
	}


table td {
	text-align: left;
	}

/* =TABLE HEAD --------- */

table thead tr th {
	text-transform: uppercase;
	background: #99ccff;
	color: #333333;
	}

