 /* tooltip styling. by default the element to be styled is .tooltip  */
.tooltip {
    display:none;
    background: #f5f5f5;
    font-size:12px;
    padding:5px;
    color:#000;

	border: 2px solid #fff;

	-moz-border-radius : 7px; /* Firefox */
    -webkit-border-radius : 7px; /* Safari & Chrome */
    -khtml-border-radius : 7px; /* Linux browsers */
    border-radius : 7px; /* CSS3 compatible browsers */

	-moz-box-shadow : 1px 1px 3px #888; /* Firefox 3.5+ */
    -webkit-box-shadow : 1px 1px 3px #888; /* Safari 3+ & Chrome */
    box-shadow : 1px 1px 3px #888; /* CSS3 compatible browsers */
    filter : progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#888888'); /* IE 5.5 - 7 */
    -ms-filter : "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#888888')"; /* IE 8 */
  }


  /* the overlayed element */
	.simple_overlay {

    /* must be initially hidden */
    display:none;

    /* place overlay on top of other elements */
    z-index:10000;

    /* styling */
    background-color:#333;

	padding: 25px;

    border:1px solid #666;

	-moz-border-radius : 7px; /* Firefox */
    -webkit-border-radius : 7px; /* Safari & Chrome */
    -khtml-border-radius : 7px; /* Linux browsers */
    border-radius : 7px; /* CSS3 compatible browsers */

	-moz-box-shadow : 1px 1px 3px #888; /* Firefox 3.5+ */
    -webkit-box-shadow : 1px 1px 3px #888; /* Safari 3+ & Chrome */
    box-shadow : 1px 1px 3px #888; /* CSS3 compatible browsers */
    filter : progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#888888'); /* IE 5.5 - 7 */
    -ms-filter : "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#888888')"; /* IE 8 */

}

/* close button positioned on upper right corner */
.simple_overlay .close {
    background-image:url(../images/close.png);
    position:absolute;
    right:-15px;
    top:-15px;
    cursor:pointer;
    height:35px;
    width:35px;
}


.simple_overlay .ajaxContent img {
	margin: 0 auto;
	display: block;
	float: none;
}
.simple_overlay .ajaxContent {
	color: #ccc;
}
.simple_overlay input[type=button] {
	border: medium none;
    height: 25px;
    left: 0;
    position: relative;
    top: 0;
}
.simple_overlay input[type=text] {
	margin-right: 20px;
}

.simple_overlay .ajaxContent {
	color: #CCCCCC;
    display: table-cell;
    height: 80px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 500px;
}
.simple_overlay .ajaxContent p {
	display: inline;
}