/* stylesheet,css */

/* style rule for the page body */
body {
			font: 80% arial, helvetica, sans-serif;
			margin: 0;
			text-align:center;		/* Center everything */
		}
		
		h1, h2 {
			margin: 0;
			
		}
		
		#header {
			width: 100%;
			background: #ccc;
			height: 60px;
					}
		
		#navigation {
			background: #ccc;
			text-align:left;
			position: absolute;
			left: 0;
			top: 60px;
			width: 15%;
		}
		
		
		#content {
			position: relative;
			margin-left: 15%;
			margin-right: 15%;
			margin-top: 60px;
		}
		 
		#always {
			position: absolute;
			right: 0;
			top: 200px;
			width: 15%;
		}


/* Style rule for level 1 headings */
h2 {
 		font-size: 2em;
 		background-color:#ccc;	/* Light blue */
 		color: #000000;
 		border-width: 10px;
		border-color: #000000;
		/* Shocking pink! */
}
/* Style for thumbnail images */
img.thumbs{
   width: 100px;
  
}
p {
	font-size: 1.5em;
}
/* Extras added to article */
.extra{
color:#990000;
}

/* Visited links */

a:visited{

color: #ff00ff; /* fuchsia */
}

/* Unvisited links (no underline) */

a:link{

color: #3333cc; /* sky blue */
text-decoration: none;
}
/* Hover links (red underline) */

a:hover{

color: #ff0000; /* red */
text-decoration: underline;
}
/* Active links (green underline) */

a:active{

color: #00ff00; /* green */
text-decoration: underline;
}