@charset "UTF-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background:#000;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	color: #000;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #999;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #06F;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #06F;
	text-decoration: none;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	background-image:url(assests/background/bg.jpg);
	background-repeat:no-repeat;
	height: 0 auto;
	width: 1500px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto;
}

.bg {
	width: 960px;
	margin: 0 auto;
	
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	color:#FFF;
	padding: 10px 0;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#border {
	border-color:#000;
}

.header {
	color: #FFFFFF;
	font-size: 13px;
	padding-right: 10px;
	
}

.intro {
	height: 0 auto;
	font-size:12px;
	color:#000;
  	opacity:0.9;
  	filter:alpha(opacity=90);
}

.bottom-column {
	font-size:13px;
	color:#333;
	height: 0 auto;
	margin-bottom: 0px;
  	opacity:0.8;
  	filter:alpha(opacity=80);
}

#profile {
	border: 3px solid #ccc;
	-moz-box-shadow: 0 0 50px #000; 
		-webkit-box-shadow: 0 0 50px #000;
		box-shadow: 0 0 50px #000;
}

#scrollframe {
	background-color: #FFF;
	-moz-box-shadow: 0 0 50px #000; 
		-webkit-box-shadow: 0 0 50px #000;
		box-shadow: 0 0 50px #000;
}

#shadow {
	-moz-box-shadow: 0 0 50px #000; 
		-webkit-box-shadow: 0 0 50px #000;
		box-shadow: 0 0 50px #000;
}

/* Slide show properties*/

#slideshow {
	list-style: none;
	font-size: 10px;
	color: #FFF
}
#slideshow span {display:none;}
#wrapper {width:606px; display:none}
#wrapper * {margin:0; padding:0}
#fullsize {position:relative; width:613px; height:347px; padding:2px; background:#CCC;
-moz-box-shadow: 0 0 50px #000; 
		-webkit-box-shadow: 0 0 50px #000;
		box-shadow: 0 0 50px #000;
}
#information {position:absolute; bottom:3px; width:613px; height:0; background:#FFF; color:#000; overflow:hidden; z-index:200; opacity:.7; filter:alpha(opacity=70)}
#information h3 {padding:4px 8px 3px; font-size:14px}
#information p {padding:0 8px 8px}
#image {width:500px}
#image img {position:absolute; z-index:25; width:auto}
.imgnav {position:absolute; width:25%; height:306px; cursor:pointer; z-index:150}
#imgprev {left:0; background:url(images/left.gif) left center no-repeat}
#imgnext {right:0; background:url(images/right.gif) right center no-repeat}
#imglink {position:absolute; height:306px; width:100%; z-index:100; opacity:.4; filter:alpha(opacity=40)}
.linkhover {background:url(images/link.gif) center center no-repeat}
#thumbnails {margin-top:15px}
#slideleft {float:left; width:20px; height:81px; background:url(images/scroll-left.gif) center center no-repeat; background-color:#222}
#slideleft:hover {background-color:#333}
#slideright {float:right; width:20px; height:81px; background:#222 url(images/scroll-right.gif) center center no-repeat}
#slideright:hover {background-color:#333}
#slidearea {float:left; position:relative; width:456px; margin-left:5px; height:81px; overflow:hidden}
#slider {position:absolute; left:0; height:81px}
#slider img {cursor:pointer; border:1px solid #666; padding:2px}

.footer {
	color: #999;
	font-size:10px;
	padding-right:20px;
}

#fontsize {
	font-size: 12px;
	color: #CCC;
}
.container .bg .content .intro table tr td table tr td p {
	color: #000;
}
.container .bg .content .intro table tr td #slideshow li {
	color: #ffffff;
}
.container .bg .content .bottom-column table tr td table tr #shadow p a:link {
	color: #06F;
}
.container .bg .content .bottom-column table tr td table tr #shadow p a:visited {
	color: #06F;
}
.container .bg .content .bottom-column table tr td table tr #shadow p a:hover, a:active, a:focus {
	color: #F00;
}

.footer a:link {
	color: #CCC;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
.footer a:visited {
	color: #CCC;
	text-decoration: none;
}
.footer a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #06F;
	text-decoration: none;
}

.container .bg .content .bottom-column .footer p {
	color: #666;
}

#bulletpoints {
	padding-left: 30px;
	padding-bottom: 10px;
	width: 250px;
	float:left;
}
#bulletpoints1 {
	padding-left: 30px;
	padding-bottom: 10px;
	width: 250px;
	float:right;
}
#fontcolor {
	color:#FFF;
	font-size:16px;
}
