﻿/*
Title:      CSS Master Formating
Author:     Martin Cayouette, martin.cayouette@nurun.com
Updated:    January 22 2009
Content:	
			Default Links
			Common Elements
			Form Elements
			Misc
			Fix Float
			
*/

/* ---[ Default Link ]-------------------------------------------------- */
a { 
	color: #fff;
	outline: none;
	}
	a:link,
	a:visited,
	a:active {
		text-decoration: none;
	    }
	a:hover {
		text-decoration: underline;
	    }
	:focus {
	    -moz-outline-style: none;
	    }
a.link {
	color: #fff;
	padding-right: 10px;
	background: url(../images/arrow.gif) no-repeat 98% 50%;
	}
	a.link:hover {
		text-decoration: underline;
		}

/* ---[ Common Elements ]--------------------- */
div {
	position: relative;
	display: block;
	}
h1 {
	position: relative;
	font-size: 167%;
	/*height: 60px;*/
	margin: 3px 0 38px 0;
	color: #fff;
	line-height: 1em;	
	text-transform: uppercase;
	}
h2 {
	position: relative;
	font-size: 167%;
	font-weight: none;	
	margin: 0;
	color: #fff;
	line-height: 1.2em;		
	text-transform: uppercase;
	}
h3 {
	position: relative;
	font-size: 100%;
	font-weight: bold;
	margin: 2px 0 0 0;
	color: #fff;
	line-height: 1em;
	text-transform: uppercase;
	}	
p {
	padding: 3px 0 3px 0;
	line-height: 1.3em;
	}
p.note {
	font-size: 93%;
	}
dl {
	display: block;
	}
ul,
ol {
	position: relative;
	}
	li {
		position: relative;
		margin: 0 0 5px 0;
		}
ol li {
    list-style-type: decimal;
    list-style-position: inside;
    }
em {
	font-style: italic;
	}
strong {
	font-weight: bold;
	}
sup {
	font-size: 77%;
	}

/* ---[ Form Elements ]---------------------------------------- */
legend {
    color: #fff;    
    }
input, 
select,
textarea {
	position: relative;
	color: #666;
	border: 1px solid #444;
	background: #000;
	}
.disclaimer {
	font-size: 85%;
	}

/* ---[ Misc. ]---------------------------------------- */
a img {
	border: none;
	}
hr {
	width: 100%;
	height: 1px;
	margin: 10px 0 10px 0;
	padding: 0;
	background: #d4d6d7;
	}

/* ---[ Fix Float ]------------------------------- */	
#container:after,
#main-content:after,
#content-generic:after,
#content-home:after,
#footer:after,
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
#container,
#main-content,
#content-generic,
#content-home,
#footer,
.clearfix {
	display: inline-table;
	}	
/* hides from IE-mac \*/
* html #container,
* html #main-content,
* html #content-generic,
* html #content-home,
* html #footer,
* html .clearfix {
	height: 1px;
	}
#container,
#main-content,
#content-generic,
#content-home,
#footer,
.clearfix {
	display: block;
	}
/* end hide from IE-mac */
