@charset "utf-8";
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: #222;
	background-color: #fff;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 100%;
}
.oneColFixCtrHdr #container {
	width: 620px;
	text-align: left;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-left: 10px;
}
.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;
}
.oneColFixCtrHdr #center {
	text-align:center
}
.oneColFixCtrHdr #header {
	background-color: #000;
	padding: 0px;
	height: 92px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #FFC500;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	text-align: justify;
	line-height: 1.5em;
	padding: 0px;
}
.oneColFixCtrHdr #footer {
	width: 605px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 5px;
	margin-bottom: 5px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #797979;
	border-right-color: #797979;
	border-bottom-color: #797979;
	border-left-color: #797979;
	margin-top: 10px;
	height: 50px;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	text-transform: uppercase;
	font-size: 10px;
	text-align: right;
}.oneColFixCtrHdr #footer h4 {
	padding: 0px;
	font-size: 11px;
	font-weight: normal;
	float: left;
	width: 300px;
	margin-top: 5px;
	text-align: left;
}
.oneColFixCtrHdr #mainContent h1 {
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 14px;
	letter-spacing: .2em;
}
.oneColFixCtrHdr #mainContent h2 {
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 12px;
	letter-spacing: .2em;
}
.oneColFixCtrHdr #mainContent p {
	padding: 0px;
	font-size: 12px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

.oneColFixCtrHdr #frame {
	background-color: #FFF;
}
.oneColFixCtrHdr #headiner {
	width: 630px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
}
.oneColFixCtrHdr #headinerimg {
	margin: 0px;
	padding: 0px;
	width: 164px;
	float: left;
}



/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	list-style-type: none;
	font-size: 10px;
	cursor: default;
	text-transform: uppercase;
	height: 23px;
	background-color: #000;
	font-weight: bold;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 175px;
	padding-top: 45px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	padding-top: 0;
	padding-bottom: 0;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	border-left-style: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	background-color: #000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	width: auto;
	margin-top: -5%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 95%;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	background-color: #000;
	width: auto;

}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	color: #FFC500;
	text-decoration: none;
	padding-top: 5px;
	padding-right: 16px;
	padding-bottom: 5px;
	padding-left: 16px;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #900;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #000;
	color: #900;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{

}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{

}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{

}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{

}



/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #000;
	}
}
.oneColFixCtrHdr #ourwork,
.oneColFixCtrHdr #ourwork2,
.oneColFixCtrHdr #ourwork3,
.oneColFixCtrHdr #ourwork4,
.oneColFixCtrHdr #ourwork5,
.oneColFixCtrHdr #ourwork6,
.oneColFixCtrHdr #ourwork7,
.oneColFixCtrHdr #ourwork8{
	border: 1px solid #CCC;
	height: 150px;
	width: 300px;
	background-repeat: no-repeat;
	background-position: center top;
	margin-bottom: 20px;
}
.oneColFixCtrHdr #ourwork h4,
.oneColFixCtrHdr #ourwork2 h4,
.oneColFixCtrHdr #ourwork3 h4,
.oneColFixCtrHdr #ourwork4 h4,
.oneColFixCtrHdr #ourwork5 h4,
.oneColFixCtrHdr #ourwork6 h4,
.oneColFixCtrHdr #ourwork7 h4,
.oneColFixCtrHdr #ourwork8 h4{
	font-size: 10px;
	margin: 0px;
	text-transform: uppercase;
	background-color: #CCC;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}
