body{
 margin:0px;
 padding:0px;
 font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
header{
 background-color: #e9f0f9;
}
footer{
 background-color: #000000;
}
a{
 cursor: pointer;
 cursor: hand;
}
h1{
 font-family: 'Droid Sans', sans-serif;
 display:inline;
 font-size:30px;
}
h2{
 font-family: 'Droid Sans', sans-serif;
 font-size:26px;
}
form{
 border:solid #000000 1px;
 position:relative;
 background-color:#e9f0f9;
 padding:5px;
 border-radius:5px;
}
form h4{
 display:inline;
}
form span{
 font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
input, textarea{
 -moz-box-shadow: 0 0 5px #0066b0;
 -webkit-box-shadow: 0 0 5px #0066b0;
 box-shadow: 0px 0px 5px #0066b0;
 width:100%;
}
input[type=submit]{
 border:1px solid #00ff41;
 cursor:pointer;
 -moz-box-shadow: 0 0 5px #0066b0;
 -webkit-box-shadow: 0 0 5px #0066b0;
 box-shadow: 0px 0px 5px #0066b0;
 width:100%;
 height:50px;
 background-color:#00ff41;
 -webkit-transition: background-color 0.4s, border 0.6s;
 transition: background-color 0.4s, border 0.6s;
 font-size:20px;
 font-weight:bold;
}
input[type=submit]:hover{
 background-color:#ffffff;
 border:1px solid #d6ffe0;
}