/* AJAX STUFF */

/* Big box with list of options */
#ajax_listOfOptions {
		position:absolute;	/* Never change this one */
		width:700px;	/* Width of box */
		margin-left: 2px;
		max-height:150px;	/* Height of box */
		overflow:auto;	/* Scrolling features */
		border:1px solid #317082;	/* Dark green border */
		background-color:#FFF;	/* White background color */
		font-size:1.2em;
		z-index:200;
	}
#ajax_listOfOptions div .name{	/* General rule for both .optionDiv and .optionDivSelected */
float:left;
width: 200px;
}
#ajax_listOfOptions div .phone{	/* General rule for both .optionDiv and .optionDivSelected */
float:left;
width: 200px;
text-align: left;
}

#ajax_listOfOptions div .email  {	/* General rule for both .optionDiv and .optionDivSelected */
text-align: right;
}
#ajax_listOfOptions .optionDiv{	/* Div for each item in list */
}
#ajax_listOfOptions .optionDivSelected div { /* Selected item in the list */
background-color: #317082;
color: #ffffff;
}

#ajax_listOfOptions .optionDivSelected div a { /* Selected item in the list */
color: #ffffff;
}


#ajax_listOfOptions_iframe{
background-color:#F00;
position:absolute;
z-index:10;
}
	