﻿#ControlContact{ }
	#ControlContact table { margin-bottom: 0; }

label {
	padding-right: 4px;
	
	font-size: 11px;
	font-weight: normal;
	text-align: right;
}

.label { font-size: 11px; }

fieldset {
	margin: 10px 0 0 0;
}

legend {
	padding-bottom: 5px;
	
	font-size: 14px;
	color: #444444;
}

.requiredFields { 
	font-size:11px;
	color: #20669c; 
}

	.requiredFields b {
		position:relative;
		top:4px;

		font-size:20px; 
		color: #20669c; 
		font-weight: bold;
	}

.radioButtonList label,
.checkBoxList label{
	display: inline;
	padding: 0 0 0 4px;

	text-align: left;
}

/* Form fields
-------------------------------------------------------------- */


textarea, input[type='text'], input[type='password'], select { 
	width: 160px;
	margin: 0 0 0 2px;
	padding: 0 4px;
	border: 1px solid #dfdfdf;
	background-color: #fff;

	font-family: Arial;
	font-size: 12px;
	height:20px;
	line-height: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

textarea:hover, input[type='text']:hover, input[type='password']:hover, select:hover { 
	border: 1px solid #20669c; 
}

textarea:focus, input[type='text']:focus, input[type='password']:focus, select:focus { 
	border: 1px solid #20669c; 
	background-color: #fff; 
}

input, select { cursor: pointer; }
input[type='text'] { cursor: text; }

input[type='checkbox'] { border: 0; float: left; }

.checkBox {}

	.checkBox input { float: left; }
	.checkBox label { margin-top: 2px; font-weight: normal; text-align: left; }

.asterisque {
	height: 14px;
	display: block;
	
	font-size: 20px;
	color: #20669c;	
	line-height: 14px;
	font-weight: bold;
	text-align: center;
}

.inputError {
	font-size: 11px;
	color: #ea2d14;
}

.inputSuccess {
	font-size: 11px;
	color: #b1cb21;
}

/* Buttons
-------------------------------------------------------------- */

.btn {
	padding: 2px 4px 2px 4px;
	border: 1px solid #181818;
	background-color: #181818;
	cursor: pointer;

	color: #fff;
}

.btn:hover {
	border: 1px solid #20669c;
	background-color: #20669c;
}

/* Success and error boxes
-------------------------------------------------------------- */
.error, 
.success    { padding: 10px; margin-bottom: 10px; border: 3px solid #ddd; }

.error      { background: #ffe2db; color: #e24b2a; border-color: #ff6c4c; }
.success    { background: #eef7dc; color: #749f16; border-color: #abd64f; }

	.error a    { color: #e24b2a; }
	.success a  { color: #749f16; }
	
	
	
/* AutoComplete
-------------------------------------------------------------- */
/* flyout */

.autocomplete_completionListElement { 
	display: block;

	width: 190px;
	height: 200px;

	position: absolute;
	z-index: 999;

	/*margin: 0px!important;*/
	margin: 0 0 0 0px;
	padding: 0;
	background-color: #eff9ff;
	cursor: pointer;
	overflow: auto;
	overflow: -moz-scrollbars-vertical;
	overflow-x: hidden;
	overflow-y: scroll;
	list-style-type: none;

	color: windowtext;
	font-size: 11px;
    text-align: left;
}

.autocomplete_completionListElement li {
}

/* highlighted item */
.autocomplete_highlightedListItem {
	background-color: #53a6d7;
	color: white;
	width: 190px;
	_height: 13px;

	padding: 5px;
}

/* item */
.autocomplete_listItem  {
	color: #000000;
	width: 190px;
	_height: 13px;

	padding: 5px;
}