@charset "utf-8";
/* CSS Document */
/* All form elements are within the definition list for this example */

dd {
    float: left;
    width: 350px;
    margin: 0 0 5px 0;
}

/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
    right: 220px;
    width: 300px;
    border: 1px solid #c93;
    padding: 10px 12px;
	margin-top:-45px;
	background: #ffc;
	color:#333;
    /* to fix IE6, I can't just declare a background-color,
    I must do a bg image, too!  So I'm duplicating the pointer.gif
    image, and positioning it so that it doesn't show up
    within the box */
}

.hint_login {
   	display: none;
    position: absolute;
    right: 220px;
    width: 300px;
    border: 1px solid #c93;
    padding: 10px 12px;
	margin-top:10px;
	background: #ffc;
	color:#333;
    /* to fix IE6, I can't just declare a background-color,
    I must do a bg image, too!  So I'm duplicating the pointer.gif
    image, and positioning it so that it doesn't show up
    within the box */
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
    left: -10px;
    top: 5px;
    width: 10px;
    height: 19px;
    background:url(../pics/pointer.gif) left top no-repeat;
}

.hint_login .hint-pointer {
    position: absolute;
    left: -1px;
    top: -10px;
    width: 19px;
    height: 11px;
    background:url(../pics/pointer_top.gif) left top no-repeat;
}

input.blur {color: #999;}


#admin_tips a small {  /*--panel tool tip styles--*/
	text-align: center;
	width: 80px;
	background: url(../pics/pop_arrow.gif) no-repeat center bottom;
	padding: 5px 5px 11px;
	display: none; /*--Hide by default--*/
	color: #fff;
	font-size: 1em;
	text-indent: 0;
}

#admin_tips a:hover small{
	display: block; /*--Show on hover--*/
	position: absolute;
	margin-top:-50px;
	margin-left:-36px;
	z-index: 999px;
}

#admin_tipsHome a small {  /*--panel tool tip styles--*/
	text-align: center;
	width: 110px;
	background: url(../pics/pop_arrow_adminHome.gif) no-repeat;
	padding: 5px 5px 11px;
	display: none; /*--Hide by default--*/
	color: #fff;
	font-size: 1em;
	text-indent: 0;
}

#admin_tipsHome a:hover small{
	display: block; /*--Show on hover--*/
	position: absolute;
	margin-left:-43px; 
	margin-top:-55px;
	z-index: 999px;
}







