/* Home Page */
<style type="text/css">
<!--
td,th {
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        font-size: 12px;
        color: fdfdf7;
}

body {
        background-color: #2f2f2f;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
		font-size: 12px;
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
}

a:link {
		text-decoration: none;
		color: #FDFDF7;
}

a:visited {
    	text-decoration: none;
		color: #ebe8d4;
}

a:hover {
	 	text-decoration: underline;
		 color: #B89f40;
}

#header  {
	background: url('buttons/skolaiimages-3.jpg') no-repeat center ;
	height: 131px;
	border-top:2px solid #333;
	border-bottom: 2px solid #333;
	
	font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
	font-size: 16px;
	font-style: italic;
	color: #FDFDF7;
	padding-top: 105px;
	padding-right: 400px;
	align: left;
}

#headerimg  {
	padding: 0;
	margin: 0; 
	list-style: none;
	width: 100%; 
	}

#menuwrapper {
	border-top: 1px solid #000;
	border-bottom: 1px solid #333;
	background-color: #909090;
	background-image: url(images/p7exp_mbar.jpg);
	background-repeat: repeat-x;

}

.phone {
	
	padding-top: 255px;
	padding-right: 300px;
	font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
	font-size: 16px;
	font-style: italic;
	color: #FDFDF7;
}

.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}

#navbar  {
		background: #2f2f2f url('buttons/nav.gif') no-repeat top center ;
}

#navbarimg 	{ 
	padding: 0;
	margin: 0; 
	list-style: none;
	width: 100%; 
	}
	
	/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/

#navbar, #navbar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#navbar a {
	display: block;
	text-decoration: none;
	padding: 15px 14px 15px 14px;
	font-size: 0.9em;
	color: #FDFDF7;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#navbar a.trigger {
	padding: 5px 16px 5px 10px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/	
#navbar li {
	float: left;
	width: 9em;
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#navbar li ul, #navbar ul li  {
	font-size: 1.0em;
	width: 12em;
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#navbar ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 0px 3px 4px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#navbar li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#navbar li:hover a, #navbar a:focus,
#navbar a:active, #navbar li.p7hvr a {
	color: #b89f40;
	text-decoration: underline;
	background-color: transparent;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#navbar li:hover ul, #navbar li.p7hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#navbar li:hover ul a, #navbar li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
	border-bottom: 1px solid #000000;
	text-decoration: none;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#navbar ul a:hover {
	background-color: #000000!important;
	color: #FFFFFF!important;
}

/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#navbar li {width: auto;}


a:active {
	 	text-decoration: none;
}

a.Title:link {
		color: #b89f40;
}

a.Title:visited {
		text-decoration: none;
		color: #b89f40;
}
		
a.Title:hover {
	text-decoration: underline;
	color: #AA0604;
}

a.Title:active {
	text-decoration: none;
}

a.Contact:link {
		color: #b89f40;
}

a.Contact:hover {
		text-decoration: underline;
		color:@AA0604;
}

a.Contact:visited {
		text-decoration: none;
		color: #b89f40;
}

a.Contact:active {
		text-decoration: none;
}

#content {
		width: 100%;
/*		border: 1px solid red; */

}

#main-content {
/*		align:center; */
		padding: 0px 10px;	
		text-align:center;
		width: 790px;
		float: right;

}

#sidebar {
	
		width:170px;
/*		float:left; */
		align:center;
		text-align:center;
		padding: 5px;
		background: #3b3b3b;
		border-right: 5px solid #222;
		border-bottom: 3px solid #222;
}

.Main {
        font-size: 12px;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        color: #fdfdf7;
}

.text {
		font-family: Georgia, "Times New Roman", Times, serif;
		font-size: 1.2em;
		color: #FDFDF7;
		margin-left: 75px;	
}


.home-text {
		font-family: Georgia, "Times New Roman", Times, serif;
		font-size: 1.2em;
		color: #FDFDF7;
		margin-left: 75px;	
		padding: 10px;
		text-align: left
}

.Form {
		font-size: 14px;
		color: #FDFDF7;
		font-weight: bold;
}

