/**********************************************************
reset.css
**********************************************************/

/*  master reset 
**********************************************************/
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
}
html {
	height: 100%;
}
body {
	font-size: 62.5%;
	font-family: arial, verdana, helvetica, georgia, sans-serif;
	background-color: #b3bfcb;
	height: 100%;
}

/*  headers
**********************************************************/
h1, h2, h3, h4, h5, h6, p {
	font-weight: normal;
}

/* lists
**********************************************************/
ul { list-style: none; }

/* objects / embeds
**********************************************************/
object, embed { display: block; }

/* form elemets
**********************************************************/
form, fieldset { border: 0; }
fieldset { position: relative; }
legend { display: none; }
input, textarea, select { 
	font-family: arial; 
	font-size: 1.3em;
}
a { cursor: pointer; }
textarea {
	color: #333;
	border: .1em solid #dcdcdc;
	overflow: auto;
}
select {
	border: 1px solid #7894af;
	font-size: 1.2em;
	color: #333;
}
	select option { padding: 0 .25em; }
label { cursor: default; }
button { cursor: pointer; }	
.text, textarea {
	color: #333;
	border: 1px solid #dcdcdc;
	padding: 3px 6px;
	background: #fff;
}
fieldset.opts input,
fieldset.opts label,
fieldset.opts label span {
	vertical-align: middle;
}
fieldset.opts input,
input.opts {
	width: 13px;
	height: 13px;
}

/* tables
**********************************************************/
table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}
td, th, caption {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

/* images
**********************************************************/
img { display: block; }

/* address
**********************************************************/
address { font-style: normal; }

/* clearfix
**********************************************************/
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/* pngfix opacity fix for ie7
**********************************************************/
.pngfix {
	filter: alpha(opacity=0);
	opacity: 0;
	-moz-opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}

/* <select> box bleed ie6 fix
**********************************************************/
.iframeMe {
	position:absolute;
	z-index:100000;/*any value*/
	overflow:hidden;/*must have*/
	width:100%;/*must have for any value*/;
}
.iframeMe iframe {
	display:none;/*sorry for IE5*/
	display/**/:block;/*sorry for IE5*/
	position:absolute;/*must have*/
	top:0;/*must have*/
	left:0;/*must have*/
	z-index:-1;/*must have*/
	filter:mask();/*must have*/
	width:3000px;/*must have for any big value*/
	height:3000px/*must have for any big value*/;
}
