/*Shoaib Muhammad*/


/* So the HTML5 structural tags work in older browsers */
article, aside, figure, footer, header, nav, section {
    display: block;
}
/* the styles for the elements */
* {
	margin: 0;
	padding: 0;
}
html {
	background-color: #F0F0F0;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    width: 900px;
	margin: 0 auto;
    border: 5px inset gray;
    background-color: silver;
	
}
a:focus, a:hover {
	font-style: italic;
}
/* the styles for the header */
header {
	padding: 1.5em 0;
	
	background-image: -moz-linear-gradient(
	    30deg, silver 0%, white 30%, white 50%, white 80%, silver 100%);
	background-image: -webkit-linear-gradient(
	    30deg, silver 0%, white 30%, white 50%, white 80%, silver 100%);
	background-image: -o-linear-gradient(
	    30deg, silver 0%, white 30%, white 50%, white 80%, silver 100%);
	background-image: linear-gradient(
	    30deg, silver 0%, white 30%, white 50%, white 80%, silver 100%);
}
header h1 {
	color: black;

}
header h2 {
	font-style: italic;
}
header img {
	float: left;
	padding: 0 30px;
}
.shadow {
	text-shadow: 2px 2px 2px gray;
}
/* the styles for the navigation bar */





nav {
	clear: left;
	margin: 0;
	padding: 0;
	text-align: center;
	
}
nav ul {
	margin-left: 0;
	margin-bottom: .5em;
	list-style: none;
	padding: 1em 0;
	background-color: gray;
}
nav li {
	display: inline;
}
nav a {
	color: #fffded;
	text-decoration: none;
	padding: 1em 2em;
	font-weight: bold;
	border-right: 2px solid #fffded;
	
}
nav a.current { color: yellow; }
/* the styles for the section */


aside {
text-align: left;
padding-left: 2px;

}

aside h2{
text-align: center;

}

aside ul {
	padding: 0 0 1.5em 1.25em;
	list-style-type: circle;
}
aside li {
	padding-bottom: .35em;
}

figure {
float: left;
padding-right: 4px;
}

table {
	border: 1px solid black;
	border-collapse: collapse; 
	}
	
th, td {
	border: 1px solid black;
	padding: .2em .7em;
	text-align: center;
	}
	
th. left, td. left {text-align: center;}





/* the styles for the footer */
footer {
	border-top: 2px solid black;
	clear: both;
	background-color:silver;
	
}
footer p {
	padding: 1em 0;
	text-align: center;
}
