@charset "utf-8";
/* CSS Document */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	background:gray url(../images/back-light.png) no-repeat fixed center center; 
}

#mainlogo{margin-bottom:40px;}
/* ~~ 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,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. */
}
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;
}



/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	overflow: hidden; /* this declaration makes the .container clear all floated columns within it. */
}


.sidebar1 {
	float: left;
	width: 25%;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 65%;
	float: left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~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;
}

/* ---- Main Thumb Slider start  */
#slideshow {
	margin:30px 0 10px 40px;
	width:540px;
	
	
	position:relative;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:445px;
 
  overflow:auto; 
  position:relative;
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:445px; 

}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:39px;
  height:40px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
top: 245px;
  left:10px;
  background:transparent url(../images/control_left.png) no-repeat 0 0;
}
#rightControl {
top: 245px;
  left: 490px;
  background:transparent url(../images/control_right.png) no-repeat 0 0;
}

.slide img {
  float:left;
  margin:3px;
  width: 95px;
  height: 130px;
  padding:3px;
  background: #eee;
  border: 1px solid #ddd;
    
}
.slide img:hover {
  float:left;
  margin:3px;
  padding: 3px;
  width: 95px;
  height: 130px;
  
}
.slide-light img {
  float:left;
  margin:3px;
  width: 190px;
  max-height: 260px;
  padding:3px;
  background: #eee;
  border: 1px solid #ddd;
    
}
/*---- End of Main thumb slider ---- */