@charset "UTF-8";
/* CSS Document */

body  {
	font: .8em Arial, Helvetica, Verdana, sans-serif;
	background: #979797;
	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: #555555;
}

p {
	padding: 0 12px 10px 10px;
	line-height: 1.5em;
}

.firstletter {
float: left; 
font-size: 3em;
margin-top: 10px;
padding-right: 3px;
} 


/*
a:link, a:visited {
color: #f5911f;
font-weight: bold;
text-decoration: none;
}

a:hover, a:active {
color: #f5911f;
font-weight: bold;
text-decoration: underline;
}
*/
a:link, a:visited {
color: #2B65EC;
font-weight: bold;
text-decoration: none;
}

a:hover, a:active {
color: #2B65EC;
font-weight: bold;
text-decoration: underline;
}


hr {
color: #fff; 
background-color: #fff; 
border: 1px dotted #f59121; 
border-style: none none dotted; 
}

.hrgraydotted {
color: #fff; 
background-color: #fff; 
border: 1px dotted #646565; 
border-style: none none dotted; 
}


.twoColLiqRtHdr #container { 
	width: 912px;  /* this will create a container 80% of the browser width */
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: ;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqRtHdr #header { 
	background: #eeeeee;
	align: left;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0;
	border-collapse: collapse;
} 
.twoColLiqRtHdr #header #logo {
	background-image:url(images/Website-Logo.png)
}


h1, h2, h3, h4, h5, h6, h7 {
	margin: 5px 5px -10px 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: 5px 0 0px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 1.2em;
	font-weight: bold;
	color: #fc8700;
	border-bottom: 0px solid #f59121;
}


h10 {
	margin: 5px 5px 10px 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: 5px 0 0px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 1.2em;
	font-weight: bold;
	color: #646565;
	border-bottom: ;
}


.sectionHeaderOrange {
	display: block;
	padding: 10px 0 10px 0;
	font: 1.2em Arial, Helvetica, Verdana, sans-serif;
	font-weight: bold;
	color: #f59121;
}

.sectionheader {
	margin: 10px 0 0 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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font: 1.2em Arial, Helvetica, Verdana, sans-serif;
	font-style: bold;
	border-bottom: 1px solid #646565;
	display: inline;
	color: #f59121;
}

.boldorange {
	font: 1em Arial, Helvetica, Verdana, sans-serif;
	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 */
	font-weight: bold;
	color: #f59121;	
}


.boldgray {
	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 */
	font-weight: bold;
	color: #646565;
}

.boldgray a{
	font-weight: bold;
	color: #646565;
}


.twoColLiqRtHdr #header #quote {
	margin: 0em; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 1em;
	text-align: left center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: ;
	font-style: italic;
	width: 300px;
}
.twoColLiqRtHdr #header #imageright {
	margin: 0em; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 1em;
	text-align: right; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: ;
	width: 300px;
}

#headerBackground {
	width: 912px;
	height: 135px;
    background: url(images/AbstractHeader3.jpg)  left no-repeat;
	
}
	
/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. 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 ".twoColLiqRtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 215px; 
	height: 100%;
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 10px 15px 0px; /* top and bottom padding create visual space within this div  */
}

#sidebar p {
	margin: 0px 0px 0px -10px;
}


#sidebarHeader {
	font-size: 1.2em;
	font-weight: bold;
	color: #f59121;
	display: block;
	border-bottom: 1px solid #f59121;
	margin-bottom: 5px;
	margin-right: 10px;
	padding-top: 5px;
}

#sidebarMoreNewsLink  {
	margin-right: 0px;
	padding-bottom: 10px;
	text-align:right;
}

#sidebar a:link, #sidebar a:visited {
	display:;
	margin-right: 5px;
	text-decoration: none;
	margin-bottom: 2px;
}

#sidebar a:hover, #sidebar a:active {
	display:;
	margin-right: 5px;
	text-decoration: underline;
	margin-bottom: 2px;
}




#contactUs {
		background:url(images/ContactUsBox.jpg) no-repeat;
	width: 195px;
        height: ;
	text-align:left;
	line-height: 1.5em;
	padding-top: 60px;
	padding-left:10px;
	padding-bottom:30px;
		
}

#phoneNumber {
	font-size:1.5em;
		line-height: 1.5em;

}


#recentWork {
	border: 1px solid #b7b7b7;
	background-color:;
	width: 205px;
	text-align: center;
	
}

.recentWork a {
        border: 1px solid #b7b7b7;
	text-align: center;
}

#guarantee {
	width: 205px;
	text-align:center;
	margin-top: -20px;
}

