/* reset browser styles */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 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, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
}
ol { 
	padding-left: 1.4em;
	list-style: decimal;
}
ul {
	padding-left: 1.4em;
	list-style: square;
}

/* end reset browser styles */

body {
	width: 760px;
	margin: 0 auto;	
	background-color: rgb(0,51,102);
	color: rgb(255,255,255);
}

h1 {
	font-size: 2em;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: normal;
	border-bottom: dotted 2px rgba(255,255,255,.5);
	padding-bottom: 4px;	
	margin: 25px 0;
}

p {
	margin-bottom: 25px;	
}
.subform {
    font-size: 1.2em;
    color: white;
    font-family:Tahoma, Geneva,  sans-serif;
}

.subform .label
{
   display: inline-block;
   width: 200px;
   vertical-align: top;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
    color: rgba(255,255,255,.5);
}
.subform input[type="submit"]
{ 
    margin-left: 220px;
    padding: 10px 25px;
    font-size: 1em;
    color: white;
    background-color: rgb(0,102,153);
    background: linear-gradient(to bottom, rgba(255,255,255,.1) 40px,
        rgba(255,255,255,.5));
    border-radius: 5px;
    box-shadow: 0 0 4px white;

}
.subform select {
    font-size: 1.2em;
}
.subform input[type="text"], .subform textarea {
    border-radius: 5px;
    border: none;
    background-color: rgba(255,255,255,.5);
    color: rgba(255,255,255,1);
    font-size: 1.2em;
    box-shadow: inset 0 0 10px rgba(255,255,255,.75);
    width: 500px;
    padding: 5px;
}
.subform input[type-"text"]:focus, .subform textarea:focus {
    background-color: white;
    color: black;
}
}