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

<style type="text/css">

body {
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background-color: #F9F6ED;
}


/* ~~ 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. */
}
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: #496862;
	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: #4c2317;
	text-decoration: underline;
}
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 divs ~~ */
.container {
	width: 900px; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #F9F6ED;
}


/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	background-color: #F9F6ED;
	background-image: url(HeaderBack.png);
	background-repeat: no-repeat;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	height: 180px;
	width: 900px;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs 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.

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 div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div'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 divs 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 right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 150px;
	background: #F9F6ED;
	padding-bottom: 6px;
	
}



.sidebarmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif, c1d8d3;
width: 140px; /* Main Menu Item widths */
border-bottom: 0px solid #F9F6ED;
}
 
.sidebarmenu ul li{
position: relative;
z-index: 75;
}

/* Top level menu links style */
.sidebarmenu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #f9f6ed;
text-decoration: none;
padding: 6px;
border-bottom: 1px solid #F9F6ED;
border-right: 1px solid #F9F6ED;
z-index: 75;
}

.sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{
background-color: #4C2317; /*background of tabs (default state)*/

}

.sidebarmenu ul li a:visited{
color: #f9f6ed;


}

.sidebarmenu ul li a:hover{
background-color: #F9F6ED;
color:  #4c2317;


}

/*Sub level menu items */
.sidebarmenu ul li ul{
position: absolute;
width: 170px; /*Sub Menu Items width */
top: 0;
visibility: visible;
z-index: 75;

}

.sidebarmenu a.subfolderstyle{
background: url(rightarrow2.png) no-repeat 97% 50%;

}

 
/* Holly Hack for IE \*/
* html .sidebarmenu ul li { float: left; height: 1%;}
* html .sidebarmenu ul li a { height: 1%;}
/* End */





.content {
	width: 750px;
	float: left;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.align-right { float:right; margin: 0 0 15px 15px; }
.align-left { float:left; margin: 0 15px 15px 0; }

.align-right2 { 
	position: relative;
	float:right; 
	margin: 0 0 5px 5px;
	z-index: 5; }
.align-left2 { 
	position: relative;
	float:left; 
	margin: 0 10px 5px 15px;
	z-index: 5;
 }



.gallerycontainer {
position: static;
background-color: #f9f6ed;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.gallerycontainer2 {
position: relative;
float: left;
background-color: #FFF;
width: 500px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.galleryspace {
position: relative;
	float: left;
	width: 125px;
	background: #f9f6ed;
	/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 0 0 2px 5px;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px #4c2317;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #f9f6ed;
padding: 5px;
left: -1000px;
border: 0;
visibility: hidden;
color: #4c2317;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 225px;
left: 450px; /*position where enlarged image should offset horizontally */
z-index: 100;
}



.thumbnail2 img{
border: 1px solid white;
margin: 0 0 2px 5px;
}

.thumbnail2:hover{
background-color: transparent;
}

.thumbnail2:hover img{
border: 1px #4c2317;
}

.thumbnail2 span{ /*CSS for enlarged image*/
position: absolute;
background-color: #fcfcec;
padding: 5px;
left: -1000px;
border: 0;
visibility: hidden;
color: #4c2317;
text-decoration: none;
}

.thumbnail2 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail2:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 650px;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 100;
}




/* ~~ 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. */
}

/* ~~ 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: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
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 anchor block properties so it fills out the whole LI that contains it so that the entire area reacts 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: #C6D580;
}
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: #ADB96E;
	color: #FFF;
}

/* ~~ The footer styles ~~ */
.footer {
	padding: 0px 0;
	background: #c1d8d3;
	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 */
}