.listHead {
	margin-bottom: 0px;
	margin-left: 10px;
	line-height: ;
	font-weight: ;
}

ul {
	margin-top: px;
	margin-right: 15px;
padding-left: 30px;

	}

li {
     line-height: 1.4;
	 margin-bottom: 10px;
}


ul.subLists {
	margin: 10px 0 0px 20px;
}

li.subLists {
	margin: 0px 0 2px 0;
}

li.subListsLast {
	margin: 0px 0 10px 0;
}


ul.lists2 {
        margin-top: 0px;
	padding: 0px 0 0px 30px;
}


li.lists2 {
	margin: 5px 0 0px 0;
}



li.nested
{
margin: 0 0;
}



/* 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. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent { 
	margin: 0px 240px 0 15px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	padding: 20px 10px 0 0;
	border-right: 1px solid #999999;
	background: #ffffff;
} 

#headerContactInfo {
	margin: 15px 15px 0 0 ;
	font-weight: bold;
	text-align:right;
	position:relative;
	float: right;
}

#headerContactInfoTitle {
	font-size: 1.2em;
	font-weight: bold;
	color: #f59121;	
}

#featuredsamplesbox { 
	margin: 0px 0px 0px 0px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	width: 100%;
	background: #ffffff;
} 



#featuredsamplesheader {
	margin: 0 10px 10px 0;
	padding: 2px 15px 5px 5px;
	background: #f59121;
	border-bottom: 4px solid #656565;
	list-style: none;
	font: 1.2em Arial, Helvetica, Verdana, sans-serif;
	font-weight: bold;
	color: #ffffff;
	display: block;
}


#webLogo {
        position:absolute;
        padding-left:30px;
        padding-top:15px;
        margin:0;
}
#webLogo a {
        display:block;
        background:url(http://www.plusmoremedia.com/images/WebLogo.pngX) no-repeat;
        width:150px;
        height:65px;
        text-indent:-5000px;
        outline:none;
}

#bookmarkLink {
        position: absolute;
        padding-left:770px;
        padding-top:15px;
        margin:0;
}


/* nav */

/*
ul#nav li {
        float:left;
}
ul#nav li a {
        float:left;
        background-image:url(nav_matrix.png);
        background-repeat:none;
        background-position:0 0;
        width:96px;
        height:31px;
        padding:0;
        text-indent:-5000px;
        outline:none;
}

*/

	
ul#nav {
        margin: 0;
        padding:105px 0 0 92px;
        height: 30px;
		width: 800px;
        list-style: none;
        display: ;
        overflow: hidden;
		clear: both;
        }
 
#nav li {
	float:left;
        margin: 0; 
        padding: 0;
        list-style: none;
        display: inline;
		
        }
 
#nav2 a {
        float:left;
        background-image:url(nav_matrix.png);
        background-repeat:none;
        background-position:0 0;
        width:114px;
        height:30px;
        padding:30px 0 0 0;
        /*text-indent:-5000px;*/
        outline:none;
        }
 
#nav a {
        float: left;
        padding: 30px 0 0 0;
        overflow: hidden;
        height: 0px !important; 
        height /**/:30px; /* for IE5/Win only */
	
        }
        
#nav a:hover {
        background-position: 0 -30px;
        }
 
#nav a:active, #nav a.selected {
        background-position: 0 -30px;
        }
		
	/*
#thome a  {
        width: 114px;
        background: url(images/home.png) top left no-repeat;
        }
#tcompany a  {
        width: 114px;
        background: url(images/company.png) top left no-repeat;
        }
#tservices a  {
        width: 114px;
        background: url(images/services.png) top left no-repeat;
        }
#tportfolio a  {
        width: 114px;
        background: url(images/portfolio.png) top left no-repeat;
        }
#trates a  {
        width: 114px;
        background: url(images/rates.png) top left no-repeat;
        }
#tnews a  {
        width: 114px;
        background: url(images/news.png) top left no-repeat;
        }
#tcontact a  {
        width: 114px;
        background: url(images/contact.png) top left no-repeat;
        }
 */
 
 
 
#thome a  {
        width: 70px;
        background: url(images/home3.png) top left no-repeat;
        }
#tcompany a  {
        width: 99px;
        background: url(images/company3.png) top left no-repeat;
        }
#twebdesignservices a  {
        width: 117px;
        background: url(images/webdesign3.png) top left no-repeat;
        }
#tgraphicdesignservices a  {
        width: 141px;
        background: url(images/graphicdesign3.png) top left no-repeat;
        }
#tvideoproductionservices a  {
        width: 153px;
        background: url(images/videoproduction3.png) top left no-repeat;
        }
