/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
   Based on work by Eric Meyer:
   * meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}


body { line-height: 1.5; background: #fff; }

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight:400; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

a img { border: none; }


/* -------------------------------------------------------------- 
   
   * Sets up some sensible default typography.
  
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Wilson Miner      [wilsonminer.com]
   * Richard Rutter    [clagnut.com]
   
   Read more about using a baseline here:
   * alistapart.com/articles/settingtypeontheweb
  
-------------------------------------------------------------- */

/* This is where you set your desired font size. The line-heights 
   and vertical margins are automatically calculated from this. 
   The percentage is of 16px (0.75 * 16px = 12px). */
   
body { font-size: 80%; }


/* Default fonts and colors. 
   If you prefer serif fonts, remove the font-family 
   on the headings, and apply this one to the body:
   font: 1em Georgia, "lucida bright", "times new roman", serif; */
   
body { 
  color: #333; 
  font-family: "Helvetica Neue", "Lucida Grande", Helvetica, Arial, Verdana, sans-serif; 
}
h1,h2,h3,h4,h5,h6 { 
  color: #811c02; 
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; }

h1 { font-size: 2.5em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 1.5em; margin-bottom: 0.5em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p.last      { margin-bottom: 0; }
p img       { float: left; margin: 0 1.5em 1.5em 0; padding: 0; }
p img.top   { margin-top: 0; } /* Use this if the image is at the top of the <p>. */
img         { margin: 0 0 1.5em; }

ul, ol      { margin:0 1.5em 1.5em 1.5em; }
ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }
dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin-top: 1.5em; font-style: italic; }
del         { color:#666; }

a:focus, 
a:hover     { color: #811c02; text-decoration: underline; }
a           { color: #811c02; text-decoration: none; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; background: #ffc; }
dfn         { font-weight: bold; }
pre,code    { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace; line-height: 1.5; } 
tt          { display: block; margin: 1.5em 0; line-height: 1.5; }


/* Tables
-------------------------------------------------------------- */

table   { margin-bottom: 1.4em; }
th      { border-bottom: 0px solid #ccc; font-weight: bold; }
td      { border-bottom: 0px solid #ddd; }
th,td   { padding: 4px 10px 4px 0; }
tfoot   { font-style: italic; }
caption { background: #ffc; }

/* Use this if you use span-x classes on th/td. */
table .last { padding-right: 0; } 

/* Forms 
-------------------------------------------------------------- */
form {
}

/* Some default classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.quiet      { color: #666; }

.hide       { display: none; }
.highlight  { background:#ff0; }
.added      { color:#060; }
.removed    { color:#900; }

.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

/* Others clases
-------------------------------------------------------------- */
.nomargin {
	margin: 0;
}

.nofloat {
	float: none;
}
.width100 {
	width:100%;
}
.width75 {
	width:75%;
}
.width50 {
	width:50%;
}
.width25 {
	width:25%;
}
.textsmall {
	font-size:0.8em;
}
.textnormal {
	font-size:1em;
}
.textbig {
	font-size:1.2em;
}
.textverybig {
	font-size:1.5em;
}

.float-left {
	float:left;
}
.float-right {
	float:right;
}
.italic {
	font-style: italic;
}
/*.clear { display: inline-block; }*/   
.clear:after, .container:after {
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }
/* -------------------------------------------------------------- 
   
   * Sets up structure and style for the website prosoftpeople.com
  
	author: Jose Maria Zambrana
    email:josem@prosoftpeople.com
    website:http://www.zerofuxor.com/
  
-------------------------------------------------------------- */

html {
	overflow-y: scroll;
}

/* Header
-------------------------------------------------------------- */
div#header {
	width:100%;
	float:left;
}
div#top-menu {
	float:left;
	width:100%;
	background:#222;
	margin-bottom:1em;
	color:#fff;
}
div#top-menu-wrapper {
	width:800px;
	margin:0px auto;
	text-align:right;
}
div#top-menu ul {
	list-style-type: none;
	margin:0px;
	display:inline;
}
div#top-menu li {
	display:inline;
	margin-left:1em;
}
div#top-menu a {
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	line-height:2.4em;
	padding-bottom:19px;
	text-decoration: none;
}
div#top-menu a:hover, div#top-menu a:hover:hover {
	color:#aaa;
	text-decoration:none;
}
div#top-menu a.active {
	text-decoration:none;
	background-image: url("./images/nav.png");
	background-repeat: no-repeat;
	background-position: bottom center;
}
div#header-content {
	width:100%;
	float:left;
}
div#header-content-wrapper {
	width:800px;
	margin:0px auto;
}
div#header-content div#logo {
	width:550px;
	float:left;
}
div#header-content div#ads {
	width:250px;
	float:left;
	padding:2em 0 0;
}
/* Body Content
-------------------------------------------------------------- */
div#body {
	width:100%;
	float:left;
}
div#body-wrapper {
	width:800px;
	margin:0px auto;
	border-top: 2px dotted #ddd;
	padding-top:1.5em;
}
div#content.nosidebar {
	width:100%;
	padding:0;
	border:0;
}
div#content {
	width:525px;
	float:left;
	padding-right:23px;
	border-right: 2px dotted #ddd;
	font-size:1.2em;
}
/* sidebar
-------------------------------------------------------------- */
div#sidebar {
	width:225px;
	float:left;
	margin-left:25px;
}
div#sidebar ul {
	margin:0px;
	list-style-type: none;
	float: left;
	padding-left:15px;
	margin-bottom:1em;
}