.oneColFixCtrHdr #ourwork{
	background-image: url(images/samscaff.png);
	float: left;
}
.oneColFixCtrHdr #ourwork:hover{
	background: url(images/samscaff.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #ourwork2{
	background-image: url(images/foodie.png);
	float: right;
}
.oneColFixCtrHdr #ourwork2:hover{
	background: url(images/foodie.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #ourwork3{
	background-image: url(images/ppsw.png);
	float: left;
}
.oneColFixCtrHdr #ourwork3:hover{
	background: url(images/ppsw.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #ourwork4{
	background-image: url(images/summit.png);
	float: right;
}
.oneColFixCtrHdr #ourwork4:hover{
	background: url(images/summit.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #ourwork5{
	background-image: url(images/rob&ceri.png);
	float: left;
}
.oneColFixCtrHdr #ourwork5:hover{
	background: url(images/rob&ceri.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #ourwork6{
	background-image: url(images/wch.png);
	float: right;
}
.oneColFixCtrHdr #ourwork6:hover{
	background: url(images/wch.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #ourwork7{
	background-image: url(images/summitlogo.png);
	float: left;
}
.oneColFixCtrHdr #ourwork7:hover{
	background: url(images/summitlogo.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #ourwork8{
	background-image: url(images/leggit.png);
	float: right;
}
.oneColFixCtrHdr #ourwork8:hover{
	background: url(images/leggit.png) 0 -150px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #mainContent a {
	color: #00F;
	text-decoration: none;
}
.oneColFixCtrHdr #mainContent p a:hover {
	text-decoration: underline;
}
.oneColFixCtrHdr #mainContent ul {
	font-size: 12px;
	margin: 0px;
}
.oneColFixCtrHdr #footer a {
	color: #222;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:hover {
	text-decoration: underline;
}
.oneColFixCtrHdr #branding img {
	float: left;
	height: 113px;
	width: 152px;
	text-align: center;
	margin-right: 26px;
	margin-bottom: 15px;
	margin-left: 26px;
	margin-top: 15px;
}
.oneColFixCtrHdr #branding {
	width: 620px;
}
.oneColFixCtrHdr #mainContent span {
	font-size: 10px;
	font-style: italic;
}
.oneColFixCtrHdr #contact {
	font-size: 12px;
	background-image: url(images/contactbg.png);
	background-repeat: no-repeat;
	height: 452px;
	padding-top: 60px;
	padding-right: 140px;
	padding-bottom: 20px;
	padding-left: 100px;
	margin-left: 60px;
}
.oneColFixCtrHdr #contact #name,
.oneColFixCtrHdr #contact #email,
.oneColFixCtrHdr #contact #phone{
	background: transparent;
	background-image: url(images/line.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: auto;
}
.oneColFixCtrHdr #contact textarea {
	background: transparent;
	background-image: url(images/line.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 15px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: auto;
}
.oneColFixCtrHdr #designwork,
.oneColFixCtrHdr #trainwork,
.oneColFixCtrHdr #hostingwork,
.oneColFixCtrHdr #brandingwork{
	background-repeat: no-repeat;
	background-position: left top;
	width: 300px;
	margin-bottom: 20px;
	border: 1px solid #CCC;
}
.oneColFixCtrHdr #designwork h4,
.oneColFixCtrHdr #trainwork h4,
.oneColFixCtrHdr #hostingwork h4,
.oneColFixCtrHdr #brandingwork h4{
	font-size: 10px;
	margin: 0px;
	text-transform: uppercase;
	background-color: #CCC;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}
.oneColFixCtrHdr #designwork{
	background-image: url(images/webdesign.png);
	float: left;
}
.oneColFixCtrHdr #designwork:hover{
	background: url(images/webdesign.png);
	background-position: right top;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #trainwork{
	background-image: url(images/training.png);
	float: right;
}
.oneColFixCtrHdr #trainwork:hover{
	background: url(images/training.png);
	background-position: right top;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #hostingwork{
	background-image: url(images/hosting.png);
	float: left;
}
.oneColFixCtrHdr #hostingwork:hover{
	background: url(images/hosting.png);
	background-position: right top;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #brandingwork{
	background-image: url(images/branding.png);
	float: right;
}
.oneColFixCtrHdr #brandingwork:hover{
	background: url(images/branding.png);
	background-position: right top;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #designwork p,
.oneColFixCtrHdr #hostingwork p,
.oneColFixCtrHdr #trainwork p,
.oneColFixCtrHdr #brandingwork p {
	margin-top: 125px;
	padding: 3px;
}
.oneColFixCtrHdr #ourworkcont a {
	color: #222;
}

