/*================================================================================================================================// 
	CSS Reset
//================================================================================================================================*/
/* Global reset */
html,body,h1,h2,h3,h4,h5,p { margin: 0; padding: 0; }
input, button, select, textarea { font-family: inherit; }

/* Native element styling */
html,body { font-size: 14px; font-family: "Trebuchet MS", "Trebuchet", serif; color: #353535; }
button { cursor: pointer; }
input[type=submit], button[type=submit] { padding: 4px 6px; }
input[type=text], input[type=password], select, textarea {
	background: #ffffff;
	padding: 4px 6px;
	border: 1px solid #9f9f9f;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	box-shadow: inset 0 1px 1px 1px #eaeaea;
	-moz-box-shadow: inset 0 1px 1px 1px #eaeaea;
	-webkit-box-shadow: inset 0 1px 1px 1px #eaeaea;
}
h1,h2,h3,h4,h5 { line-height: 135%; font-weight: normal; margin-bottom: 0.2em; }
h1 { font-size: 2.0em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.3em; }
h5 { font-size: 1.1em; }
p,ul,ol { font-size: 1em; margin: 0 0 1.4em 0; line-height: 150%; padding: 0 }
ul,ol { margin-left: 2.5em; }
blockquote { margin: 1.4em; min-height: 29px; padding-left: 46px; background: url('../img/icons/blockquote_bg.png') no-repeat; }
a { color: #ef4f2f; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Test variations */
.v { display: none; }

/* Useful classes */
.notext { text-indent: -9999px; display: block; }
.turnon { filter: alpha(opacity=75); opacity: 0.75; -moz-opacity: 0.75; }
.turnon:hover { filter: alpha(opacity=100); opacity: 1; -moz-opacity: 1; }
.lightup { filter: alpha(opacity=100); opacity: 1; -moz-opacity: 1; }
.lightup:hover { filter: alpha(opacity=75); opacity: 0.75; -moz-opacity: 0.75; }

/* Flattened lists */
ul.flat { list-style: none; margin: 0; padding: 0; }
ul.flat li { float: left; background: none; padding: 0; }
ul.flat li a { display: block; text-decoration: none; }

/* Rounded boxes */
.round { 
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

/* Textfield Button Combos */
button.hybrid { 
	float: left;
	text-indent: -9999px; margin-left: -3px; padding: 0;
	background-repeat: no-repeat; width: 36px; height: 33px; border: 0;
}
button.search { background: url('../img/buttons/form_button_search.png'); }
button.subscribe { background: url('../img/buttons/form_button_subscribe.png'); }
input.hybrid { 
	width: 230px;
	display: block; float: left; height: 31px; padding: 0 0 0 8px;
	-webkit-border-radius: 3px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius: 3px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 0px;
	border-radius: 3px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}