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

* {
		margin: 0; 
		padding:0;
	}
	
	body{
	color: #606060;
	font-family: Verdana, sans-serif;
	font-size: 12px;
	line-height: 150%;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 30px;
	word-wrap: break-word;	/* IE */
	/*background-image: url(images/meshblk.jpg);*/
	}
	body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	color: #000;
	/*background-image: url(/new/html/images/slider/meshbg.jpg);*/
}
	
	img {
		border: 0;
	}

	a:link {
		color: #808080;
	}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #FFFFFF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
	a:visited {
		color: #808080;
	}
a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}
	a:hover {
		color: #808080;
	}
	a:active {
		color: #808080;
	} 

	#sidebar{ 
		position:fixed; 
		top: 38px; 
		left:30px;	
		width: 235px; 
	}
	
	* html div#sidebar{ 
		position:absolute; 
		top: 38px; 
		left:30px;
		width: 235px; 
	}
	
	#content{ 
		margin-top: 38px;
		margin-left: 300px;
	}

	#topbar{ 
		margin-top: 30px;
		margin-left: 30px;
	}

	#content_wide{
	margin-top: 30px;
	margin-left: 30px;
	}

	#album_title{ 
		color: #000000;
		font-family: "Trebuchet MS", Verdana, Sans-Serif;
		font-size: 18px;
		line-height: 150%;
	}
	
	#album_description{ 
		color: #303030;
		font-family: "Trebuchet MS", Verdana, Sans-Serif;
		font-size: 12px; 
		line-height: 150%;
	}

	.thumbnail{
		height: 128px; 
		width: 128px;
		text-align: center;
		padding:8px;
		background-color: #e0e0e0;
		border: 1px solid #d0d0d0;
		float: left;
		margin-right: 15px;
		margin-bottom: 15px;
	}

	.thumbnail_text{
		height: 145px; 
		width: 128px;
		text-align: center;
		padding:8px;
		background-color: #e0e0e0;
		border: 1px solid #d0d0d0;
		float: left;
		margin-right: 15px;
		margin-bottom: 15px;
		overflow: hidden; 
 		font-family: "Trebuchet MS", Verdana, Sans-Serif;
		font-size: 11px;
	}
	
	#loading_img{
		margin-bottom: 15px;
		width: 32px;
		height: 32px;
	}
    
    #loading_layer{
		position: absolute;
		top: 45%;
		left: 50%;
		margin-left:-16px;
		height: 32px;
		width: 32px;
		text-align: center;
		overflow: visible;
    }
/* ~~ 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 block. 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 blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	color: #61431C;
	font-size: 24px;
	font-weight: bold;
}
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;
}
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. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 1100px;
	background-color: #FFFFFF; /* the auto value on the sides, coupled with the width, centers the layout */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	min-width: 800px;
}

.container aside p
{
	font-size: .7em;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-color: #FFFFFF;
	background-image: url(/images/headbkg2.jpg);
	background-repeat: repeat;
	height: 245px;
	width: 100%;
}
#hhh {
	background-repeat: repeat-x;
	background-image: url(/images/headbkg2.jpg);
	background-position: left top;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks 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 block 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 block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 180px;
	background-color: #FFFFFF;
	padding-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	letter-spacing: 0.12em;
}

.container .sidebar1 aside table tr td
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.container .sidebar1 aside table
{
	text-align: right;
}

.container .sidebar1 aside p strong
{
	font-size: 1.1em;
}

.container #doorsb
{
	background-image: url(images/doors2.png);
	height: 64px;
	width: auto;
	clear: both;
	background-position: center;
}
aside {
	float: left;
	width: 180px;
	background-color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: justify;
	height: auto;
}

/* ~~ 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. */
	font-family: Arial, Helvetica, sans-serif;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
.content {
	width: 640px;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	height: 480px;
	padding: 0px;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #0099FF;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #CCCCCC;
	color: #FFF;
}

/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	background-color: #999999;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.5em;
}

.container footer
{
	color: #FFF;
	text-align: center;
}
/* ~~ 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;
}

#cont
{
	float: left;
	height: auto;
	width: 180px;
	visibility: hidden;
	font-size: 0.8em;
}
.clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.cont
{
	font-size: 10px;
	font-family: Verdana, Geneva, sans-serif;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}

.container .content section1
{
	background-image: url(images/SGScrewdriverfinal1.jpg);
	background-position: center;
}

#topmid
{
	background-image: url(images/SGScrewdriverfinal1.jpg);
	background-position: right bottom;
	background-repeat: no-repeat;
	height: 360px;
}

.container .content #scrdrv
{
	background-image: url(images/SGScrewdriverfinal.jpg);
	background-position: center;
	background-repeat: no-repeat;
	height: 198px;
}

.container aside p img
{
	float: right;
}

.container .sidebar1 .nav li a
{
	font-size: 10px;
}

/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666;
	margin-bottom: 0px;
	border-bottom: solid 1px #CCC;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	background-color: #0099FF;
	list-style: none; /* this creates the space between the navigation on the content below */
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: sans-serif;
	font-size: 0.8em;
	font-weight: normal;
	color: #FFF;
	padding-top: 7px;
	padding-right: 7px;
	padding-bottom: 7px;
	padding-left: 15px;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: #FFF;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #0099FF;
}

/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */

.CollapsiblePanelClosed .CollapsiblePanelTab {
 /* background-color: #EFEFEF */
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #CCC;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #3399FF;
}
.bldcontent {
	font-family: "Arial Black", Gadget, sans-serif;
}
#spcr {
	background-color: #09F;
	height: 22px;
	clear: both;
	float: left;
}
#d1 {
	float: left;
	height: 500px;
	width: 150px;
}
#d2 {
	float: left;
	height: 500px;
	width: 630px;
}
#d3 {
	float: left;
	height: 500px;
	width: 150px;
	padding-left: 22px;
}
