/* CSS Stylesheet for Bob Dylan Website */
/* Author: Steve Lacey */

/* Apply to All */

* {
	margin: 0;
	padding: 0;
	border: 0;
}

/* Elements */

body {
	background: #F0F0F0;
	font-family: calibri, arial;
}

a {
	color: #DD0000;
	text-decoration: none;
}

a:hover { color: #FF0000; }
h1 { font-size: 18px; }
ol { margin-left: 40px; }
p { margin: 20px; }

#header {
	background: url("images/header_bg.png") repeat-x;
	height: 100px;
}

/* Navigation */

#nav {
	background: #CCC;
	color: #FFF;
	border-top: solid 1px #343434;
	border-bottom: solid 1px #343434;
	margin: 5px 0 5px 0;
	position: relative;
	top: -5px;
}

#nav ul {
	margin-left: 30px;
}

#nav ul li {
	display: inline;
	padding: 5px;
	margin: 5px;
}

#nav ul li:hover {
	background: #BBB;
	border: solid 1px #343434;
	margin: 4px;
	cursor: pointer;
}

#nav a {
	color: #FFF;
	text-decoration: none;
}

/* Divs */

#main {
	background: #FFF;
	border: solid 1px #CCC;
	margin: 20px;
	padding: 4px;
}

#home #main {
	background: url("images/home.jpg") bottom right #FFF no-repeat;
	height: 292px;
	padding-right: 404px;
}

#contact #main {
	background: url("images/contact.jpg") bottom right #FFF no-repeat;
	height: 392px;
	padding-right: 304px;
}

#albums #main { height: 320px; }
#a1 #main { background: url("images/a1.gif") bottom right #FFF no-repeat; }
#a2 #main { background: url("images/a2.gif") bottom right #FFF no-repeat; }
#a1t1 #main { background: url("images/a1t1.jpg") bottom right #FFF no-repeat; }
#a1t2 #main { background: url("images/a1t2.jpg") bottom right #FFF no-repeat; }
#a1t7 #main { background: url("images/a1t7.jpg") bottom right #FFF no-repeat; }
#a1t11 #main { background: url("images/a1t11.jpg") bottom right #FFF no-repeat; }
#a2t1 #main { background: url("images/a2t1.jpg") bottom right #FFF no-repeat; }
#a2t4 #main { background: url("images/a2t4.jpg") bottom right #FFF no-repeat; }

/* Classes */

.album {
	display: block;
	float: left;
	margin: 20px;
	padding: 10px;
	text-align: center;
}

.album:hover {
	background: #EEE;
	border: solid 1px #DDD;
	margin: 19px;
}

.back {
	background: url("images/pixel.png");
	float: right;
	margin: -26px 0px;
	padding: 2px 8px;
	font-size: 18px;
}

/* Contact Us */

table { width: 100%; }
td[colspan="2"] { text-align: center; }

input[type="text"], select, textarea {
	border: inset 2px #CCC;
	width: 200px;
}

input[type="submit"] {
	background: #EEE;
	border: outset 2px #DD0000;
	margin: 10px;
	padding: 2px;
}