/* ~~ 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 .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


.container .sidebar1 .sidebarmenu #works {
	color: #496862;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: small;
	text-indent: 6px;
	text-align: left;
	white-space: normal;
	display: none;
}


.profilematerials {
	float: left;
	width: 450px;
	background: #f9f6ed;
	padding-bottom: 6px;
}


.webimage {
	
	width: 250px;
	background: #f9f6ed;
	padding-bottom: 12px;
}


.space {
	position: relative;
	float: left;
	width: 29px;
	background: #f9f6ed;
	padding-left: 0px;
	padding-bottom: 12px;
}


.coverimage {
	position: relative;
	float: left;
	width: 175px;
	background: #f9f6ed;
	margin-right: 35px;
	margin-bottom: 2px;
}

.thankyouvertical {
	position: relative;
	float: left;
	width: 225px;
	background: #f9f6ed;
	margin-right: 8px;
	margin-bottom: 2px;
}

.thankyouhorizontal {
	position: relative;
	float: left;
	width: 161px;
	background: #f9f6ed;
	margin-right: 0px;
	margin-bottom: 2px;
}



.letterimage {
	position: relative;
	float: left;
	width: 175px;
	background: #f9f6ed;
	margin-right: 25px;
	margin-bottom: 12px;
}


.space2 {
	position: relative;
	float: left;
	width: 45px;
	background: #f9f6ed;
	padding-left: 0px;
	padding-bottom: 12px;
}

.businesscard {
	position: relative;
	float: left;
	width: 125px;
	background: #f9f6ed;
	margin-right: 35px;
	margin-bottom: 12px;
}

.postcard {
	position: relative;
	float: left;
	width: 200px;
	background: #f9f6ed;
	margin-right: 25px;
	margin-bottom: 12px;
}
	
.letterhead {
	position: relative;
	float: left;
	width: 175px;
	background: #f9f6ed;
	margin-right: 35px;
	margin-bottom: 2px;
}

.outreachletter {
	position: relative;
	float: left;
	width: 175px;
	background: #f9f6ed;
	margin-right: 25px;
	margin-bottom: 12px;
}


.cardhorizontal {
	position: relative;
	float: left;
	width: 125px;
	background: #f9f6ed;
	margin-right: 25px;
	margin-bottom: 45px;
}

.cardhorizontal2 {
	position: relative;
	float: left;
	width: 175px;
	background: #f9f6ed;
	margin-right: 25px;
	margin-bottom: 62px;
}

.cardvertical {
	position: relative;
	float: left;
	width: 95px;
	background: #f9f6ed;
	margin-right: 25px;
	margin-bottom: 12px;
}

.cardvertical2 {
	position: relative;
	float: left;
	width: 125px;
	background: #f9f6ed;
	margin-right: 40px;
	margin-bottom: 12px;
}


.announcement57horizontal {
	position: relative;
	float: left;
	width: 150px;
	background: #f9f6ed;
	margin-right: 0px;
	margin-bottom: 12px;
}

.announcement57vertical {
	position: relative;
	float: left;
	width: 107px;
	background: #f9f6ed;
	margin-right: 20px;
	margin-bottom: 12px;
}

.announcement49horizontal {
	position: relative;
	float: left;
	width: 225px;
	background: #f9f6ed;
	margin-right: 0px;
	margin-bottom: 12px;
}

.announcement49vertical {
	position: relative;
	float: left;
	width: 100px;
	background: #f9f6ed;
	margin-right: 0px;
	margin-bottom: 12px;
}

.space3 {
	position: relative;
	float: left;
	width: 39px;
	background: #f9f6ed;
	margin-left: 0px;
	margin-bottom: 12px;
}

.space4 {
	position: relative;
	float: left;
	width: 30px;
	background: #f9f6ed;
	margin-left: 0px;
	margin-bottom: 12px;
}

.space5 {
	position: relative;
	float: left;
	width: 100px;
	height: 400px;
	margin-left: 0px;
	margin-bottom: 12px;
}

.space6 {
	position: relative;
	float: left;
	width: 15px;
	margin-left: 0px;
	margin-bottom: 12px;
}

.space7 {
	position: relative;
	float: left;
	width: 100px;
	height: 600px;
	margin-left: 0px;
	margin-bottom: 12px;
}

.space8 {
	position: relative;
	float: left;
	width: 50px;
	height: 600px;
	margin-left: 0px;
	margin-bottom: 12px;
}

.space9 {
	position: relative;
	float: left;
	width: 55px;
	height: 600px;
	margin-left: 0px;
	margin-bottom: 12px;
}

.orderform {
	position: relative;
	float: left;
	width: 290px;
	background: #c1d8d3;
	padding-left: 0px;
	padding-right: 0px;
}

.orderformtitle {
	position: relative;
	float: left;
	width: 291px;
	background-color: #4c2317;
	padding: 2px;
	margin-bottom: 5px;
margin-left: 5px;
margin-right: 5px;
}

.uploadformtitle {
	position: relative;
	float: left;
	width: 400px;
	background-color: #4c2317;
	padding: 2px;
	margin-bottom: 5px;
margin-left: 0px;
margin-right: 5px;
}


.announcements {
	position: relative;
	float: left;
	width: 140px;
	background: #f9f6ed;
	margin-left: 40px;
	margin-bottom: 15px;
}

.announcements2 {
	position: relative;
	float: left;
	width: 170px;
	background: #f9f6ed;
	margin-left: 15px;
	margin-bottom: 5px;
}

.designlibrary {
	position: relative;
	float: left;
	width: 100px;
	background: #f9f6ed;
	margin-left: 20px;
	margin-bottom: 15px;
}


.printingbox {
	position: relative;
	float: left;
	width: 700px;
	background: #f9f6ed;
	margin-left: 15px;
	margin-bottom: 5px;

}

.printingcolumn {
	position: relative;
	float: left;
	width: 350px;
	background: #f9f6ed;
	margin-left: 15px;
	margin-bottom: 5px;
}

.sidebar2 {
	float: left;
	width: 300px;
	background: #c1d8d3;
	padding: 0px;
}



.sidebarmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
width: 140px; /* Main Menu Item widths */
border-bottom: 0px solid #f9f6ed;
z-index: 75;
}
 
