/**********************************************/
/* @name: style.css                           */
/* @date: 19/09/06 - 25/09/06                 */
/* @desc: COF II (the return)                 */
/* @auth: remy@enova-tech.net	              */
/**********************************************/

/** General Elements ***/
*{
	padding:0;
	margin:0;
	text-align:justify;
}
body{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	background-color:white;
	width:350px;
	margin:auto;
}

/* Links */ 
a:link, a:visited{
	color:#FF8A00;
	text-decoration:none;
	font-weight: bold;
}
a:hover{
	color:#FF5A00;
	text-decoration:none;
	font-weight: bold;
	border-bottom:1px dotted #FFA000;
}

/* remove link:hover/img border   */
a img, #top a:hover, a:hover img{
	border:0;  
} 

/* Titles */ 
h1{
	font-size:xx-large;
}
/** top */
#top{
	margin-top:20px;
	padding:5px;
}
/** Form */
#content {
	padding:8px;
	border:1px solid #C5C5C5;
	background-color:#F0F0F0;
	-moz-border-radius:8px;
	border-radius:8px; /* CSS3*/
}
#content fieldset{
	padding:8px;
	margin:5px;
	-moz-border-radius:5px;
	border-radius:5px; /* CSS3*/
	border:1px solid #CCC;
}
#content legend{
	color:#FF8A00;
	font-weight:bold;
	font-size:18px;
}
#content table{
	width:100%;
	padding:5px;
	_margin-top:10px;
}
#content table td{
	padding: 0px 0 5px 0;
}
#content p{
	font-size:0.85em;
	font-style:italic;
	padding:5px 0 10px 0;
}
#content input.button,#content input.text{
	-moz-border-radius:8px;
	border-radius:8px; /* CSS3*/
}
#content input.button{
	width:100%;
	padding:5px;
	margin-top:3px;
	text-align:center;
	background-color:#C9C9C9;
	border:1px solid #9D9D9D;
	font-weight:bold;
	color:#555;
}
#content input.button:hover{
	background-color:#9D9D9D;
	color: white;
}
#content table tr td.label{
	width:160px;
}
#content input.text{
	border:1px solid white;
	padding:2px 2px 2px 5px;
	border:1px solid white;
}

/**** ERROR ******/
#error{
	background-color:#FFE9E9;
	color: red;
}
fieldset#error{border:1px solid red;}
#error legend{
	color: red;
}

/**** CONFIRM ****/
#confirm{
	background-color:#d2ebfd;
	color: #0374c4;
}
fieldset#confirm{border:1px solid #0374c4;}
#confirm legend{
	color: #0374c4;
}


/** Footer */
#footer{
	font-size:0.8em;
	text-align:right;
	padding-top:5px;
	color:#777;
}