/* 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, table, tr, td {
  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 {
	background-color: #A4A4A4;
	color: #2d2e2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	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; /* Centers the page content container in IE 5 browsers. */
}
a, a img,  a:link a:visited  a:focus a:active {
  color: #a62a21;
  border:none;
  text-decoration: none;
}
a:hover {
  color: #a62a21;
  text-decoration: underline;
}
/* Commonly used to style page titles. */
h1, h2, h3 {
	line-height: 18px;
	font-weight: bold;
}
h1 {
	font-size: 16px;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 14px;
}
/* Sets the style for the h3 header. */
h3 {
	font-size: 12px;
}
/* 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 {
  background-color: #fff;
  margin: 0 auto 0 auto;
  min-width: 780px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 780px;
}
#outerWrapper #header {
	background-image: url("../img/hd-bg.gif");
	background-repeat: repeat-x;
	color: #fff;
	height: 100px;
	width: auto;
	padding: 0;
}
#outerWrapper #header h1 {
	color: #fff;
	font-size: 36px;
	padding: 0 0 0 15px;
	line-height: 40px;
}
#outerWrapper #header span {
	position: absolute;
	top: 30px;
}
#outerWrapper #header li {
	display: inline;
	list-style-type: none;
	padding: 0 10px;
	line-height: 20px;
	width: 75px;
	font-size: 14px;
	font-weight: bold;
}
#outerWrapper #header ul {
	margin: 0px;
	padding: 48px 0 0 150px;
	float: left;
}
#outerWrapper #header img {
	float: right;
}
#outerWrapper #header a, #outerWrapper #header a:link a:visited, #outerWrapper #footer a, #outerWrapper #footer a:link a:visited{
  color: #fff;
  text-decoration: none;
}

#outerWrapper #subnav {
	border-bottom: solid 1px #8BC53F; /* Sets the bottom border properties for an element using shorthand notation */
	color: #8BC53F;
	height: 110px;
	padding: 0px 10px 10px 15px;
	background-repeat: no-repeat;
	background-position: 400px top;
}
#outerWrapper  #subnav p img {
	float: right;
	padding: 20px 30px 0 0;
}
#outerWrapper #subnav p {
	margin: 0px;
	top: auto;
}
#outerWrapper #subnav a, #outerWrapper #subnav a:link a:visited{
  color: #8BC53F;
}
#outerWrapper #subnav a:hover {
  color: #a62a21;
}
#outerWrapper #contentWrapper #sidebar {
	background-color: #f1f2f2;
	border-left-width: 0px;
	float: right;
	padding: 10px;
	width: 200px;
}
#outerWrapper #contentWrapper #sidebar h2 {
	color: #666666;
	font-size: 12px;
	padding: 0 10px;
}
#outerWrapper #contentWrapper #sidebar ol {
	margin: 0px;
	padding: 0 25px;
}
#outerWrapper #contentWrapper #sidebar p {
	color: #666666;
	font-size: 12px;
	padding: 5px;
}
/* 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 220px 0 0;
  padding: 10px;
  text-align:justify;
  line-height: 18px;
}
#outerWrapper #contentWrapper #content p{
  margin: 5px 0;
}
#outerWrapper #contentWrapper #content ul {
	margin: 0px;
	padding: 10px;
}
#outerWrapper #contentWrapper #content li {
	padding: 0 0 10px 10px;
}
#outerWrapper #contentWrapper #content img {
	padding: 0 0 10px 0;
	float:left;
	overflow:hidden;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
	background-color: #f1f2f2;
	background-image: url("../img/ft-bg.gif");
	background-repeat: repeat-x;
	color: #fff;
	padding: 0px;
	margin: 0px;
	height: 34px;
	font-size: 10px;
}
#outerWrapper  #footer ul {
	margin: 0px;
	padding: 10px 0 0 10px;
}
#outerWrapper  #footer li {
	display:inline;
	list-style:none;
	padding: 5px 10px 0 10px;
}
#outerWrapper  #footer p {
	float: right;
	margin:0;
	padding: 10px 15px 0 0;
}
#outerWrapper #contentWrapper #content img.left {
	float:left;
	padding: 0 10px 10px 0;
}
.clear {
	clear:both;
}
.kiwi {
	background-image: url("../img/kiwi.jpg");
}
#outerWrapper #subnav h1, h2 {
	color: #8BC53F;
}
#outerWrapper #subnav h2 {
	padding: 10px 0 0 120px;
	font-size: 18px;
}
#outerWrapper #subnav h1, h2 {
	padding: 50px 0 0 10px;
	font-size:40px;
}
/* email-stationery */
.laptop {
	background-image: url("../img/laptop.jpg");
}

/* prind & design */
.yin-yang {
	background-image: url("../img/yin-yang.gif");
}
/* website solutions */
.world {
	background-image: url("../img/world-cart.jpg");
}
/* package deals */
.packages {
	background-image: url("../img/packages.jpg");
}
/* gallery */
#outerWrapper #contentWrapper #content.gallery img {
	padding: 8px;
	background-color:#CCCCCC;
}#outerWrapper #contentWrapper #content h1 span {
	color: #A62A21;
}
#outerWrapper #contentWrapper #content h3 {
	margin: 20px 0 10px 0;
}
