/*=========================================
/
/ SITE WIDE STUFF
/
/ =========================================*/	
* {margin: 0; padding: 0; border: none;}

body { background: #fff;}

div.column {
	width: 125px;
	float: right;
	margin-right: 15px;
	display: inline;
	}

div.slide {
	margin-bottom: 40px;
	margin-left: 20px;
	position: relative;
	}
div.nomargin {
	margin-bottom: 0;
	}
div.image {
	float: left;
	width: 580px;
	}
		
/* This keeps that extra bit of margin from being added */
div.image img {
	display: block;
	}
	
p { font-family: Verdana, sans-serif;
	font-size: 11px;
	color: #333;
	font-weight: normal;
	line-height: 16px;
	margin-bottom: 16px;
	}
#wrapper {
	width: 760px;
	margin: 0 auto;
	background: #fff;
	padding-top: 15px;
	}

h1 { font-family: Arial, Verdana, sans-serif;
	font-size: 36px;
	font-weight: normal;
	line-height: 36px;
	color: #333;
	/* the text replacement stuff */
	height: 48px;
	width: 400px;
	background: url(images/h1_test.gif);
	text-indent: -5000px;
	margin-bottom: 12px;
	}

img.header {
	display: block;
	margin-bottom: 12px;
	}
	
/*=========================================
/
/ THE INTRO TEXT AND LOGO
/
/ =========================================*/
	
div#intro #intro_text{
	margin-top: 9px;
	margin-left: 20px;
	position: relative;
	height: 99px;
	width: 552px;
	background: transparent url(../images/top_text_2.gif) top left no-repeat;
	}
div#intro #logo {
	display: block;
	float: right;
	margin-right: 20px;
	display: inline;
	height: 39px;
	width: 39px;
	}
	
div#intro {
	margin-bottom: 36px;
	position: relative;
	}
	
#intro_text li {
    list-style: none;
    position: absolute;
    display: block;
    height: 24px;
    width: 252px;
    top: 0;
    left: 0;
    }
    
#intro_text li a {
    display: block;
    height: 24px;
    width: 252px;
    text-indent: -5000px;
    text-decoration: none;
    }
#intro_text li a:hover {
    background: transparent url(../images/top_text_2.gif) 0px -109px no-repeat;
    }
/*=========================================
/
/ THE GALLERY
/
/ =========================================*/		
div#flashcontent {
	position: relative;
	/*border-bottom: 1px solid blue;*/
	background: #fff;
	margin-bottom: 20px;
}

#flashcontent h1 {font-family: verdana, sans-serif; font-size: 24px; font-weight: normal; color: #9eca27; margin: 40px 0 18px 60px;}
	#flashcontent p {font-family: verdana, sans-serif; font-size: 12px; color: #ccc; width: 360px; margin: 0 0 12px 60px;}
	#flashcontent a {text-decoration: underline; color: #9eca27;}
	
/*=========================================
/
/ TEST BORDERS AND BACKGROUNDS
/
/ =========================================*/	
/*
div.column {border: 1px solid red;}
div.slide {border: 1px solid green;}
div.image {border: 1px solid blue;}
*/

/*=========================================
/
/ HACKS
/
/ =========================================*/
/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */