body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #3E3520;
	background-color: #484128;
	background-image: url(/images/tnlines.png);
	font-family: "myriad-pro-1", "myriad-pro-2", "Lucida Grande", Sans-Serif;
	font-size: 12px;
	line-height: 1.2;
}
.twoColHybRtHdr #container {
	width: 750px;
	text-align: left;
	background-repeat: repeat;
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	-moz-box-shadow: 1px 1px 10px #000;
	-webkit-box-shadow: 1px 1px 10px #000;
	box-shadow: 1px 1px 10px #000;
	background-image: url(/images/coffeecup-tile.png);
} 
.twoColHybRtHdr #header {
	background-image: url(/images/plaid4lt.jpg);
	background-repeat: repeat-x;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #7E6D41;
} 
.twoColHybRtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybRtHdr #sidebar1 p" rule.
*/
.twoColHybRtHdr #sidebar1 {
	width: 200px;
	padding-right: 15;
	float: right;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #7E6D41;
	margin: 0px;
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #7E6D41;
	background-position: 0px;
	padding-top: 0px;
}
#mainContent p.sub {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.25em;
	font-style: italic;
	color: #B4592D;
	line-height: 1.4em;
	margin-top: -30px;
}
.twoColHybRtHdr #sidebar1 h3, .twoColHybRtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybRtHdr #mainContent {
	margin-top: 0px;
	margin-right: 300px;
	margin-bottom: 0px;
	background-repeat: repeat;
	padding-top: 10px;
	padding-right: 5%;
	padding-bottom: 15px;
	padding-left: 5%;
} 
.twoColHybRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.twoColHybRtHdr #top-footer {
	background-repeat: no-repeat;
	background-image: url(/images/dining.jpg);
	display: block;

} 
.twoColHybRtHdr #footer {
	padding: 0 10px;
	background-color: #817043;
	background-repeat: repeat-x;
	background-image: url(/images/bgplaid34.jpg);
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: 817043;
} 

/* Miscellaneous classes for reuse */
.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 */
	float: left;
	margin-right: 8px;
}
h1, h2, h3, h4{
	font-family: 'Rokkitt', san-serif;
	font-weight: 300;
}
#mainContent h1 {
	font-size: 2.5em;
	font-weight: normal;
	color: #675B36;
	text-align: center;
}
.gldline {
	background-color: #977224;
	display: block;
	width: 400px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#navbar ul {
	margin: 0;
	padding: 2px;
	list-style-type: none;
	text-align: center;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #411A12;
	font-size: 12px;
	opacity:0.6; /* transparency */
	filter:alpha(opacity=60); /* IE transparency */
	background-color: #F8F0C9;
        } 
 
#navbar ul li {  
        display: inline; 
        } 
 
#navbar ul li a {
	text-decoration: none;
	color: #836852;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 0.2px;
	padding-top: 0.2em;
        } 
 
#navbar ul li a:hover {
	background-color: #FFFFFF;
	opacity:0.5; /* transparency */
	filter:alpha(opacity=50); /* IE transparency */
	color: #000000;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #965459;
        }
		
.shadow {
  -moz-box-shadow:    3px 3px 5px 6px #ccc;
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;
  box-shadow:         3px 3px 5px 6px #ccc;
}

.shadow1 {
	margin: 40px;
	background-color: rgb(68,68,68); /* Needed for IEs */

	-moz-box-shadow: 5px 5px 5px rgba(68,68,68,0.6);
	-webkit-box-shadow: 5px 5px 5px rgba(68,68,68,0.6);
	box-shadow: 5px 5px 5px rgba(68,68,68,0.6);

	filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
	-ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";
	zoom: 1;
}
.shadow1 .content {
	position: relative; /* This protects the inner element from being blurred */
	padding: 100px;
	background-color: #DDD;
}

.one-edge-shadow {
	-webkit-box-shadow: 0 8px 6px -6px black;
	   -moz-box-shadow: 0 8px 6px -6px black;
	        box-shadow: 0 8px 6px -6px black;
}

.shadow-inner {
   -moz-box-shadow:    inset 0 0 10px #000000;
   -webkit-box-shadow: inset 0 0 10px #000000;
   box-shadow:         inset 0 0 10px #000000;
} 
.shadow-all {
-moz-box-shadow: 1px 1px 10px #000;
-webkit-box-shadow: 1px 1px 10px #000;
box-shadow: 1px 1px 10px #000;
}

#logo {
	position:absolute;
	left:8%;
	top:2px;
	width:323px;
	height:178px;
	z-index:100;
	-moz-transition: all 0.2s ease 0s;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(/top-logo-nkk-shad.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
}
#fb {
	position:absolute;
	left:65%;
	top:50px;
	width:200px;
	height:39px;
	z-index:100;
	-moz-transition: all 0.2s ease 0s;
	background-attachment: scroll;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 0% 0%;
}
.sub a    {
	font-size: 14px;
	color: #C2965A;
	text-decoration: none;
	padding-top: 15px;
	line-height: 1.75em;
	font-style: normal;
	font-weight: lighter;
}

.blueline {
	height:1px;
	background-color: #5F98B3;
	width: 675px;
}
.grnline {
	height:1px;
	background-color: #8A9C41;
	width: 675px;
}
.brwnline   {
	height:2px;
	background-color: #7E6D41;
	width: 350px;
	margin-bottom: 10px;
	margin-top: 10px;
	background-position: center;
	text-align: center;
}
#mainContent img {
border: none;
}

#sidebar1 img {
border: none;
}

#teacups {
	position:absolute;
	left:65%;
	top:25px;
	width:111px;
	height:94px;
	z-index:50;
}
.style1 {font-size: 10px}
/* specials */
/* boxed lists */
ul.boxed-list {
	line-height: 1em;
	list-style: none;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CFC4A4;
	padding: 0;
	margin-right: 10px;
	margin-left: 10px;
}
ul.boxed-list li {
	padding-top: 1em;
	padding-left: 1.12em;
	padding-right: 0;
	padding-bottom: 1.12em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D1C5A6;
}
ul.boxed-list li:hover,
ul.boxed-list li.active {
	background-color: #F8F0CB;
	opacity:0.5; /* transparency */
	filter:alpha(opacity=50); /* IE transparency */
	text-decoration: none;
}
ul.boxed-list   a   {
	text-decoration: none;
	color: #7E6D41;
	font-size: 12px;
	padding-left: 20%;
}

ul.boxed-list li div.small-date {
  color: #777;
  font-size: 0.8333em; /*10px*/
  line-height: 1.8em;
}
/* specials for project list */
ul.boxed-above { margin-bottom: 0; }
ul.boxed-below { display: none; border-top: none; }

/* categories special */
ul.categories {
  margin: 0;
  margin-bottom: 2em;
  padding: 0;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #E6E5E7;
}
ul.categories li {
  padding-top: 1em;
  line-height: 1em;
  list-style-type: none;
  border: none;
  border-top: 1px solid #E6E5E7;
  margin: 0;
}
ul.categories li.active,
ul.categories li:hover {
	background-color: #EAD0AD;
}
ul.categories li.last {
  padding-bottom: 1em;
  background-color: #fff;
}
ul.categories li a {
  margin-left: 50px;
}
/* second level */
ul.categories ul {
  padding: 0;
  border: none;
  background: white;
  margin: 0;
  margin-top: 1.12em;
}
ul.categories ul li {
  padding-left: 70px;
  padding-bottom: 1.12em;
}
ul.categories ul li a {
  margin: 0;
}
#teacups {
	position:absolute;
	left:63%;
	top:6px;
	width:111px;
	height:94px;
	z-index:1000;
}
.style1 {font-size: 10px}
.twoColHybRtHdr  #sidebarmenu1  {
	width: 200px;
	padding-right: 15;
	float: right;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #7E6D41;
	margin: 0px;
	padding-top: 50px;
}
#mainContent h2 {
	color: #B7920D;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #B7920D;
	width: 410px;
	text-align: center;
}
#mainContent p {
}

.poem {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.65em;
	color: #AD7B04;
}

.fntsml {
	font-size: 11px
}

#sidebarmenu1 .box a {
border: none;
}

.twoColHybRtHdr  #footer a {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #3E3520;
	text-decoration: none;
}
.twoColHybRtHdr #sidebarmain1 {
	width: 285px;
	padding-right: 10;
	float: right;
	background-position: 0px;
	padding-top: 5px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}
.fb-text {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 10px;
	line-height: 16px;
	color: #006599;
	text-align: center;
	text-decoration: none;
}

#mainContent a {
	font-size: 12px;
	color: #D7773B;
	text-decoration: none;.orange {
	font-size: .95em;
	color: #ECA03B;
}

.orange {
	font-size: 1.15em;
	line-height: 1.25em;
	color: #CE671C;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#specials {
	width: 60%;
	padding: 5px;
	text-align: left;
}
#mainContent #highLight h3 {
	color: #5F1700;
	font-size: 24px;
}