#tnews a  {
        width: 71px;
        background: url(images/news3.png) top left no-repeat;
        }
#tcontact a  {
        width: 90px;
        background: url(images/contact3.png) top left no-repeat;
        }	
 
  
  
#subLinks {
        margin: 10px 0 0 93px;
		color: #646565;
        }
		
  
  
.sitemap ul {
         margin: 0 0 0 -20px;
	        }
 
.sitemap li {
		margin: 0px 0 0 20px;
        }
		

#footer { 
	padding: 10px 25px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#e8e8e8; 
	color:#646565;
	border-top: 10px solid #f59121;
	border-bottom: 1px solid #979797;
	text-align:center;
	clear: both;
} 
#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 */
}

.footerwhite a{
	margin: 10px 0 0 0;
	font-weight: bold;
	color:#505050;
}


#footer2 { 
	padding: 10px 25px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#; 
	text-align:center;
	clear: both;
} 
#footer2 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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .8em;
}

.footer2 a{
	margin: 10px 0 0 0;
	font-weight: bold;
	color: #646565;
}


/* 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. */
	position: relative;
	float: right;
	margin: 0 -5px 10px 10px;
}
.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 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;
}
.floatimageleft { /* this class can be used to float an image left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	clear:both;
}

.featuredsampleleft {
	margin: 0px 0 0 15px; /* 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 */
}

.featuredsampleright {
	margin: 0px 240px 0 0px; /* 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 */
}

.clearboth {
	clear: both;
}

.clearleft {
	clear: left;
}

.stepsWrapper
{
width: 118px;
float: left;
margin: 0 10px 0 0;
border-collapses: collapse;
}



.stepsHeader
{
display: block;
font: 1em;
font-weight: ;
color: #;
margin: 5px 0 0 16px;
padding: 1
}


.stepsMiddle
{
backgrou25: #ffffff;
width: 100px;
margin:0px;
border-left: 1px solid #dddddd;
border-right: 1px solid #dddddd;
}

#servicesWrapperContainer
{
width: 640px;
border-collapses: ;
margin: 0 0 25px 0 ;
border: ;
}


#servicesWrapper1
{
width: 190px;
float: left;
margin: 0 0px 0 10px;
border-collapses: collapse;
}

#servicesWrapper2
{
width: 190px;
margin: 0 0px 0 0px;
padding: 0 0 0 0px;
float: left;
border-collapses: collapse;
}

#servicesWrapper3
{
width: 190px;
float: left;
margin: 0 10px 0 10px;
padding: 0 10px 0 10px;
border-collapses: collapse;
border-left: 1px dashed;
border-right: 1px dashed;
border-color: #b6b6b6;

}

#servicesMiddle1, #servicesMiddle2, #servicesMiddle3
{
background: #ffffff;
width: 198px;
margin:0px;
border-left: 1px solid #dddddd;
border-right: 1px solid #dddddd;
}


#servicesMiddle1Header
{
display: block;
font: 1em;
font-weight: bold;
color: #f5911f;
margin: 0px 0 0 10px;
padding: 10px 0 0 0;
}

#servicesMiddle1 p, #servicesMiddle2 p, #servicesMiddle3 p
{
margin: 0px 10px 0 10px;
padding: 0px 0 0 0;
}

#servicesMiddle2Header
{
display: block;
font: 1em;
font-weight: bold;
color: #1f83f5;
margin: 0px 0 0 10px;
padding: 10px 0 0 0;
}

#servicesMiddle3Header
{
display: block;
font: 1em;
font-weight: bold;
color: #54bb2f;
margin: 0px 0 0 10px;
padding: 10px 0 0 0;
}

#servicesMiddle1 ul, #servicesMiddle2 ul, #servicesMiddle3 ul
{
margin:0;
padding-bottom: 10px;
}

#servicesMiddle1 li, #servicesMiddle2 li, #servicesMiddle3 li
{
padding: 4px 0 0 0;
}

.servicesBottom
{
	background: #e8e8e8;
	width: 178px;
	border-left: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	padding:10px;
}


table#latestNews
{
width: 600px;
}

#latestNews h1
{
font: 1.2em Arial, Helvetica, Verdana, sans-serif;
margin: 0px;
padding:0px;
display: inline:
}

#latestNews p
{
padding: 5px 0 0 0;
}

table#featuredProject
{
width: ;
border-collapse: collapse;
}

#featuredProjectHeaderLink
{
font: 1.2em Arial, Helvetica, Verdana, sans-serif;
color: #f5911f;
font-weight: bold;
}

