@charset "UTF-8";
/* CSS Document */
@font-face {
    font-family: 'HenryMorganHandRegular';
    src: url('/themes/type/HenryMorganHand-fontfacekit/HenryMorganHand-webfont.eot');
    src: url('/themes/type/HenryMorganHand-fontfacekit/HenryMorganHand-webfont.eot?#iefix') format('eot'),
         url('/themes/type/HenryMorganHand-fontfacekit/HenryMorganHand-webfont.woff') format('woff'),
         url('/themes/type/HenryMorganHand-fontfacekit/HenryMorganHand-webfont.ttf') format('truetype'),
         url('/themes/type/HenryMorganHand-fontfacekit/HenryMorganHand-webfont.svg#webfonthAKxBK9o') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'CarbonTypeRegular';
    src: url('/themes/type/CarbonType-fontfacekit/carbontype-webfont.eot');
    src: url('/themes/type/CarbonType-fontfacekit/carbontype-webfont.eot?#iefix') format('embedded-opentype'),
         url('/themes/type/CarbonType-fontfacekit/carbontype-webfont.woff') format('woff'),
         url('/themes/type/CarbonType-fontfacekit/carbontype-webfont.ttf') format('truetype'),
         url('/themes/type/CarbonType-fontfacekit/carbontype-webfont.svg#CarbonTypeRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}
body {
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #FFF;
	background-image: url(/images/body2011/bg.jpg);
	background-repeat: repeat-x;
	font-size: 12px;
	background-attachment: scroll;
	background-position: center top;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.4;
}

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;
}
.imageshadow {
	-moz-box-shadow: 2px 2px 10px #000;
	-webkit-box-shadow: 2px 2px 10px #000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Glow(color=#333333,strength=2) progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135,strength=6)";
	filter: progid:DXImageTransform.Microsoft.Glow(color=#333333,strength=2) progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135,strength=6);
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #036;
	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: #6E6C64;
	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;
}
.wrap {
	width: 100%;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center top;
}
/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	margin: 0px auto; /* the auto value on the sides, coupled with the width, centers the layout */
	background-attachment: scroll;
	background-image: url(/images/body2011/content_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	-moz-box-shadow: 2px 2px 10px #555;
	-webkit-box-shadow: 2px 2px 10px #555;
	-ms-filter: "progid:DXImageTransform.Microsoft.Glow(color=#333333,strength=2) progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135,strength=3)";
filter: progid:DXImageTransform.Microsoft.Glow(color=#333333,strength=2) progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135,strength=3);
	border-bottom: 2px solid #000;
	background-color: #FFF;
}

/* ~~ 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 {
	height: 150px;
}

.title {
	font-family: HenryMorganHandRegular, "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #630;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
	font-size: 42px;
	line-height: 1.4;
	padding: 10px 0px 0px 20px;
	font-weight: bold;
}
.sidebar1 {
	float: left;
	width: 200px;
	padding: 0px;
}
.LeftDate {
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	font-size: 13px;
	font-variant: small-caps;
	color: #333;
	text-align: center;
	padding-top: 10px;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}
.sidebar1content {
	float: left;
	width: 180px;
	padding: 0px 10px 10px;
}
.content {
	width: 740px;
	float: right;
	padding: 10px 5px 5px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.LeftNav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	padding: 0px;
	width: 190px;
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	font-size: 16px;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}
ul.LeftNav li {
	border-bottom: 1px dashed #999; /* this creates the button separation */
}
ul.LeftNav a, ul.LeftNav 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: 170px;  /*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;
	color: #444;
}
ul.LeftNav a:hover, ul.LeftNav a:active, ul.LeftNav a:focus { /* this changes the background and text color for both mouse and keyboard LeftNavigators */
	color: #000;
	background-image: url(/images/button_on.png);
	background-attachment: scroll;
	background-repeat: repeat-y;
	background-position: right top;
}
ul.LeftNav, ol.LeftNav, dl.LeftNav {
	padding: 0;
	margin: 0;
}

/* ~~ The footer ~~ */
.footer {
	list-style: none;
	padding: 10px;
	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: CarbonTypeRegular, "Courier New", Courier, monospace;
	color: #000;
	font-size: 12px;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
	background-attachment: scroll;
	background-repeat: repeat-x;
	background-position: left top;
}
ul.footerBullet {
	text-decoration: none;
	list-style: none;
	font-size: 12px;
	float:left;
	display: block;
	font-weight: normal;
}
ul.clearBullet {
	text-decoration: none;
	list-style: none;
}

/* ~~ 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;
}
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
a:hover {
	color: #900;
}
a:active {
	color: #600;
}
h1,h2,h3,h4,h5,h6 {
	color: #630;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
	padding-left: 20px;
}
h1 {
	font-size: 42px;
	line-height: 1.5;
	font-family: HenryMorganHandRegular, "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h2 {
	font-size: 36px;
	line-height: 1.4;
	font-family: HenryMorganHandRegular, "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h3 {
	font-size: 18px;
	line-height: 1.3;
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	color: #000;
}
h4 {
	font-size: 16px;
	line-height: 1.2;
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	color: #000;
}
h5 {
	font-size: 14px;
	line-height: 1.2;
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	color: #000;
}
h6 {
	font-size: 12px;
	line-height: 1.1;
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	color: #000;
}
.studio11 {
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	color: #333333;
	padding: 10px;
	letter-spacing: 2px;
	text-align: right;
	width: 95%;
	text-decoration: none;
	margin-right: auto;
	margin-left: auto;
}
.studio11 a:link {
	color:#000000;
	text-decoration: none;
}
.studio11 a:visited {
	color:#000000;
	text-decoration: none;
}
.studio11 a:active {
	color:#000000;
	text-decoration: none;
}
.studio11 a:hover {
	color:#990000;
	text-decoration: none;
}
.custom_images a
{
	width: 32px;
	height: 32px;
	margin: 10px 0px 0px;
	padding: 10px 0px 0px;
	text-align: center;
	text-decoration: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-variant: small-caps;
	color: #333;
}

.custom_images a:hover img
{
	filter: alpha(opacity=100); /* internet explorer */
	-khtml-opacity: 1;      /* khtml, old safari */
	-moz-opacity: 1;       /* mozilla, netscape */
	opacity: 1;           /* fx, safari, opera */
	color: #000;
}

