/*-----------------------------------------------------
	basic rules
-----------------------------------------------------*/

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;
	vertical-align: baseline;

	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	/* we need this if we won't add line-height to every elements with different font-size like h1
	line-height: 1.6em;
	*/
}

body {
	/*font-family: Verdana, Arial, Helvetica, sans-serif;*/
	font-family: Lucida Grande, Lucida Sans Unicode, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.4em;
	color: #333;
}


/*-----------------------------------------------------
	forms
-----------------------------------------------------*/

input, select, textarea, button {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.4em;

	padding-left: 0px;
	padding-right: 0px;
	/*vertical-align: baseline; no so good for checkbox */
}

/* for checkbox in firefox */

input {
	margin-bottom: 0px;
	margin-left: 0px;
}

/*-----------------------------------------------------
	paragraphs
-----------------------------------------------------*/

h1,h2,h3,h4,h5,h6 { 
	font-weight: bold;
}


p,h1,h2,h3,h4,h5,ul,ol,blockquote,code {
	margin-bottom: 1.4em;
}


p.last { margin-bottom: 0; }

hr {
	background-color: #ddd; 
	color: #ddd;
	clear: both; 
	float: none; 
	width: 100%; 
	height: 1px;
	margin: 0 0 1.4em;
	border: none;
}

em {
	font-style: italic;
}

sub, sup {
	line-height: 10px;
	font-size: 0.8em;
}

/*-----------------------------------------------------
	defualt list
-----------------------------------------------------*/

ul {
	list-style-position: outside;
	list-style-image: none;
	list-style-type: none;
}

li {
	background-image: none;
	background-repeat: no-repeat;
}

ol {
	list-style-position: outside;
	list-style-type: decimal;
	margin-left: 30px;
}

/*-----------------------------------------------------
	table, tr, td
-----------------------------------------------------*/

th, caption {
	text-align: left;
	font-weight: normal;
}


/*-----------------------------------------------------
	links and images
-----------------------------------------------------*/

a {
	color: #0186C6;
	border-bottom: 1px dotted #0186C6;
	text-decoration: none;
}

a:hover, a:focus {
	border-bottom: 1px solid #0186C6;
	text-decoration: none;
}

a img {
	border: 0px none;
}


/*-----------------------------------------------------
   style-o-classes
-----------------------------------------------------*/

div.wrapper { float: none; clear: both; }
div.wrapperEnd { float: none; clear: both; font-size: 1px; line-height: 1px; height: 1px; }
.floatLeft { float: left; }
.floatRight { float: right; }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }   
.clear:after, .container:after {
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }


.hide { display: none; }

.resetMargin { margin: 0; } 
.resetPadding { padding: 0; } 
.reset { margin: 0; padding: 0; } 

.alignJustify  { text-align: justify; } 
.alignLeft     { text-align: left; } 
.alignCenter   { text-align: center; } 
.alignRight    { text-align: right; } 
