/*
 * CSS Document
 * helper.css
 * Created by DAMU for codefight CMS
 * First created on 10.09.08 
 */
 
 /* Some Common Settings */
* {
	}
html, body {
	color:#0096CA;
	}
/* END: ----------------------- */


/* Clear Definition : life saver with floats */	
.clear {
	clear:both !important;
	line-height:0 !important;
	height:0 !important;
	font-size:0 !important;
	display:block !important;
	float:none !important;
	margin:0 !important;
	padding:0 !important;
	}
/* END: ----------------------- */


/* Error/Success Messages Definition */	
.error {
	border:1px solid #FF0033;
	color:#FF0000;
	display:block;
	margin:2px 0;
	padding:5px 10px 4px 10px;
	}
.success {
	border:1px solid #00CC00;
	color:#006600;
	display:block;
	margin:2px 0;
	padding:15px 10px 4px 10px;
	}
/* END: ----------------------- */


/* Background Definition */	
.backgroundNone {
	background:none !important;
	}
/* END: ----------------------- */


/* Border Settings : default => width:1px; color: white; */
.borderNone {
	border:none !important;
	}
.borderSolid {
	border:1px solid #fff;
	}
.borderDashed {
	border:1px dashed #fff;
	}
.borderDotted {
	border:1px dotted #fff;
	}
.borderRightGrey {
	border-right:1px solid #ccc;
	}
/* END: ----------------------- */


/* Float Setting */
.floatRight {
	float:right !important;
	}
.floatLeft {
	float:left !important;
	}
.floatNone {
	float:none !important;
	}
/* END: ----------------------- */


/* Text Style */
.bold {
	font-weight:bold !important;
	}
.italic {
	font-style:italic !important;
	}
.left {
	text-align:left !important;
	}
.right {
	text-align:right !important;
	}
.center {
	text-align:center !important;
	}
/* END: ----------------------- */


/* show/hide definition */
.hide {
	display:none !important;
	}
.show {
	display:block !important;
	}
.block {
	display:block;
	}
/* END: ----------------------- */


/* color definition */
.blue {
	color:#0495f1;
	}
.red {
	color:#d42229;
	}
.brown {
	color:#c60;
	}
.black {
	color:#000;
	}
/* END: ----------------------- */


/* link color definition */
a.brown {
	color:#c60;
	}
a.brown:hover {
	color:#09f;
	}
a.red {
	color:#d42229;
	}
a.red:hover {
	color:#666;
	}
/* END: ----------------------- */