#featuredProjectImage
{
width:200px;
padding: 10px 0 0 10px;
}

#featuredProjectText
{
width:410px;
text-align:left;
vertical-align: top;
padding: 10px 10px 0 10px;
}


.orangeLink a
{
color: #f5911f;
font-weight: bold;
font-size: 1em;
text-decoration: none;
padding: 0 10px 0 0;
}

.orangeLink a:hover, .orangeLink a:active
{
color: #f5911f;
font-weight: bold;
font-size: 1em;
text-decoration: underline;
padding: 0 10px 0 0;
}

table#lserviecs
{
width: ;
border-collapse:collapse;
}

.servicesLearnMoreLink a
{
display: block;
padding: 10px 0px 10px 10px;
color: #f5911f;
font-weight: bold;
text-decoration: none;
}

.servicesLearnMoreLink a:hover, .servicesLearnMoreLink a:active
{
display: block;
padding: 10px 0px 10px 10px;
color: #f5911f;
font-weight: bold;
text-decoration: underline;
}



table#latestNews latesteNewsReadMoreLink
{
color: #f5911f;
font-weight: bold;
}





.boldBegSentence
{
font-weight: bold;
color: #f5911f;
}

.boldEndSentence
{
font-weight: bold;
color: #646565;
}




table#featuredProject
{
width: 600px;
margin:0 0 10px 0;
padding:0px;
}


#featuredProjectWrapper
{
width: 640px;
float: ;
margin: 0 0 25px 0;
}

#featuredProjectTop
{
width: 640px;
background: url(images/FeaturedProject-Header-Strip.png) top left no-repeat;
color: #ffffff;
height: 20px;
margin: 0px;
padding: 0px;
}

#featuredProjectMiddle
{
	background: #ffffff;
	color: #ffffff:
	margin:0px;
	padding: 0 0 10px 0 ;
	width: 638px;
	border-left: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}


#directorylinks, #directorylinks a {
display: none;
visibility: hidden;
} 


#indexBanner
{
background: url(images/IndexBannerGraphic2.jpg) top left no-repeat;
margin: 0px 0 0px 0 ;
width: 640px;
height: 150px;
}

#indexBannerButton
{
background: url(images/IndexBannerButton.jpg) top left no-repeat;
position: absolute;
margin: 135px 0 0 480px;
width: 158px;
height: 58px;
}

#companyBannerGraphic
{
background: url(images/CompanyBannerGraphic.jpg) top left no-repeat;
margin: 0px 0 0px 0 ;
width: 640px;
height: 150px;
}

#webDesignStudioGraphic
{
background: url(images/WebDesignStudioGraphic.jpg) top left no-repeat;
margin: 0px 0px 0px 10px ;
padding: 0px 10px 10px 0px;
width: 200px;
height: 150px;
float: left;
}

#graphicandLogoDesignBanner
{
background: url(images/GraphicDesignBannerGraphic.jpg) top left no-repeat;
margin: 0px 0 0px 0 ;
width: 640px;
height: 150px;
}

#graphicDesignStudioGraphic
{
background: url(images/GraphicDesignStudioGraphic.jpg) top left no-repeat;
margin: 0px 0px 0px 10px ;
padding: 0px 10px 10px 0px;
width: 200px;
height: 150px;
float: left;
}


#logoDesignStudioGraphic
{
background: url(images/LogoDesignStudioGraphic.jpg) top left no-repeat;
margin: 0px 0px 0px 10px ;
padding: 0px 10px 10px 0px;
width: 200px;
height: 150px;
float: left;
}


#videoProductionStudioGraphic
{
background: url(images/VideoProductionStudioGraphic.jpg) top left no-repeat;
margin: 0px 0px 0px 10px ;
padding: 0px 10px 10px 0px;
width: 200px;
height: 150px;
float: left;
}

#officeStudioGraphic
{
background: url(images/OfficeStudioGraphic.jpg) top left no-repeat;
margin: 0 5px 0 0;
padding: 0px 0 10px 0px;
width: 210px;
height: 250px;
float: right;
}

#websitesGraphic
{
background: url(images/WebDesignServices-Websites.jpg) top left no-repeat;
position: relative;
margin: 0 5px 0 0;
padding: 0px 0 0x 0px;
width: 210px;
height: 150px;
float: left;
}

