﻿/*
Title:      CSS Master Formating
Updated:    December 17 2008
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%;
	margin: 3px 0 20px 0;
	color: #fff;
	line-height: 1em;	
	text-transform: uppercase;
	}
h2 {
	position: relative;
	font-size: 131%;
	font-weight: bold;	
	margin: 2px 0 4px 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;
	}
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;
	}
textarea {
	width: 280px;
	height: 100px;
	}
.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 ]------------------------------- */	
.clearfix:after,
#container:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clearfix,
#container {
	display: inline-table;
	}	
/* hides from IE-mac \*/
* html .clearfix,
* html #container {
	height: 1px;
	}
.clearfix,
#container {
	display: block;
	}
/* end hide from IE-mac */
