/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #066;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #000066;
	background-image:url(images/royal.png);
}




/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
	height: auto;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	float: none;
}
#outerWrapper #topNavigation {
	height: 58px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 954px;
	border-left-color: #C96;
	background-color: #000;
	padding: 0px;
	margin-left: 0px;
	border-left-width: thin;
	border-left-style: solid;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#header {
	margin: 0;
	padding: 0px;
	width:960px;
	background-image:url(images/MAheader2g.png);
	background-repeat: no-repeat;
	height: 152px;
}

#topbin {
	width:928px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: medium solid #C96;
	margin: 0px;
	background-color: #ececec;
	padding: 10px;
 }
 #video {
	width:auto;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #996633;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 10px;
	padding: 0px;
 }
 
  #email {
	width:250px;
	background-color:#FFFFFF;
	float:right;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #996633;
	text-align: center;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	padding: 0px;
 }
#middlebin {
	width:929px;
	float:left;
	position: static;
	left: auto;
	height: 200px;
	border: medium solid #c96;
	background-repeat: repeat;
	padding: 8px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 1px;
	background-image: url(images/tile.png);
	background-position: left top;
 }
 #certificatebin {
	width:890px;
	float:left;
	position: static;
	left: auto;
	height: 100px;
	border: thin solid #666666;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 10px;
	background-repeat: repeat;
	background-image: url(images/transparent-bkgrnd.png);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
 }
 #leftbin {
	width:450px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	padding: 5px;
	height: 100px;
	border: thin solid #999999;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 20px;
	background-repeat: repeat;
	text-align: center;
 }
 #rightbin {
	width:390px;
	float:left;
	position: static;
	left: auto;
	padding: 5px;
	height: 100px;
	border: thin solid #999999;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 15px;
	background-repeat: repeat;
	text-align: center;
	background-color: #FFFFFF;
 }
 #facebook  {
	width:600px;
	float:left;
	position: static;
	left: auto;
	padding: 5px;
	height: 100px;
	border: thin none #C96;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 125px;
	background-repeat: repeat;
	text-align: center;
 }
 #twitter {
	width:250px;
	float:left;
	position: static;
	left: auto;
	padding: 5px;
	height: 50px;
	border: thin none #999999;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 50px;
	background-repeat: repeat;
	text-align: center;
 }
 #buttonbin {
	width:370px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	padding: 5px;
	height: 130px;
	border: thin solid #996600;
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 40px;
	background-repeat: repeat;
	text-align: center;
 }
 #certbin {
	width:475px;
	float:right;
	position: static;
	left: auto;
	padding: 5px;
	height: 165px;
	border: thin none #999999;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 5px;
	background-repeat: repeat;
 }
 #footer {
	width:928px;
	float:left;
	position: static;
	left: auto;
	height: 125px;
	border: medium solid #C96;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 9px;
	padding-bottom: 0px;
	padding-left: 10px;
	background-image: url(images/blktilie.jpg);
	background-repeat: repeat;
	background-position: left top;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF;
 }
 
  #blkfooter {
	width:928px;
	float:left;
	position: static;
	left: auto;
	height: 25px;
	border: medium solid #C96;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 9px;
	padding-bottom: 0px;
	padding-left: 10px;
	background-image: url(images/blktilie.jpg);
 }
   /*why fred*/
 #largebin {
	width:915px;
	float:left;
	position: static;
	left: auto;
	height: 425px;
	border: thin solid #999999;
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 8px;
	padding-left: 0px;
	background-color: #ececec;
	margin: 0px;
 }
 #leftbin {
	width:320px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	padding: 0px;
	height: 380px;
	border: thin solid #963;
	background-repeat: repeat;
	text-align: center;
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 10px;
 }
   /*benefits*/
 #benefits {
	width:865px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	padding-top: 8px;
	padding-right: 45px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
	margin: 0px;
 }
 #leftbene {
	width:290px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #963;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
 
 /*contact*/
 #contact {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: 1300px;
	border: thin solid #999999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 8px;
	padding-right: 40px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #FFFFFF;
 }
 #rightcontact {
	width:525px;
	background-color:#FFFFFF;
	float:right;
	position: static;
	left: auto;
	height: 370px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: left;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding: 20px;
 }
 /*faqs*/
 #faqs {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	padding-top: 8px;
	padding-right: 35px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
	margin: 0px;
 }
 /*trophy*/
 #lefttrophy {
	width:250px;
	background-color:#FFFFFF;
	float:right;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #963;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 10px;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
 
  /*testimonials*/
 #testimontials {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
 }
 #staffpage {
	width:900px;
	background-color:#ececec;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding: 0px;
 }
 #lefttest2 {
	width:350px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: 325px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding: 0px;
 }
  #righttest {
	width:350px;
	background-color:#FFFFFF;
	float:right;
	position: static;
	left: auto;
	height: 335px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding: 0px;
 }
 
   /*events*/
 #events{
	width:868px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 8px;
	padding-right: 43px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #FFFFFF;
 }
 #leftevents {
	width:240px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: 410px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
  #rightevents {
	width:240px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: 410px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
  /*offers*/
 #offers {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 8px;
	padding-right: 40px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #FFFFFF;
 }
 #leftoffer {
	width:750px;
	float:left;
	position: static;
	left: auto;
	height: 400px;
	border: thin dotted #963;
	text-align: center;
	margin-top: 15px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 40px;
	padding: 12px;
	clear: none;
	background-color: #FFF;
 }
  #rightoffer {
	width:850px;
	background-color:#ececec;
	float:none;
	position: static;
	left: auto;
	height: 285px;
	border: thin none #000000;
	text-align: center;
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 8px;
	padding: 5px;
 }
 
  /*calendars*/
   #calendarbin {
	width:934px;
	float:left;
	position: static;
	left: auto;
	height: 650px;
	border: thin solid #999999;
	background-color: #ececec;
	padding: 8px;
	margin: 0px;
 }
 #studio {
	width:650px;
	background-color:#FFFFFF;
	float:right;
	position: static;
	left: auto;
	padding: 0px;
	height: auto;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin: 0px;
 }
 
 #calendar {
	width:260px;
	background-color:#FFF;
	float:left;
	position: static;
	left: auto;
	height: 510px;
	border: 1px dotted #999999;
	text-align: center;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 18px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
 }
 #smcalendar {
	width:650px;
	background-color:#FFF;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: 1px dotted #999999;
	text-align: center;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 18px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
 } #smcalendar2 {
	width:650px;
	background-color:#FFF;
	float:right;
	position: static;
	left: auto;
	height: auto;
	border: 1px dotted #999999;
	text-align: center;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 18px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
 }
  /*newsworthy*/
 #newsworthy {
	width:870px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
 }
 #leftnews {
	width:200px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin dotted #996633;
	background-repeat: repeat;
	text-align: center;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
 #rightnews  {
	width:600px;
	background-color:#ececec;
	float:right;
	position: static;
	left: auto;
	height: auto;
	border: 1px none #999999;
	background-repeat: repeat;
	text-align: left;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	padding: 20px;
 }
 
 
 /*youth*/
 #youth {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 8px;
	padding-right: 40px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #FFFFFF;
 }
 #leftyouth {
	width:560px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: 910px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
 #rightyouth {
	width:420px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: 1px none #999999;
	background-repeat: repeat;
	text-align: left;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
 
  #leftyouth {
	width:420px;
	float:right;
	position: static;
	left: auto;
	height: auto;
	border: medium dotted #C93;
	background-repeat: repeat;
	text-align: center;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 8px;
	clear: none;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-image: url(images/backgroundgrey2.jpg);
 }
 
  /*contact*/
 #contact {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 8px;
	padding-right: 35px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
 }
 #leftcontact {
	width:860px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: 1px none #999999;
	text-align: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 5px;
 }
 #rightcontact {
	width:650px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: medium dotted #C93;
	text-align: left;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 20px;
	margin-left: 70px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 50px;
	background-image: url(images/backgroundgrey2.jpg);
 }
 
  #mapcontact {
	width:430px;
	background-color:#FFFFFF;
	float:right;
	position: static;
	left: auto;
	height: auto;
	border: 1px none #999999;
	text-align: left;
	background-image: url(%20);
	padding: 10px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 5px;
 }
 /*staff*/
 #staff{
	width:866px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	padding-top: 20px;
	padding-right: 39px;
	padding-bottom: 8px;
	padding-left: 45px;
	background-color: #ececec;
	margin: 0px;
 }
 
 
 #staffbox {
	width:100px;
	background-color:#FFFFFF;
	float:right;
	position: static;
	left: auto;
	height: auto;
	border: 1px none #999999;
	background-repeat: no-repeat;
	text-align: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 50px;
	background-position: right bottom;
 }
 #stafftop {
	background-color:#FFFFFF;
	border: 1px none #333;
	background-repeat: no-repeat;
	text-align: left;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	background-position: right bottom;
	vertical-align: top;
	height: auto;
	padding: 5px;
	width: 900px;	
 }
 #staffright {
	border: thin dotted #963;
	background-repeat: repeat;
	text-align: left;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 0px;
	background-position: left top;
	vertical-align: text-top;
	height: auto;
	width: 415px;
	float: left;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	background-image: url(images/backgroundgrey2.jpg);
 }
 
  #staffbottom {
	float:left;
	left: auto;
	border: 1px dotted #003366;
	text-align: left;
	padding: 20px;
	margin-top: 20px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	height: 500px;
	width: 865px;
	vertical-align: top;
 }
 
 #titles {
	width:948px;
	float:left;
	position: static;
	left: auto;
	padding: 5px;
	height: auto;
	border: thin solid #999999;
	margin-top: 5px;
	margin-right: 2px;
	margin-bottom: 5px;
	margin-left: 0px;
	background-repeat: repeat;
	background-image: url(images/transparent-background.png);
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	vertical-align: top;
	text-align: center;
	line-height: 20px;
 }
 
  /*careers*/
 #careers {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
	margin: 0px;
 }
 #leftcareers {
	width:850px;
	background-color:#ececec;
	float:none;
	position: static;
	left: auto;
	height: 480px;
	border: 1px none #999999;
	background-repeat: no-repeat;
	text-align: left;
	background-position: right bottom;
	margin: 5px;
	padding: 20px;
 }
 #rightcareers {
	width:800px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: 350px;
	border: 1px none #999999;
	background-repeat: no-repeat;
	text-align: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	background-position: right bottom;
	background-image: url(fred/fred22.jpg);
	vertical-align: top;
 }
 
  #formcareers {
	width:630px;
	float:none;
	position: static;
	left: auto;
	height: auto;
	border: thin dotted #963;
	text-align: left;
	padding: 20px;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 85px;
	background-image: url(images/backgroundgrey2.jpg);
	background-repeat: repeat;
	background-color: #FFF;
 }
 
 /*married*/
 #married {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
	margin: 0px;
 }
 
  /*links*/
 #links {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 8px;
	padding-right: 40px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #FFFFFF;
 }
 #leftlinks {
	width:277px;
	float:left;
	position: static;
	left: auto;
	height: 375px;
	border: thin solid #963;
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
	background-image: url(fred/FREDLINKS%20copy.gif);
	background-repeat: no-repeat;
	background-position: left top;
 }
 
 
  /*store*/
 #store {
	width:775px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 8px;
 }
 #storeleft {
	width:290px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: 450px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
 
 
  /*specials*/
 #specialss {
	width:875px;
	float:left;
	position: static;
	left: auto;
	height: 750px;
	border: thin solid #999999;
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 8px;
	padding-left: 40px;
	background-color: #ececec;
	margin: 0px;
 }
 
   /*wedding*/
 #wedding {
	width:915px;
	float:left;
	position: static;
	left: auto;
	height: auto;
	border: thin solid #999999;
	background-color: #FFFFFF;
	margin: 0px;
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 40px;
 }
 #weddingleft {
	width:290px;
	background-color:#FFFFFF;
	float:left;
	position: static;
	left: auto;
	height: 450px;
	border: thin none #000000;
	background-repeat: repeat;
	text-align: center;
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
 }
 
  /*buttons*/
  
 /* create an empty frame so that visitors expect something to go there */
	p {margin-bottom:26px} /*add bottom margin to p elements so that they are (roughly) aligned with the big image frame */
  /*fonts*/

