/* Default CSS */
#outerWrapper {
	margin: 50px auto;
	width: 800px;
	padding: 20px;
	background: white;
}
body {
    background-image:url('files/20a.jpg');
    background-repeat: repeat; 
	font: 14px/18px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    line-height:1.5;
}
header {
    
}
h1 {
    letter-spacing: -.05em;
    word-spacing: -.1em;
    line-height: .9em;
    text-shadow: rgba(51,51,51,.9) -1px -1px 3px, rgba(203,203,203,.9) 1px 1px 3px;
}
h2 {
    letter-spacing: 2px;
    word-spacing: 3px;
    line-height: 1em;
    text-align: center; 
}
h3 {
    letter-spacing: 0;
    text-shadow: none;
    vertical-align: super;
    margin-left:20px;
}
h4 {
    letter-spacing:normal; 
    vertical-align:super;
    margin-left:20px;
}
h5 {
    letter-spacing:normal; 
    vertical-align:super;
    margin-left:20px;
}
p  {
    word-spacing: .075em;
    line-height: 20px;
    text-align: justify;
    margin: 20px;
    padding:2px;
}
aside {
    margin-left:20px; 
}
button image {
   vertical-align:middle; 
}
.double_colum_list li {
   float:left; width:50%; 
}
input, textarea, select {
   border: 1px solid #000000;
   margin-top: -5px;
}
input:focus {
   font-weight:bold; 
   color: #000000
}
lable {
   width: 100px;
   float: left; 
   margin-right: 10px;
   text-align:right;
   clear:left;
}
input [type="checkbox"] {
   margin: 2px 0 0 0; 
}
fieldset {
   margin-bottom: 15px; 
}
legend {
   background: #FFF;
   border: 1px solid #000066;
   padding: 5px;
   font-weight: bold;
}
table { border:2px; border-style:double; border-color: #000000; 
}
tr {
  border-style:solid; border-width: 2px; border-color: #000000;
} 
  
td {
  border-style: solid; border-color: gray; border-width: 1px; border-color: #000000;
  }
  table {
  border-style:solid; border-color: gray; border-width: 2px; border-color: #000000;
}
/* Main Navigation */
#nav {
    position:relative;
    width:800px;
    margin:0 auto;
    margin-top:50px;
    padding:10px;
}
 
ul#navigation {
    margin:0px auto;
    position:relative;
    float:inherit;
    border-left:1px solid #fff;
    border-right:1px solid #000000;
}
 
ul#navigation li {
    display:inline;
    font-size:12px;
    font-weight:bold;
    margin:0;
    padding:0;
    float:left;
    position:relative;
    border-top:1px solid #c4dbe7;
    border-bottom:1px solid #c4dbe7;
}
 
ul#navigation li a {
    padding:10px 25px;
    color:#616161;
    text-shadow:1px 1px 0px #000000;
    text-decoration:none;
    display:inline-block;
    border-right:1px solid #fff;
    border-left:1px solid #000000;
    border-top:1px solid #fff;
    background: #339900;
 
    -webkit-transition:color 0.2s linear, background 0.2s linear;
    -moz-transition:color 0.2s linear, background 0.2s linear;
    -o-transition:color 0.2s linear, background 0.2s linear;
    transition:color 0.2s linear, background 0.2s linear;
}
 
ul#navigation li a:hover {
    background:#339900;
    color:#000000;
}
 
ul#navigation li a.first {
    border-left: 0 none;
}
 
ul#navigation li a.last {
    border-right: 0 none;
}
 
ul#navigation li:hover > a {
    background:#ffcc00;
}
/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
    visibility:visible;
    opacity:1;
}
 
ul#navigation ul, ul#navigation ul li ul {
    list-style: none;
    margin: 0;
    padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
    visibility:hidden;
    opacity:0;
    position: absolute;
    z-index: 99999;
    width:129px;
    background:#ff9900;
    box-shadow:1px 1px 3px #000000;
/* css3 transitions for smooth hover effect */
    -webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
    -moz-transition:opacity 0.2s linear, visibility 0.2s linear;
    -o-transition:opacity 0.2s linear, visibility 0.2s linear;
    transition:opacity 0.2s linear, visibility 0.2s linear;
}
 
ul#navigation ul {
    top: 43px;
    left: 1px;
}
 
ul#navigation ul li ul {
    top: 0;
    left: 130px; /* strong related to width:180px; from above */
}
 
ul#navigation ul li {
    clear:both;
    width:100%;
    border:0 none;
    border-bottom:1px solid #000000;
}
 
ul#navigation ul li a {
    background:none;
    padding:7px 15px;
    color:#000000;
    text-shadow:1px 1px 0px #000000;
    text-decoration:none;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    width:99px;
}