/* Begins Sidebar Box */

#author {

	-moz-border-radius: 10px;

        -khtml-border-radius: 10px;

        -webkit-border-radius: 10px;

        border-radius: 10px; 

	border: 1px solid #fdfdf7;
	
		margin-top: 10px;
		
		margin-bottom: 15px;

       margin-left: 3px;
      
       padding: 15px 10px;

       width: 140px;

       align: center;
	   
	   font-family: Georgia, "Times New Roman", Times, serif;
	   
	   font-size: 1.0em;
	   
	   color: #fdfdf7;

}

/* Ends Sidebar  Box */


/* rounded Corners Box */

dl { /* block position that can be changed at will */
	width: 150px; /* width of block according to your background image */
}

dl, dt, dd { /* suppression of all margins and paddings */
	margin: 0;
	padding: 0;
}

dl { /* by default background on the entire block */
	background: url(images/boxbot.gif) bottom left no-repeat;
	padding-bottom: 10px; /* so that text will not appear on the bottom rounded edge */
}

dt { /* bloc title definition */
	height: 10px;
	background: url(images/boxtop.gif) top left no-repeat;
}

dd {
	padding: 0 20px 0 10px; /* internal block spaces administration */
	background: #2f2f2f; /* internal background */
	border-top: 0px;
	border-right: 1px solid #ebe8d4;
	border-bottom: 0px;
	border-left: 1px solid #ebe8d4;
	font-size: 16px;
	color: #EbE8d4;
	font-family: Times New Roman, Times, serif; 
}

/* end of the rounder corners box */

#box {
		background-color: #2f2f2f;
		border-left: 1px #ebe8d4 solid;
		border-right: 1px solid #ebe8d4;
		width: 150px;
		padding-top: 0;
		padding-right: 5px;
		padding-bottom: 0;
		padding-left: 5px;
}


.subheader {
        font-size: 14px;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        color: #fdfdf7;
		padding-top: 10px;
		padding-bottom: 20px;
		margin: 5px 75px 5px 100px;
}

.Copyright {
        font-size: 9px;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        font-style: italic;
        color: #fdfdf7;
}

.Headlines {
		font-size: 20px; 
		color: #b89f40; 
		font-family: Times New Roman, Times, serif;
}

/* headers */

h1 {
		font-size: 20px;
		color: #b89f40;
		font-family: "Times New Roman", Times, serif;
		text-decoration: underline;	
}

h2{
	
        font-size: 14px;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        color: #fdfdf7;
		padding-top: 10px;
		padding-bottom: 20px;
		margin: 5px 75px 5px 10px;
}

h3 {
		font-size: 14px;
		color: #FDFDF7;
		font-weight: bold;
		padding: 0px 0px;
		margin: 0px;
}


.Notes {
		font-size: 16px;
		color: #EbE8d4;
		font-family: Times New Roman, Times, serif;
}

.Galleries {
		font-size: 12px; 
		color: #b89f40; 
		font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
}

.ImagePages {
		font-size: 14px;
		font-family: Times New Roman, Times, serif;
		color: #ebe8d4;
}

.Underlines {
		color: #ebe8d4;
}

.Orders { 
		color: #CC0000;
		font-size: 14px;
}

.navigation {
		font-family: Times New Roman Times serif;
		font-size: large;
		color: #b89f40;
		font-style: normal;
		font-weight: normal;
		text-decoration: none;
		background-color: #2F2F2F;
}

.Bigger {
        font-size: 18px;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        color: #fdfdf7;
}

.recent {
	
	width: 400px;
	padding: 5px;
	
}

#innerbox {
	
	width: 600px;
	
}


#searchbox {
	
	float:right;
	
	width: 170px;
	
	padding: 5px;
	
	margin-top: 20px;
	margin-right: 0px;
	margin-left: 25px;
	
	background:: #333;
	
	
	/* -moz-border-radius: 10px;

        -khtml-border-radius: 10px;

        -webkit-border-radius: 10px;

        border-radius: 10px; 

	border: 1px solid #111; */
		
}


-->
</style>