div#sidebar ul.sidebar-menu {
	padding:0;
	width:100%;
}
ul.sidebar-menu li {
	background-color:#f0f0f0;
	background-image:url(./images/sidebar-link-left.gif);
	background-repeat: no-repeat;
	padding-left: 15px;
	height:28px;
	margin-bottom: 1em;
}
ul.sidebar-menu li a{
	background-image:url(./images/sidebar-link-right.gif);
	background-repeat: no-repeat;
	background-position: right;
	padding-right: 15px;
	padding-top:5px;
	display:block;
	height:23px;
	font-weight:bold;
	font-size: 0.9em;
	text-align: center;
	text-decoration: none;
}
ul.sidebar-menu li a:hover{
	color:#222;
	text-decoration: none;
}
div.sidebar-title {
	float:left;
	display: block;
	width:100%;
	margin-bottom:1em;
}
div.sidebar-title-left {
	width: 15px;
	height: 28px;
	float:left;
	background-image: url(./images/sidebar-title-left.gif);
}
div.sidebar-title-center {
	width: 195px;
	float:left;
	height:28px;
	background-color: #222;
}
div.sidebar-title-center h2 {
	font-size: 1.5em;
	margin:0;
	color:#fff;
	text-align: center;
}
div.sidebar-title-right {
	width: 15px;
	height: 28px;
	float:left;
	background-image: url(./images/sidebar-title-right.gif);
}
/* Footer
-------------------------------------------------------------- */
div#footer {
	width: 100%;
	float:left;
	margin-top:1.5em;
}
div#footer-wrapper {
	border-top: 2px dotted #ddd;
	padding-top:1.5em;
	width:800px;
	margin:0px auto;
}
div#footer ul{
	float:left;
	display:inline;
	list-style-type: none;
	margin:0 0 1.5em;
}
div#footer li{
	display:inline;
	margin-right:0.5em;
}
div#footer li a {
	color:#888;
}
div#footer span {
	float:right;
}
/* Other Prosoft Styles
-------------------------------------------------------------- */
div#prosoft {
	width: 100%;
	padding-bottom:1.2em;
	margin-bottom:1.5em;
	border-bottom: 2px dotted #DDDDDD;
}
div#prosoft p {
	font-size: 1.2em;
	margin:0; 
}
.entry div.solution {
	width:100%;
	float:left;
	margin-bottom:10px;
}
.entry div.solution ul {
	list-style-type: none;
}
.entry div.solution img {
	float:left;
	margin-right:1em;
} 

/* Contact us
-------------------------------------------------------------- */
#contact-form {
	float:left;
	width:310px;
	padding:20px;
	border:1px #eee solid;
	margin:0 1em 1em;
}
div#contact {
	float:left;
	width:310px;
}
div#contact div.row{
	float:left;
	padding:0 0 5px;
	text-align: right;
}
div#contact div.column {
	float:left;
	width:210px;
	text-align: right;
}
div#contact div.description {
	text-align:right;
	width:100px;
	font-weight:bold;
	font-size:0.8em;
}

div#contact input {
	width:200px;
}
div#contact textarea {
	width:200px;
}
div#contact input.button {
	float:right;
}
div#contact_details {
	padding-left:1em;
	width:200px;
	float:left;
}
div#contact_details p{
	margin:0pt 0pt 0;
}
div#contact_details h4{
	margin:1em 0; 
}
