/* @override http://localhost/form/base-styles.css */

/* @group Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	color: gray;
	font: .8em/1 Verdana, "Helvetica", "Arial", Sans-Serif;
	background-color: white;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* @end group Reset */

#container {
	border: 1px solid black;
}

#header {
	background-color: black;
	color: white;
	/* if there is no logo, use padding with the text */
}

#content {
	background-color: white;
}

#subhead {
	background-color: gray;
	color: white;
	padding: 1em;
}

#footer {
	background-color: black;
	color: white;
	padding: .5em;
	margin-bottom: 20px;
}

/* common */
strong {
	color: red;
}

.clear {
	clear: both
}

.sm {
	font-size: 0.8em;
	color: inherit;
}

.hdg {
	font-weight: bold;
	display: block
}

/* form styles below */

hr {
	border: 1px solid silver;
	margin: 1.5em 0;
}

li {
	margin-bottom: 1em;
}

.desc {
	display: block;
	font-weight: bold;
	clear: both
}

form li span {
	float: left;
	margin-bottom: 1em;
}

input.text, input.file, textarea.textarea, select.select {
color:#333333;
font-size:100%;
margin:0;
}

form li div label, form li span label {
clear:both;
color:#444444;
display:block;
font-size:9px;
line-height:9px;
margin:0;
padding-top:6px;
}

.btn {
	display: block;
	margin: 0 auto;
	padding: .25em .5em;
	font-size: 1em;
	border: 1px solid black;
	cursor: pointer
}

.close {
	color:red;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }