﻿body
{
}

/*Styles for fancy tooltip*/
#validEmail
        {
            margin-top: 4px;
            margin-left: 9px;
            position: absolute;
            width: 16px;
            height: 16px;
        }
        /* simple css-based tooltip */
        .tooltip {
	        background-color:#000;
	        border:1px solid #fff;
	        padding:10px 15px;
	        width:230px;
	        display:none;
	        color:#fff;
	        text-align:left;
	        font-size:12px;

	        /* outline radius for mozilla/firefox only */
	        -moz-box-shadow:0 0 10px #000;
	        -webkit-box-shadow:0 0 10px #000;
        }
        .BoxTitle
        {
	        font-size: large;
	        font-weight: bold;
        }

        .NormalText
        {
	        font-size: 12px;
	        font-weight: normal;
        }

        .ErrorText
        {
	        font-size: 12px;
	        font-weight: bold;
	        color: Red;
        }
        .InputTextBox
        {
        	font-size:13px;
        	height:30px;
        	border: solid 1px #96a6c5;
        }
        .InputSelect
        {
            font-size:13px;
        	padding:5px;
        	height:30px;
        	border: solid 1px #96a6c5;
        }
        #registrationBackground
        {
	        /* For WebKit (Safari, Google Chrome etc) */
	        background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#d1d7e7));
	        /* For Mozilla/Gecko (Firefox etc) */
	        background: -moz-linear-gradient(top, #ffffff, #d1d7e7);
	        /* For Internet Explorer 5.5 - 7 */
	        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#d1d7e7);
	        /* For Internet Explorer 8 */
	        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#d1d7e7)";
        }
        
/* Tooltip */

#tooltip {
	position:absolute;
	z-index:9999;
	color:#fff;
	font-size:10px;
	font-family:Arial, Helvetica, sans-serif;
	text-decoration:none;
}

#tooltip .tipHeader {
	height:10px;
	background:url(images/tipHeader.gif) no-repeat;
}

#tooltip .tipBody {
	background-color:#000;
	padding:2px 5px 5px 2px;
}

#tooltip .tipFooter {
	height:8px;
	background:url(images/tipFooter.gif) no-repeat;
}

