/* Suggested order:
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *
 */

/* -----------------------------------------------
	standard formatting, do not change!!!
----------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
}

body {
	background: #fff;
}

img {
	border: 0;
}

a {
	text-decoration: none;
}

a:focus{
	outline:none;
}

caption {
	display: none;
}

table {
	border-collapse: collapse;
}

th {
	text-align: left;
	vertical-align: top;
}

td {
	vertical-align: top;
}

ul {
	list-style: none;
}

.clear {
	clear: both;
}

.clearNone {
	clear: none;
}
.floatLeft {
	float: left;
}

.floatRight {
	float: right;
	padding-right: 1px;
}

.overflow {
	overflow: auto !important;
	overflow: inherit;
	height: auto !important;
	height: 100%;
	/* ie7 needs this sometimes */
	min-height: 100%;
	padding-bottom: 1px;
}

.overflowHidden {
	overflow: hidden;
}

.marginNone {
	margin: 0 !important;	
}

.backgroundNone {
	background: none !important;	
}

.backgroundColorTransparent {
	background-color: transparent;
}

.borderNone {
	border: none;
}

.fontWeightNormal {
	font-weight: normal;
}

.fontWeightBold {
	font-weight: bold;
}
.textTransformUppercase {
	text-transform: uppercase;
}
.displayInline {
	display: inline;
}
.displayNone {
	display: none;
	position: absolute;
	left: -9999px;
}
.hidden {
	display: inline;
	left: -9999px;
	overflow: hidden;
	width: 0px;
	position: absolute;
	top: -1000px;
	height: 0px;
}
.error {
	color: red;
}

#box {
	text-align: left;
}

#logo {
	display: none;
}

#admPanel {
	text-align: left;
}
#admPanel * {
	color: #000000;
}