﻿@charset "utf-8";
/* CSS Document */

/* ---------- GENERAL ---------- */

body {
	color: #999;
	font: 100%/1em sans-serif;
	margin: 0;
}

h3 { margin: 0; }

a {
	text-decoration: none;
}

a:hover { color: #999999; }

fieldset {
	border: none;
	margin: 0;
}

input {
	border: none;
	font-family: inherit;
	font-size: inherit;
	margin: 0;
	
}

input:focus {
  outline: none;
}

input[type="submit"] { cursor: pointer; }

.clearfix { *zoom: 1; }
.clearfix:before, .clearfix:after {
	content: "";
	display: table;	
}
.clearfix:after { clear: both; }

/* ---------- LOGIN-FORM ---------- */
.validation-summary-errors ul, .validation-summary-errors li { 
    list-style: none;
    display: inline;
    padding: 0;
     font-size: 10px;
     text-align: center;
     color:red;
     font-weight:bold;
}

#login-form {
	margin:  auto;
	width: 275px;
    overflow:hidden
}

#login-form h3 {
	background-color: #282830;
	border-radius: 5px 5px 0 0;
	color: #fff;
	font-size: 14px;
	padding: 5px;
	text-align: left;
	text-transform: uppercase;
    padding-left:15px
}

#login-form fieldset {
	background: #fff;
	border-radius: 0 0 5px 5px;
     padding-top: 5px;
    padding-bottom: 10px;
	position: relative;
}

#login-form fieldset:before {
	background-color: #fff;
	content: "";
	height: 8px;
	left: 50%;
	margin: -4px 0 0 -4px;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
        overflow:hidden
}

#login-form input {
	font-size: 14px;
}

#login-form .username,
#login-form .password {
	border: 1px solid #dcdcdc;
	padding-top: 6px;
    padding-right: 10px;
    
	width: 225px;
    overflow:hidden;
        padding-left: 2px;
}

.login-div
{
    text-align: left; 
    color:#999999; 
    font-weight:bold;
        padding-left:7px;
}

#login-form .username {
	border-radius: 3px 3px 0 0;

}

#login-form .password {
	border-top: none;
	border-radius: 0px 0px 3px 3px;
    padding-bottom:5px;
}

#login-form input[type="submit"] {
	background: #999999;
	border-radius: 3px;
	color: #fff;
	float: right;
	font-weight: bold;
	margin-top: 0px;
	padding: 6px 20px;
}

#login-form .checkbox {
	padding-top: 6px;
}

#login-form input[type="submit"]:hover { background: #999999; }

#login-form footer {
	font-size: 12px;
	margin-top: 16px;
}

.info {
	background: #e5e5e5;
	border-radius: 50%;
	display: inline-block;
	height: 20px;
	line-height: 20px;
	margin: 0 10px 0 0;
	text-align: center;
	width: 20px;
}