.redheading {
	font-size: 14px;
	color:#990000;
	font-style:normal;
	font-family: "Trebuchet MS";
	font-weight: bold;
}

.mainfont {
	font-size: 14px;
	color:#000000;
	line-height: normal;
	font-style:normal;
	font-family: "Trebuchet MS";
	font-weight: normal;
}


.style22 {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 16px;
	font-weight: bold;
	color:#CC9933;
	font-variant: normal;
	text-transform: none;
}
.know {
	font-size: 14px;
	font-family: "Trebuchet MS";
	font-style: normal;
	line-height: 16px;
	font-weight: bold;
	color:#666666;
	font-variant: normal;
	text-transform: uppercase;
	margin-left: 100px;
}
.small {
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 10px;
	font-weight: 200;
	color:#CCCCCC;
	font-variant: normal;
	text-transform: none;
}

.white {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 16px;
	font-weight: 200;
	color:#CCCCCC;
	font-variant: normal;
	text-transform: none;
}

.black {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 24px;
	font-weight: 200;
	color:#CCCCCC;
	font-variant: normal;
	text-transform: none;
}
.blackbold{
	font-size: 16px;
	font-family: "Trebuchet MS";
	font-style:normal;
	line-height: 20px;
	font-weight: bold;
	color:#000000;
	font-variant: normal;
	text-transform: none;
}
.heading {
	font-size: large;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 28px;
	font-weight: bold;
	color:#669933;
	font-variant:normal;
	text-transform: none;
}



