/*DEFAULT RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

/*MAIN*/
body { 
	font-size: 20px;
	line-height: 1.25em;
	font-family: Neue Helvetica, Helvetica, Arial;
	background: black;
	color: #F8F8FF;
}

.box {
	padding:5px 15px;
	/*text-align:justify;*/
}

a {
	color: #FFC125;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: red;
}

.cart_img {
	width: 25%;
	border:2px solid #FFC125;
}

.main_img {
	width: 65%;
	border:2px solid #FFC125;
}

header {
	background: black;
	width: 100%;
	height: 76px;
	position: fixed;
	top: 0;
	left: 0;
	border-bottom: 4px solid #FFC125;
	z-index: 100;
}

#cart_img {
	margin: 20px;
	float: left;
	width: 200px;
	height: 40px;
	background: url(../images/logo.png) no-repeat center;
	display: block;
}

nav {
	float: right;
	padding: 20px;
}

#menu-icon {
	display: hidden;
	width: 40px;
	height: 40px;
	background: black url(../images/menu-icon.png) center;
}

a:hover#menu-icon {
	background-color: #444;
	border-radius: 4px 4px 0 0;
	border:3px inset #FFC125;
}

ul {
	list-style: none;
}

li {
	display: inline-block;
	float: left;
	padding: 10px
}

section {
	margin: 80px auto 40px;
	max-width: 980px;
	position: relative;
	padding: 20px;
}

h1 {
	font-size: 1.5em;
	color: white;
	line-height: 1.15em;
	margin: 20px 0 ;
}

h3 {
	font-size: 1em;
	color: white;
	line-height: 1.15em;
	margin: 20px 0 ;	
}

p {
	line-height: 1.45em;
	margin-bottom: 20px;
}

tr {
	height:2em;
	text-align:right;
}

td {
	font-size:1.05em;
	vertical-align:top;
}
	
#span {
	width:10px;
}
	
input[type=text] {
	margin-bottom: 20px;
	/*margin-top: 10px;*/
	width:90%;
	padding: 5px;
	border-radius:5px;
	border:1px solid gray;
	font-size:18px;
	font-family:arial;
}

textarea {
	width:90%;
	padding: 5px;
	/*margin-top: 10px;*/
	border:1px solid gray;
	border-radius:5px;
	margin-bottom: 20px;
	/*resize:none;*/
	font-size:18px;
	font-family:arial;
}

input[type=submit] {
	margin-bottom: 20px;
	width:35%;
	padding: 15px;
	border-radius:25px;
	border:3px solid gray;
	background-color: #FFC125;
	color: black;
	font-size:25px;
	cursor:pointer;
}

#submit:hover {
	border:3px inset red;
}

.top {
    background-color: black;
    border-bottom: 5px solid black;
	text-align:left;
	margin-left:20px;
}
	
.mid {
    background-color: black;
    border-bottom: 5px solid black;
	text-align:left;
	margin-left:20px;
}
	
.bottom {
    background-color: black;
	text-align:left;
	margin-left:20px;
	margin-bottom:15px;
}
	
input:checked {
	height: 21px;
	width: 21px;
}

@media only screen and (max-width : 640px) {

	header {
		position: fixed;
	}

	#menu-icon {
		display:inline-block;
	}

	nav ul, nav:active ul { 
		display: none;
		position: absolute;
		padding: 10px;
		background: black;
		border: 5px solid #FFC125;
		right: 20px;
		top: 60px;
		width: 30%;
		border-radius: 25px 0 25px 25px;
	}

	nav li {
		text-align: center;
		width: 100%;
		padding: 10px 0;
		margin: 0;
	}

	nav:hover ul {
		display: block;
	}
}