/**
 * -- 1. Reset ----------------------------------------------------------------
 */

html {
	margin:0;
	padding:0;
	border:0;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* This helps to make newer HTML5 elements behave like DIVs in older browers */
article, aside, details, figcaption, figure, dialog,
footer, header, hgroup, menu, nav, section {
	display:block;
}

/* Line-height should always be unitless! */
body {
	line-height: 1.5;
	background: white;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table {
	border-collapse: separate;
	border-spacing: 0;
}
/* float:none prevents the span-x classes from breaking table-cell display */
caption, th, td {
	text-align: left;
	font-weight: normal;
	float:none !important;
}
table, th, td {
	vertical-align: middle;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ''; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

/* Remember to define your own focus styles! */
:focus { outline: 0; }



/**
 * -- 2. Common styles --------------------------------------------------------
 */

noscript {
	border-bottom: 1px solid #D8000C;
	width: 100%;
	padding: 2px 0;
	font-weight: bold;
	background-color: #FFBABA;
	text-align: center;
	display: block;
	color: #D8000C;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}



/**
 * -- Login page --------------------------------------------------------------
 */

#body {
	width: 100%;
	font-family: arial;
}

#body-signup {
	width: 22em;
	margin: 2em auto 0;
	padding: 1em 3em;
	border-radius: 0.20em;
	background-color: #BED331;
}

#body-signup-logo{
	height: 5em;
}

#body-signup-logo .logo {
	float: left;
	width: 163px;
	height: 75px;
	margin-left: 6em;
	text-indent: -100em;
	background: transparent url("../images/logo.png") no-repeat 0 0;
	background-attachment: scroll;
	background-clip: border-box;
	background-origin: padding-box;
	border-radius: 3px;
}

.innerbg {
	height: 12em;
	border-radius: 0.20em;
	padding: 2em;
	background: transparent url("../images/tl-body-signup-bg.png") repeat;
}

.innerbg p {
	padding-top: 5.5em;
	color: #FFF;
	font-size: 0.9em;
}

.innerbg label {
	padding-left: 0.5em;
	color: #FFF;
}

#body-signup-login button {
	width: 175px;
	height: 35px;
	margin-top: 1em;
	border: none;
	background: transparent url("../images/tl-right_button_sprite.png") no-repeat;
	cursor: pointer;
	margin-left: 4.2em;
	color: #75B71D;
	font-weight: bold;
}

.icon_ok {
	display: block;
	background: transparent url("../images/tl-ico-ok.png") no-repeat 7.5em;
	margin-right: 20px;
}

#body-signup-login button:hover {
	background: transparent url("../images/tl-right_button_sprite.png") no-repeat scroll 0px -37px;
}

.inputset {
	height: 4em;
}

.inputset input {
	width: 21em;
	padding: 9px;
	border: solid 1px #FFF;
	border-radius: 0.2em;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	background: #FFFFFF;
	box-shadow: rgba(255,255,255, 0.3) 1px 1px 8px;
	-moz-box-shadow: rgba(255,255,255, 0.3) 1px 1px 8px;
	-webkit-box-shadow: rgba(255,255,255, 0.3) 0px 0px 8px;
	-moz-border-radius: 0.2em;
	-webkit-border-radius: 0.2em;
}

.inputset input:hover, input:focus {
	border-color: #C9C9C9;
	box-shadow: rgba(255,255,255, 0.6) 1px 1px 4px;
	-moz-box-shadow: rgba(255,255,255, 0.6) 1px 1px 4px;
	-webkit-box-shadow: rgba(255,255,255, 0.6) 0px 0px 4px;
}

.notice {
	font-size: 0.8em;
    height: 1.6em;
    left: -3.75em;
    line-height: 1em;
    overflow: hidden;
    position: relative;
    text-align: center;
    top: -1.2em;
    vertical-align: top;
    white-space: nowrap;
    width: 35em;
}

.notice > div {
	margin-bottom: 0.2em;
	border: 1px solid;
	border-radius: 0.15em;
	padding: 0.2em 0.3em;
}

.notice .information { border-color: #00529B; background-color: #BDE5F8; }
.notice .success     { border-color: #4F8A10; background-color: #DFF2BF; }
.notice .warning     { border-color: #9F6000; background-color: #FEEFB3; }
.notice .error       { border-color: #D8000C; background-color: #FFBABA; }
.notice .validation  { border-color: #D63301; background-color: #FFCCBA; }