/*
* INITIAL
*
*/

/* Neutralize styling: 
	Elements we want to clean out entirely: */
html, body, form, fieldset {
	color: White;
	margin: 0;
	padding: 0;
	font: 11px/normal Verdana, Arial, Helvetica, sans-serif;
}

/* Neutralize styling: 
	Elements with a vertical margin: */
h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	margin: 0;
	padding: 0;
}

/* Apply left margin:
	Only to the few elements that need it: */
li, dd, blockquote {
	margin-left: 1em;
}

/* Miscellaneous conveniences: */
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
form label {
	cursor: pointer;
}
fieldset {
	border: none;
}
input, select, textarea {
	font-size: 100%;
	font-family: inherit;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* Clear Fix */
* html .clearfix{ /* float clearing for IE6 */
  height: 1%;
  overflow: visible;
}

*+html .clearfix{	/* float clearing for IE7 */
  min-height: 1%;
}

.clearfix:after{ /* float clearing for everyone else */
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

IMG{
   border: 0;
}

/* Links */

A:link{
	color: #678cc0;
}
A:visited{
	color: #334a6d;
}
A:hover{
	color: #ffcc00;
}
A:active{
	color: #ffcc00;
}



