*       {
        margin: 0;
        padding: 0;
}


body     {
         background-color: silver;
         background-image: url(pictures/watermark.png); 
         text-align: center;
}

#wrapper {
         background-color: white;
         width: 900px;
         margin 0 auto 0 auto;
         text-align: left;
         font-family: areal, sans-serif;
         border-right: black 1px solid;
         border-left: black 1px solid;
}



header {
      background-color: white;
      height: 42px;
}



/* Now let`s stylize the navigation. We`ll start with the styles for the main nav. The styles for #nav id can be removed if you want. They are just to center the menu. You can alter them to fit your design. */


/* Main Navigation */


nav {
    background-color: lightblue;
    background-image: url(pictures/back_nav.jpg)
} 

nav ul {
	padding: 0;
} 


nav li {
	/* background-color: orange; */
    display: inline-block;
    height: 1.5em;
    padding: 1em 1em 0 1em;
    line-height: 1.5 em;
    font-family: arial, sans-serif;
}

nav a {
    color: white;
    text-decoration: none;
    
}

nav a:hover {
    background-color: #993300;
}


/* drop down under main menu */
ul#navigation li {
	position:relative;
	border-top:1px solid #c4dbe7;
	border-bottom:2px solid #c4dbe7;
}

ul#navigation li a {
	padding:10px 25px;
	text-shadow:1px 1px 0px #fff;
	
	-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.first {
	border-left: 0 none;
}

ul#navigation li a.last {
	border-right: 0 none;
}

ul#navigation li:hover > a {
       background-color: #AD0000; /* red */

}





/* Notice that ul#navigation li a has some transition styles. They`re used to create a nice fading effect on hover. Now let`s stylize the drop-down menus: */



/* 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:180px;
	background:#f8f8f8;
	box-shadow:1px 1px 3px #ccc;
/* 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: 181px; /* strong related to width:180px; from above */
}

ul#navigation ul li {
	clear:both;
	width:100%;
	border:0 none;
	border-bottom:1px solid #c9c9c9;
}

ul#navigation ul li a {
	background:none;
	padding:7px 15px;
	color:#616161;
	text-shadow:1px 1px 0px #fff;
	text-decoration:none;
	display:inline-block;
	border:0 none;
	float:left;
	clear:both;
	width:150px;
}



article {
    /* background-color: yellowgreen; */
    margin-top: 30px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
}

#block1 {
    background-color: whitesmoke;
    padding: 30px;
    text-align: left;
    border: grey 1px solid;
     -moz-border-radius-topleft: 5px;
     -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topright: 5px;
     -webkit-border-top-right-radius: 5px;
     -moz-border-radius-bottomleft: 5px;
     -webkit-border-bottom-left-radius: 5px;
     -moz-border-radius-bottomright: 5px;
     -webkit-border-bottom-right-radius: 5px;
    margin-bottom: 60px;
    box-shadow: 1px 1px 1px silver;
   
}


#space {
    background-color: white;
    padding: 30px;
    text-align: left;
}



h3 {
    color: #993300; /* dark red as ELCT page */
    line-height:200%;
}










footer {
    background-color: #006699;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    
}
  
    

footer a:hover {
    text-decoration: underline;
}




