﻿hr { color: #fff; background: #fff; height: 1px; border: 0; }
.clear { clear: both; }

#kh_fast_login { text-align: left; padding: 10px 5px 5px 5px; }
#kh_fast_login ul { padding: 0; margin: 0 0 10px 0; list-style: none; border-bottom: 1px solid #fff; }
#kh_fast_login ul li { padding: 0 0 10px 0; margin: 0; }
.kh_fast_login_input { }
.kh_fast_login_input input { color: #ff0; background: #444444; padding: 3px; width: 148px; border: 1px solid #cccccc; }
.kh_fast_login_input input.label { position: absolute; }
.kh_fast_login_check { float: left; margin: 0 5px 0 0; padding: 3px 0 0 0; }
.kh_fast_login_check input { margin: 0; }
.kh_fast_login_check_text { padding: 3px 0 0 0; float: left; }
.kh_fast_login_check_text span { font: 11px/115% Arial, sans-serif; color: #fff; border-bottom: 1px dashed #ff0; cursor: pointer; }
.kh_fast_login_submit { position:relative;right:37%;float:right; }


$('input.onfocus_pass').parent().prepend('<input class="label" type="text" value="Пароль" title="Пароль" />');
$('input.onfocus').focus(function(){ value = $(this).attr('title'); if($(this).val() == value) $(this).val(''); });		
$('input.onfocus').blur(function(){ value = $(this).attr('title'); if($(this).val() == '') $(this).val(value); });					
$('input.label').focus(function(){ $(this).hide().siblings('input').focus(); });		
$('input.onfocus_pass').blur(function(){ if($(this).val() == '') $(this).siblings('input').show(); });
	
});