#webGraphicsGraphic
{
background: url(images/WebDesignServices-WebGraphics.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 210px;
height: 150px;
float: right;
}

#graphicsGraphic
{
background: url(images/Graphics-Graphic.jpg) top left no-repeat;
position: relative;
margin: 15px 0px 0 10px;
padding: 0px 0 0px 0px;
width: 210px;
height: 150px;
float: left;
}

#customLogoDesignGraphic
{
background: url(images/Logos-Graphic.jpg) top left no-repeat;
position: relative;
margin: 15px 10px 0 0;
padding: 0px 0 0px 0px;
width: 210px;
height: 150px;
float: right;
}



#videoProductionGraphic
{
background: url(images/VideoProduction-Graphic.jpg) top left no-repeat;
position: relative;
margin: 15px 5px 0 10px;
padding: 0px 0 0x 0px;
width: 210px;
height: 150px;
float: left;
}

#webVideoGraphic
{
background: url(images/WebVideo-Graphic.jpg) top left no-repeat;
position: relative;
margin: 15px 10px 0 0px;
padding: 0px 0 0px 0px;
width: 210px;
height: 150px;
float: right;
}




#contactUsBannerGraphic
{
background: url(images/ContactUsBannerGraphic.jpg) top left no-repeat;
margin: 0px 0 0px 0 ;
width: 640px;
height: 150px;
}

#webDesignBannerGraphic
{
background: url(images/WebDesignBannerGraphic.jpg) top left no-repeat;
margin: 0px 0 0px 0 ;
width: 640px;
height: 150px;
}

#graphicDesignBannerGraphic
{
background: url(images/GraphicDesignBannerGraphic.jpg) top left no-repeat;
margin: 0px 0 0px 0 ;
width: 640px;
height: 150px;
}

#videoProductionBannerGraphic
{
background: url(images/VideoProductionBannerGraphic.jpg) top left no-repeat;
margin: 0px 0 0px 0 ;
width: 640px;
height: 150px;
}

#step1Graphic
{
background: url(images/Step-1.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#step2Graphic
{
background: url(images/Step-2.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#step3Graphic
{
background: url(images/Step-3.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#step4Graphic
{
background: url(images/Step-4.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#step5Graphic
{
background: url(images/Step-5.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}





#graphicStep1Graphic
{
background: url(images/Graphic-Step-1.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#graphicStep2Graphic
{
background: url(images/Graphic-Step-2.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#graphicStep3Graphic
{
background: url(images/Graphic-Step-3.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#graphicStep4Graphic
{
background: url(images/Graphic-Step-4.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#graphicStep5Graphic
{
background: url(images/Graphic-Step-5.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}



#videoStep1Graphic
{
background: url(images/Video-Step-1.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#videoStep2Graphic
{
background: url(images/Video-Step-2.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#videoStep3Graphic
{
background: url(images/Video-Step-3.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#videoStep4Graphic
{
background: url(images/Video-Step-4.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}

#videoStep5Graphic
{
background: url(images/Video-Step-5.jpg) top left no-repeat;
position: relative;
margin: 0 0px 0 0;
padding: 0px 0 0px 0px;
width: 128px;
height: 100px;
float: left;
}




#whyItWorks {
background: #eeeeee;
border: solid 1px #646565;
margin: 0 5px 0 0;
}

.offset {
  position : absolute;
  top : -9000px;
  left : -9000px;
}









/*
 * table with grey bar on top and bottom with alternatin 
 * bg row colors
 */
tr.styled td
{
	padding: 5px;
	font-size: 1em;
	background-color: #ffffff;
	color: #444444;
	border-right: 1px solid #EDEDED;
}
tr.styled_alt td
{
	padding: 5px;
	font-size: 1em;
	color: #444444;
	background-color: #EDEDED;
	border-right: 1px solid #FFFFFF;
}
tr.styled td.gray,
tr.styled_alt td.gray
{
	color: #666465;
}

tr.styled_alt td.last, 
tr.styled td.last 
{
	border-right: none;
}

tr.button_row td
{
	font-size: 1em;
	padding: 8px 3px 3px 3px;
}

tr.styled,
tr.header,
tr.footer
{
	width: 600;
}
tr.header td,
tr.footer td
{
	background-color: #666465;
	height: 20px;
	color: #ffffff;
	font-weight: bold;
	padding: 5px 0px 5px 3px;
	font-size: 1.2em;
}




 
table.websitePackages {
border-collapse: collapse; 
width: 600; 
align: center; 
border:0;
margin-left:auto; 
margin-right:auto;

}


td.graphicPrice
{
font-size:1.2em;
font-weight: bold;
}

table.videoPackages {
border-collapse: collapse; 
width: 600; 
align: center; 
border:0;
margin-left:auto; 
margin-right:auto;
}

.pullquote {
width:;
line-height:;
font-size:1.2em;
text-align:center;
font-weight: bold;
font-style: italic;
}
