﻿@charset "utf-8";


/****************************************************/
/* MAIN styles                                      */
/****************************************************/

* { /* remove any browser default values */
	margin: 0px;
	padding: 0px;
	border: 0px;
}
body  {
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	background-color:#FFFFFF;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.5em;
}
img {
	max-width: 100%;
}

/****************************************************/
/* MAIN LAYOUT                                      */
/****************************************************/
#container {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
} 
#headerTopLeft {
	margin-left:-15px;
}
#headerTopRight {
	display: none;
}
div {
	margin-top:10px;
	margin-bottom:10px;
}
#crumbPanel {
	display: none;
}