.custom_images a img
{
	filter: alpha(opacity=100); /* internet explorer */
	-khtml-opacity: 1;      /* khtml, old safari */
	-moz-opacity: 1;       /* mozilla, netscape */
	opacity: 1;           /* fx, safari, opera */
}
.custom_images img
{
	filter: alpha(opacity=60); /* internet explorer */
	-khtml-opacity: 0.6;      /* khtml, old safari */
	-moz-opacity: 0.6;       /* mozilla, netscape */
	opacity: 0.6;           /* fx, safari, opera */
}
/* ADMIN */
.adminHomeBarTitle {
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	font-size: 13px;
	font-variant: small-caps;
	color: #000;
	text-align: left;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}
.smallTitle {
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	font-size: 18px;
	font-variant: small-caps;
	color: #000;
	text-align: left;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}
.smallTitle2 {
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	font-size: 12px;
	color: #000;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}

.box_1 {
	float:left;
	display: block;
	font-family: CarbonTypeRegular, "Courier New", Courier, monospace;
	font-size: 12px;
	color: #000;
	text-decoration: none;
	width: 144px;
	text-align: center;
	padding-right: 2px;
	padding-left: 2px;
}
.box_2 {
	float:left;
	display: block;
	font-size: 12px;
	color: #000;
	text-decoration: none;
	width: 360px;
	text-align: left;
	padding-right: 5px;
	padding-left: 5px;
}
.box_3 {
	float:left;
	display: block;
	font-size: 12px;
	color: #000;
	text-decoration: none;
	width: 230px;
	text-align: left;
	padding-right: 8px;
	padding-left: 8px;
}
ul.boxlist1 li { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	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: 330px;  /*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;
	color: #000;
	list-style: none; /* this removes the list marker */
	padding: 10px;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
	background-image: url(/images/back_black10.png);
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 12px;
	margin-left: -50px;
}