.getting {
	font-size: 16px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height: 20px;
	font-weight: bold;
	color:#CC0000;
	font-variant:normal;
	text-transform: none;
}
.navheading {
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#666666;
	font-variant:normal;
	text-transform: none;
	position: static;
	height: 16px;
	width: auto;
}
.pageheading {
	font-size: 16px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-style:normal;
	line-height: 24px;
	font-weight: 500;
	color:#CCCCCC;
	font-variant:normal;
	text-transform: none;
}

.intro {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	line-height: normal;
	text-align: left;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-weight: normal;
}
.style1 {
	font-family: "Trebuchet MS";
	font-size: 9px;
	color: #333333;
}
.style7 {font-family: Georgia, "Times New Roman", Times, serif;
	color: #FF0099;
	font-weight: bold;
	font-size: 14px;
}
.stylelarge {
	font-size: 14px;
	color:#990000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: 200;
}

.calendarfont {
	font-size: 12px;
	color:#000000;
	font-family: "Trebuchet MS";
	font-weight: 200;
}
.redcalendarfont {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: #990000;
}
.first {
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	vertical-align: baseline;
}
 .coaches  {
	font-family: "Trebuchet MS";
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	color: #996633;
}
.orange {
	font-family: "Trebuchet MS";
	font-size: 18px;
	font-weight: bold;
	color: #ff6633;
}
