/**
 * Login Css File
 *
 * @namespace        admin::templates::default::css::login
 * @version          $Id: main.css 134 2011-03-08 19:49:37Z tomtaz $
 * @author           Tomtaz
 * @LastChangedBy    $LastChangedBy: tomtaz $    
 * @date             2011-2-25 9:57:00 +100
 * @LastChangedDate  $LastChangedDate: 2011-03-08 20:49:37 +0100 (Di, 08. Mrz 2011) $
 * @Revision         $Revision: 134 $
 * @copyright        © 2011 by „Tomtaz Scripts & IT-Service“
 * @license          Full licensed to API (Tippspiel4free.de)
 */

* {
  font-size: 100%;
  font-family: Tahoma, Verdana, Arial;
  /*color: #000;*/
}

ul {
    margin: 0;
}

/* Body section. Set it to middle... */
body {
  background: #0b55c4 url( img/background.png ) repeat-x;
  margin: 0;
  font-size: 76%;
	text-align: center;
	top: 0;
	left: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	display: table;  
}

#container {
	display: table-cell;
	vertical-align: middle;
}

#login {
	width: 370px;
	margin: 0 auto;
	background-color: #F7F7F7;
	padding: 22px;
	border: 10px solid #fff;
}

#login div {
	margin: 0;
	padding: 0;
}

#login div span {
	text-align: left !important;
	display: block;
}
p {
	font-size: 90%;
}

h1 {
	font-size: 250%;
	padding: 0;
	margin: 0;
	padding-bottom: 10px;
}

/**
 * Links
 */
a,
a:visited {
	width: 200px;
	color: #000;
	text-decoration: none;
	border-bottom: dotted 1px #000;
} 

a:hover {
	color: #0c3f7f;
	border-bottom: dotted 1px #0c3f7f;
}

a:active {
	color: #519efe;
	border-bottom: dotted 1px #519efe;
}

#errorMessage {
	padding-left: 22px !important;
	margin-bottom: 5px !important;
	border: 1px solid #000;
	color: #fff;
	background: url( img/error.png ) left center no-repeat red;
	margin-bottom: 5px;
}

#errorMessage ul {
	padding: 5px !important;
	list-style: none;
	padding: 0;
	text-align: left !important;
}

#warningMessage {
	padding-left: 22px !important;
	margin-bottom: 5px !important;
	border: 1px solid #000;
	color: #000;
	background: url( img/warning.png ) left center no-repeat orange;
}

#warningMessage ul {
	padding: 5px !important;
	list-style: none;
	padding: 0;
	text-align: left !important;
}

#successMessage {
	margin-bottom: 5px !important;
	padding-left: 22px !important;
	border: 1px solid #000;
	color: #000;
	background: url( img/success.png ) left center no-repeat green;
}

#successMessage ul {
	padding: 5px !important;
	list-style: none;
	padding: 0;
	text-align: left !important;
}

/**
 * Buttons
 */
input[type=submit],
.buttonSubmit {
	padding: 5px 10px;
	border: 1px solid #000;
	cursor: pointer;
	margin-top: 5px;
	background-color: #fff;
	font-weight: bold;
}

input[type=submit]:hover,
.buttonSubmit:hover {
	background-color: #d5d0d0;
}

input[type=submit]:active,
.buttonSubmit:active {
	background-color: #BBBBBB;
}

/**
 * Input Fields
 */
input[type=text],
input[type=password],
select,
.inputSelect,
.inputText,
.inputPassword {
	color: #000;
	background-color: #fff;
	border: 1px solid #0c3f7f;
	font-size: 20px;
	margin-bottom: 5px;
	width: 100%;
} 

input[type=text]:hover,
input[type=password]:hover,
input[type=text]:focus,
input[type=password]:focus,
select:hover,
select:focus,
.inputSelect:hover,
.inputSelect:focus,
.inputText:hover,
.inputPassword:hover,
.inputText:focus,
.inputPassword:focus {
	border: 1px solid #000;
	background-color: #f9f9f9;
}

/**
 * Cursor
 */
label,
select,
.inputSelect {
	cursor: pointer;
} 

.languageSelect {
	padding-left: 30px;
	background-repeat: no-repeat;
	background-position: 7px center;
	padding-right: 3px;
}

/**
 * END $Id: main.css 134 2011-03-08 19:49:37Z tomtaz $
 */