@charset "UTF-8";
/* CSS Document */

/* this sets the layout of the content on the page - centers it with a default gray background color and also sets the default font color/family */
body{
	margin:0 auto; 
	padding:0;
	text-align:left;
	color:#585858;
	background:#fff;
	font-family: Helvetica, arial, sans-serif;
}

/* the main div = the page */
#main{
	margin:0 auto;
	background-repeat:no-repeat;
	width:800px;
	background-color:#FFF;
}

/* removes lame default purple border used by browsers for images with anchors (i.e. the logo that links to the home page) */
#main img{
	border:none;
}

/* these are the classes defined to give the page the appropriate background image */
.home{
	background-image:url(images/bg_home.jpg);
}
.about{
	background-image:url(images/bg_about.jpg);
}
.bikes{
	background-image:url(images/bg_bikes.jpg);
}
.workshop{
	background-image:url(images/bg_workshop.jpg);
}
.kit{
	background-image:url(images/bg_kit.jpg);
}
.factory{
	background-image:url(images/bg_factory.jpg);
}
.classroom{
	background-image:url(images/bg_classroom.jpg);
}
.book{
	background-image:url(images/bg_book.jpg);
}
.gallery{
	background-image:url(images/bg_gallery.png);
}
/* this keeps the header all neat and pretty, inline block keeps the logo inline with the nav row. the logo is in this div*/
#logo {
	display: inline-block;
}

/* this starts the nave code - the nav is displayed as an unordered list (ul) that is displayed horizontally */
#nav {
	display:inline-block;
	float:right;
}
#nav ul{ 
	margin: 0;
	padding: 0;
	list-style: none;
}
#nav li{
	display:inline-block;
	vertical-align:top;
	text-align:right;
	padding:40px 50px 0px 0px;
	
}
#nav a{
	color:#000;
	font-family: Helvetica, Arial, sans-serif;
	font-size:20px;
	text-decoration:none;		
}
#nav a:hover{
	text-decoration:underline;
}
#nav .active{
	text-decoration:underline;
}
/* end nav shiz */

/* begin content styling */

#content{
	padding:0; /* top & right spacing */
	width:600px; /* giving the content a column instead of wrapping */
	text-align:justify;
	/*height:500px; /* sets the minimum height needed for the background image */
}
#content h1{ /* title styling */
	color:#333;	
	font-size:20px;
	text-align:left;
	line-height:20px;	
}
#content p { /* normal text styling */
	font-size:17px;
	line-height:18px;
	color:#717F7D;
}

content a:visited{
	color:#8C95B6;
}
.homelink {
	text-decoration:none;
	color:#8C95B6;
}

/*home page side nav in content section */
#listcontainer {
	width:275px;
}
#listcontainer ul {
	list-style:none;
	margin:0;
	padding:0 0 0 20px;
}
#list li {
	
	margin-top:10px;
}
#listcontainer a{
	display:block;
	color:#666;
	text-decoration:none;
	font-size:16px;
	padding:5px;;
	border:solid 1px #999;
	text-decoration:none;

}
#list li a:hover{
	background-color:#CCC;
}

.desc{
	font-size:20px;
	color:#000;
}
.bold{
	font-weight:bold;
}
.iBold{
	font-weight:bold;
	font-style:italic;
}
.aboutText p{
	line-height:120px;
}

#slideshow {
	margin-top:20px;
	width:245px;
	text-align:center;
}
#slideshow p{
	font-size:14px;
	line-height:0px;
	color:#666;
}

#slideshow img{
	border:1px solid #CCC;
	padding:4px;
}

#deposit{
	width:150px; 
	float:left;
	padding-bottom:20px;
	text-align:center;
}
#footer{ /* footer div with dotted top border to be inline with rest of content */
	margin:0 auto;
	background-color:#FFF;
	width:800px;
	border-top:1px dotted #CCC;
	margin-top:20px;
}


/* for home page footer with shop addresses */
#address{
	width:263px;
	display:inline-block;
	text-align:center;
	vertical-align:top;
}
#address h3 {
	font-size:12px;
	font-weight:bold;
	line-height:10px;
}
#address p {
	font-size:10px;
	line-height:5px;
}
#email {
	width:800px;
	text-align:center;
	font-size:12px;
	font-weight:bold;
	line-height:10px;
}
/*end footer */
