/* CSS Document */
/*This will use to hide the date_picker text*/
/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
	float: left;
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 5px 3px 0;
	display: block;
	text-indent: -2000px;
	overflow: hidden;
	background:url(../../../globals/images/ico-event.gif) no-repeat;
}
a.dp-choose-date.dp-disabled {
	background-position: 0 -20px;
	cursor: default;
}
/* makes the input field shorter once the date picker code
 * has run (to allow space for the calendar icon
 */
input.dp-applied {
	width: 140px;
	float: left;
}

.suggestionsBox {
	position: absolute;
	width: 200px;
	background-color: #212427;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border: 1px solid #000000;	
}
	
.suggestionList {
	margin: 0px;
	padding: 0px;
	display:block;
	background-color:#33CCFF;
	color:#000000;
	position: absolute;
	width:200px;
}
	
.suggestionList li {
	margin: 0px 0px 3px 0px;
	padding: 3px;
	cursor: pointer;
}

.suggestionList li:hover {
	background-color: #659CD8;
}
.top_container{ width:600px; float:left;}
.write-about-normal { display:block; text-align:center; padding:2px; border:solid 1px #e9e9e9; background-color:#f1f1f1; margin:4px 0; clear:both; }