.sidebarmenu ul li{
position: relative;
z-index: 75;
}

.ddimgtooltip{
box-shadow: 3px 3px 5px #818181; /*shadow for CSS3 capable browsers.*/
-webkit-box-shadow: 3px 3px 5px #818181;
-moz-box-shadow: 3px 3px 5px #818181;
display:none;
position:absolute;
border:1px solid black;
background:white;
color: black;
z-index:2000;
padding: 4px;
}

/*---------- bubble tooltip -----------*/
a.tt{
    position:relative;
    z-index:24;
    color:#496862;
	
    text-decoration:none;
}
a.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:15; color: #496862; background:;}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:0px; left:0;
	padding: 15px 0 0 0;
	width: 200px;
	color: #4c2317;
    text-align: center;
	filter: alpha(opacity:90);
	KHTMLOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
}
a.tt:hover span.top{
	display: block;
	padding: 30px 8px 0;
    background: url(bubble.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 0 8px; 
	background: url(bubble_filler.gif) repeat bottom; 
}
a.tt:hover span.bottom{
	display: block;
	padding:3px 8px 12px;
	color: #496862;
    background: url(bubble.gif) no-repeat bottom;
}



/*---------- scrolling gallery -----------*/

* {
	margin: 0;
	padding: 0;
}



#wrapper {
    width: 540px;
    margin: 16px auto;
	font-color: #5D2A29;
	
}

#intro {
    padding-bottom: 10px;
}

#slider {
    width: 540px;
    margin: 0 auto;
    position: relative;
	border: 10px solid #D2CAAC;
	background-color: #FFF;
}

.scroll {
	overflow: hidden;
	width: 540px;
    margin: 0 auto;
    position: relative;
}

.scrollContainer {
	position: relative;
	background-color: #FFF;
}

.scrollContainer div.panel {
    padding-left: 10px;
    width: 274px;
	background-color: #FFF;
	
}

#left-shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 12px;
	bottom: 0;
	background: url(../images/leftshadow.png) repeat-y;
}

#right-shadow {
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	bottom: 0;
	background: url(../images/rightshadow.png) repeat-y;
}

.inside {
	padding: 10px;
	background-color: #FFF;
	border: 0px solid #999;
}

.inside img {
	display: block;
	border: 0px solid #666;
	margin: 0 0 10px 0;
	width: 250px;
}

.inside h2 {
	font-weight: normal;
	
	font-size: 16px;
	margin: 0 0 8px 0;
}

.inside p {
	font-size: 11px;
	
}

a {
	color: #999;
	text-decoration: none;
	border-bottom: 1px dotted #ccc;
}

a:hover {
	border-bottom: 1px solid #999;
}

.scrollButtons {
    position: absolute;
    top: 127px;
    cursor: pointer;
}

.scrollButtons.left {
    left: -45px;
}

.scrollButtons.right {
    right: -45px;
}

.hide {
    display: none;
}


/*CSS for 2 demos on the page*/
#orbs li{
width: 65px; /*width of image container. Should be wider than contained images (before bubbling) */
height:60px; /*height of image container. Should be taller than contained images (before bubbling) */
}

#orbs li img{
width: 33px; /*width of each image before bubbling*/
height: 36px; /*height of each image*/
}

#squares li{
width: 45px; /*width of image container. Must be wider than contained images (before bubbling) */
height:40px; /*height of image container. Must be taller than contained images (before bubbling) */
}

#squares li img{
width: 31px; /*width of each image before bubbling*/
height: 31px; /*height of each image*/
}

</style>
