@charset "UTF-8";

/*Note: This CSS file may not always be valid according to the W3C standards.
It may contain proprietary/nonstandard or yet unsupported code.
This code is used to fix certain user agent rendering bugs, or to enhance the website/application in the case of more advanced user agents.*/

/*
@website: 
@author: spotonearth team
@copyright: spotonearth 2009 

1    general rules
1.1. reset
1.2. typography
1.3. forms
1.4. tables
1.5. floats
1.6. misc

2   layout
2.1. grids
2.2. container
2.3. branding
2.4. content
2.5. site info
*/

/*************************************
1. General rules
**************************************/

/*---------1.1. =reset-------------*/
* { 
	list-style: none;
	font-size: 100%; 
	text-decoration: none;
	font-variant: normal;
	font-family: inherit;
	outline: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,ul, ol, li, dl, dt, dd, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd,q, s, samp, small, strike, strong, sub, sup, tt, var, li,  fieldset, form, label, legend, input, select, option, optgroup{
	padding: 0px;
	margin: 0px;
}

body {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 62.5%; /* 1em = 10px \ 1.1em = 11px \ 1.2em = 12px */
	padding: 0px 0px 50px 0px;
	color: #928365;
	background: #0b0b05;
}

*:focus::-moz-focus-inner {
	border-color: transparent !important;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q { quotes: "" ""; }

pre {
	width: 100%;
	overflow: auto;
	white-space: pre;
	white-space: -moz-pre-wrap;
	white-space: -hp-pre-wrap;
	white-space: -o-pre-wrap;
	white-space: -pre-wrap;
	white-space: pre-wrap;
	word-wrap: break-word;
}

img,
object,
embed {
	display: -moz-inline-box;
	display: inline-block;
	border: none;
	vertical-align: bottom;
}

a img {
	vertical-align: middle;
}

ul.list,
ol.list {
	margin: 10px 0px;
	padding: 0px 0px 0px 2em;
}

ul.list li { list-style: disc; }

ol.list { list-style: decimal; }

dl.list { margin: 10px 0px; }

dl.list  dt { margin: 10px 0px 2px 0px; }

dl.list dd { margin: 0px 0px 0px 2em; }

/*-------1.2. =typography----*/
/*headings and paragraphs*/
h1, h2, h3, h4, h5, h6 { 
	margin: 0px 0px 10px 0px;
}

h1 {
	font-size: 2.2em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.8em;
}

h4 {
	font-size: 1.6em;
}

h5 {
	font-size: 1.4em;
}

h6 {
	font-size: 1.2em;
}

p {
	margin: 0px 0px 15px 0px;
	line-height: 1.6em;
}

blockquote {}

blockquote p {
	margin: 0px;
}

/*links*/
a {
	cursor: pointer;
	color: #f1315c;
}

a:link,
a:visited {}

a:hover, 
a:focus,
a:active {
	border-bottom: 1px dashed #EE5225;
	color: #EE5225;
}

/*phrase elements*/
strong, b { font-weight: normal; }

em, i { font-style: oblique; }

del, s, strike { text-decoration: line-through; }

ins, u { text-decoration: underline; }

abbr,
acronym { speak: spell-out; }

abbr[title],
acronym[title],
dfn[title]{
	border-bottom: 1px dashed #928365;
	cursor: help;
}

sup {
	vertical-align: text-top;
	font-size: 85%;
}

sub {
	vertical-align: text-bottom;
	font-size: 85%;
}

dfn {}

cite { 
	font-weight: bold; 
	font-style: italic;
}

kbd {
	padding:  0px 2px;
	border-style: solid;
	border-color: #eee;
	border-width: 1px 2px 2px 1px;
	background: #F7F7F7;
}

var {}

code {}

samp {}

/*------------1.3. =forms---------------*/
fieldset {
	border: none;
}

form li {
	margin-bottom: 10px;
}

form li li {
	margin-bottom: 0px;
}

legend {}

label {
	display: block;
	font-size: 1.1em;
	color: #0b0b05;
}

label span {
	font-size: 1.5em;
}

input {
	vertical-align: bottom;
}

label input {
	vertical-align: middle;
}

.text,
select,
textarea,
button,
.button {
	padding: 10px;
	border: 1px solid #0b0b05;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	-icab-border-radius: 10px;
	border-radius: 10px;
	color: #928365;
	background: #0b0b05;
}

.text:focus,
.text:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
button,
.button {
	border-color: #f1315c;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
	cursor: pointer;
}

button,
.button { 
	width: auto;
	overflow: visible;
	text-align: center;
	cursor: pointer;
	color: #928365;
}

button span { 
  display: block; 
  white-space: nowrap; 
}

button:hover,
button:focus,
button:active,
.button:hover,
.button:focus,
.button:active {}

select {
}

select:focus,
select:active {}

optgroup {}

option {}

textarea {
	width: 440px;
	max-width: 460px;
	height: 90px;
	max-height: 200px;
	overflow: auto;
}

textarea:focus,
textarea:active {}

.small {
	width: 30%;
}

.medium {
	width: 190px;
}

.large {
	width: 90%;
}

/*----------1.4. =tables---------*/
table {
	border: none;
	border-collapse: collapse; 
	border-spacing: 0;  /*when set to "0" cellspacing has no effect on tables */
}

tr {}

td {}

th {}

caption {
	text-align: center;
	font-weight: bold;
}

/*----------1.5. =floats---------*/
form li:after,
form dl:after,
form dt:after, 
form dd:after,
ul:after,
ol:after,
dl:after,
#container:after,
#branding:after,
#content:after,
#mainContent:after,
#sideContent:after,
#siteInfo:after,
.line:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

/*-------1.6. =misc------*/
.hidden {
	width: 0px !important;
	height: 0px !important;
	overflow: hidden !important;
	position: absolute !important;
	top: -9999em !important;
	left: -9999em !important;
	font-size: 0px !important;
}

.left { text-align: left; }

.al {
	float: left;
	clear: left;
}

img.left {
	margin: 0px 10px 10px 0px;
	float: left;
	clear: left;
}

.center { text-align: center; }

img.center {
	display: block;
	margin: 0 auto;
}

.right { text-align: right; }

.ar {
	float: right;
	clear: right;
}

img.right {
	margin: 0px 0px 10px 10px;
	float: right;
	clear: right;
}

.confirm,
.warning,
.notice,
.error {
	margin: 0px 0px 10px 0px;
	padding: 10px 10px 10px 40px;
	border: 1px solid;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	-icab-border-radius: 10px;
	border-radius: 10px;
	color: #000;
	background-position: 6px 6px !important;
	background-repeat:no-repeat !important;
}

.confirm{
	border-color: #60C300;
	background: #DFFFBF url(../images/icons/confirm.png);
}

.warning{
	border-color: #FF7200;
	background: #FFE59F url(../images/icons/warning.png);
}

.notice {
	border-color: #5fb9f7;
	background: #caecff url(../images/icons/notice.png);
}

.error{
 	border-color: #FF0000;
	background: #FFAFAF url(../images/icons/error.png);
}

/* =form validation */
.formError {
    position: absolute;
    top: 300px;
    left: 300px;
    padding-bottom: 13px;
    display: block;
    z-index: 5000;
}

.formErrorContent {
    width: 100%;
    background: #ee0101;
    color: #fff;
    width: 150px;
    font-family: tahoma;
    font-size: 11px;
    border: 2px solid #ddd;
    box-shadow: 0px 0px 6px #000;
    -moz-box-shadow: 0px 0px 6px #000;
    -webkit-box-shadow: 0px 0px 6px #000;
    padding: 4px 10px 4px 10px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.greenPopup .formErrorContent {
    background: #33be40;
}

.blackPopup .formErrorContent {
    background: #393939;
    color: #FFF;
}

.formErrorArrow {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 15px;
    height: 15px;
    z-index: 5001;
}

.formErrorArrowBottom {
    top: 0;
    margin: -6px;
}

.formErrorArrow div {
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    box-shadow: 0px 2px 3px #444;
    -moz-box-shadow: 0px 2px 3px #444;
    -webkit-box-shadow: 0px 2px 3px #444;
    font-size: 0px;
    height: 1px;
    background: #ee0101;
    margin: 0 auto;
    line-height: 0px;
    font-size: 0px;
    display: block;
}

.formErrorArrowBottom div {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.greenPopup .formErrorArrow div {
    background: #33be40;
}

.blackPopup .formErrorArrow div {
    background: #393939;
    color: #FFF;
}

.formErrorArrow .line10 {
    width: 15px;
    border: none;
}

.formErrorArrow .line9 {
    width: 13px;
    border: none;
}

.formErrorArrow .line8 {
    width: 11px;
}

.formErrorArrow .line7 {
    width: 9px;
}

.formErrorArrow .line6 {
    width: 7px;
}

.formErrorArrow .line5 {
    width: 5px;
}

.formErrorArrow .line4 {
    width: 3px;
}

.formErrorArrow .line3 {
    width: 1px;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-bottom: 0px solid #ddd;
}

.formErrorArrow .line2 {
    width: 3px;
    border: none;
    background: #ddd;
}

.formErrorArrow .line1 {
    width: 1px;
    border: none;
    background: #ddd;
}

/************************************
2. Layout
*************************************/

/*--------------2.1. =grids--------------*/
.line {
	zoom: 1.0;
}

.g1of2,
.g1of3,
.g1of4,
.g1of5,
.g2of3,
.g2of5,
.g3of4,
.g3of5,
.g4of5 {
	float: left;
	overflow: hidden;
	zoom: 1.0;
}

.g1of2 { width: 50%; }
.g1of3 { width: 33.3333%; }
.g1of4 { width: 25%; }
.g1of5 { width: 20%; }
.g2of3 { width: 66.6666%; }
.g2of5 { width: 40%; }
.g3of4 { width: 75%; }
.g3of5 { width: 60%; }
.g4of5 { width: 80%; }
.lastUnit {
	width: auto;
	float: none;
}

/*------------2.2. =container------------*/
#container {
	width: 820px;
	padding: 0px 70px 240px 70px;
	margin: 0 auto;
	position: relative;
	font-size: 1.2em;
	background: #9E9275 url(../images/bg.png) bottom center no-repeat;
}

/*------------2.3. =branding-------------*/
#branding {
	padding: 50px 0px 125px 0px;
}

#branding a {
	display: block;
	width: 415px;
	height: 133px;
	overflow: hidden;
	text-indent: -9999em;
	border: none;
	margin: 0 auto;
	background: url(../images/logo.png);
}

/*------------2.4. =content--------------*/
#content {
}

/* =services */
#services {
	margin: 0px -10px;
}

#services li {
	display: inline;
	width: 379px;
	height: 350px;
	padding: 10px;
	margin: 0px 10px 25px 10px;
	float: left;
	background: url(../images/opacity.png) top center;
}

#services li:hover {
	background-position: 0px 100%;
}

#services h2 {
	width: 379px;
	height: 97px;
	overflow: hidden;
	margin: 0px 0px 60px 0px;
	text-indent: -9999em;
	background: url(../images/services.png);
}

#magentoDev h2 {
	background-position: 0px 0px;
}

#zfDev h2 {
	background-position: 0px -97px;
}

#wpEcom h2{
	background-position: 0px -194px;
}

#wpDev h2{
	background-position: 0px 100%;
}

/* =contact */
#personalInfo {
	width: 220px;
	float: left;
}

#projectInfo {
	width: 460px;
	float: right;
}

#send {
	display: block;
	width: 160px;
	height: 60px;
	overflow: hidden;
	float: right;
	line-height: 0px;
	text-indent: -9999em;
	background: #0B0B05 url(../images/send.gif) center no-repeat;
}
/*------------2.5. =site info------------*/
#siteInfo {
	overflow: hidden;
	text-indent: -9999em;
}
