/*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: 830px;
	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 */
section {
	
	padding-left: 2px;
	width: 200px;
	border-right: 2px solid black;
	float: left;
	}
	
article h2{
		padding-top: 5px;
		border-top: 2px solid black;
		}
		
aside {

	width: 600px;
	float: right;
	
	}
aside h2{
	Font-style: italic;
	padding-right: 10px;
}

fieldset {
    margin-top: 20px;
	margin-right: 2px;
    margin-bottom: .5em;
    padding: .5em 1em;
	height: 300px;
	
}
legend {
    color: black;
    font-weight: bold;
    font-size: 100%;
}
label {
    float: left;
    width: 15em;
    text-align: right;
}
input, select {
    width: 15em;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
	}
	textarea{
height: 5em;
width: 20em;

}

	#buttons input {
	width: 10em;
	padding-top: 2px
}
/* the styles for the footer */
footer {
	border-top: 2px solid black;
	clear: both;
	background-color:silver;
}
footer p {
	padding: 1em 0;
	text-align: center;
}
