/*
Title:      CSS Master Formating
Author:     Martin Cayouette, martin.cayouette@nurun.com
Updated:    January 12 2010
Content:	
			Default Links
			Common Elements
			Form Elements
			Misc
			Fix Float
			
*/

/* ---[ Default Link ]-------------------------------------------------- */
a{outline: none;}
:focus{-moz-outline-style: none;}
a { 
	color: #595f67;
	}
	a:link,
	a:visited,
	a:active {
		text-decoration: none;
	}
	a:hover {
		text-decoration: underline;
	}

/* ---[ Common Elements ]--------------------- */
div {
	position: relative;
	display: block;
	}
h1,h2,h3,h4,h5 {
	position: relative;
	font-weight: bold;
	color: #00264c;
	text-transform: uppercase;
	}
    h1 {
	    font-size: 36px;/* 2.5em 32px 197%*/
	    /*margin: 3px 0 8px 0;*/
	    line-height: 0.8em;
	    }
    h2 {
	    font-size: 146.5%;
	    margin: 2px 0 8px 0;
	    line-height: 1.0em;		
	    }
    h3 {
	    font-size: 116%;
	    margin: 2px 0 6px 0;
	    line-height: 1.2em;
	    }
    h4 {
        font-size: 108%;
	    margin: 2px 0 9px 0;
	    line-height: 1.2em;
	    }	
    h5 {
	    font-size: 93%;
	    font-weight: bold;
	    margin: 2px 0 0 0;
	    line-height: 1.2em;
	    }	
p {
	padding: 3px 0 3px 0;
	line-height: 1.3em;
	}
p.note {
	font-size: 93%;
	}
dl {
	display: block;
	}
ul,
ol,
dl {
	position: relative;
	}
	li {
		position: relative;
		margin: 0 0 3px 0;
		}
em {
	font-style: italic;
	}
strong, b {
	font-weight: bold;
	}
sup {
	font-size: 77%;
	vertical-align: top;
	}
/* ---[ Form Elements ]---------------------------------------- */
input, 
select,
textarea {
	position: relative;
	color: #00264C;
	border: 1px solid #BFC9D2;	
	background: #fff;
	}
textarea {
	/*width: 280px;
	height: 100px;*/
	}
.disclaimer {
	font-size: 85%;
	color: #00264C;
	line-height: 14px;
	}
/* ---[ Misc. ]---------------------------------------- */
a img {
	border: none;
	}
/* ---[ Fix Float ]------------------------------- */	
#container:after,
#main-content:after,
#content:after,
#footer:after,
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
#container,
#main-content,
#content,
#footer,
.clearfix {
	display: inline-table;
	}	
/* hides from IE-mac \*/
* html #container,
* html #main-content,
* html #content,
* html #footer,
* html .clearfix {
	height: 1px;
	}
#container,
#main-content,
#content,
#footer,
.clearfix {
	display: block;
	}
/* end hide from IE-mac */