html, body {
	background: #ccc;
	color: #444;

	font-family: Helvetica,Arial,sans-serif;
	font-size: 14px;

	margin: 0;
	padding: 0;
	min-height: 100%;
}

p {
	margin: 0;
	padding: 0 0 10px 0;
}
menu, ol, ul {
	margin: 0;
	padding: 0 0 5px 0;
}
li {
	margin: 0;
	padding: 0 0 5px 0;
}

.left   { text-align: left !important; }
.right  { text-align: right !important; }
.center { text-align: center !important; }

.noborder  { border: none !important; }
.nomargin  { margin: 0 !important; }
.nopadding { padding: 0 !important; }
.nobackground { background: none !important; }

/******************************************************************************************************************************************/
/*** MESSAGES *****************************************************************************************************************************/
/******************************************************************************************************************************************/

.msg {
	color: #000;
	background: #ccc;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	
	font-size: 12px;
	
	margin: 20px;
	padding: 8px 8px 2px 8px;
}
.msgok {
	color: #000;
	background: #afa;
}
.msginfo {
	color: #000;
	background: #ffa;
}
.msgwarn {
	color: #fff;
	background: #e80;
}
.msgerr {
	color: #fff;
	background: #f00;
}

.msg a {
	color: #000 !important;
	font-weight: bold !important;
	text-decoration: underline !important;
}
.msgok a, .msginfo a {
}
.msgwarn a, .msgerr a {
	color: #fff !important;
} 

.msg p {
	margin: 0;
	padding: 0 0 6px 0;
}
.msginfo p, .msgwarn p, .msgerr p {
}

/******************************************************************************************************************************************/
/*** TOOLBARS *****************************************************************************************************************************/
/******************************************************************************************************************************************/

.TOOLBAR {
	padding: 15px 0;
}
.NOTOOLBAR {
	height: 15px;
}

.TOOLBAR a,
.TOOLBAR span {
	display: block;
	
	color: #ddd !important;
	background: #444;
	
	font-size: 12px;
	font-weight: bold;
	font-style: normal;
	text-align: center;
	text-transform: uppercase;
	
	padding: 4px 7px;
	
	text-decoration: none;
	border: none;
	border-left: solid 1px #999;
}
.TOOLBAR span {
	color: #777 !important;
	background: #999;
}
.TOOLBAR a.em,
.TOOLBAR a:hover {
	color: #fff !important;
	background: #000;
	border-color: #999;
}
.TOOLBAR a.first,
.TOOLBAR span.first {
	border: none;

	padding-left: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
}
.TOOLBAR a.last,
.TOOLBAR span.last {
	padding-right: 10px;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
}



.DARK .TOOLBAR span {
	color: #aaa !important;
	background: #ddd;
}
.DARK .TOOLBAR a {
	color: #222 !important;
	background: #ddd;
}
.DARK .TOOLBAR a:hover {
	color: #000 !important;
	background: #FFF;
}

