/* = FONT STACKS
----------------------------------------------------------------------------------------------------------------------*/
body    { font-family: Arial, Tahoma, Geneva, 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif } /* "wide" sans serif */
/*body    { font-family: Tahoma, Arial, Helvetica, sans-serif } /* "narrow" sans serif */
/*body    { font-family: Georgia, Utopia, Palatino, 'Palatino Linotype', serif } /* "wide" serif */
/*body    { font-family: 'Times New Roman', Times, serif } /* "narrow" serif */


/*  transform the font size so that 1em is 10px so that you can use em's
    but think in pixels as now 1em is 10px, 1.2em is 12px and so on */

html { font-size: 62.5% }

body {
    font-size: 12px;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    line-height: 1.6em;   /*  unit-less line-height does not inherit a percentage value of its parent element */
                        /*  but instead is based on a multiplier of the font-size */
}

div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, aabbr, acronym, address,
big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i,p,
center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {

    margin: 0;
    padding: 0;
    outline: 0;
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;

}

a, blockquote, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, img, input, textarea, label, li, ol, pre, span, table, ul {


}

input,textarea,select {
	text-shadow: 1px 0px 0px rgba(204, 204,204, 0.4);
}


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

small
sup,
sub     { font-size: 70% }

p, small   { display: block; margin:0px;padding:0px;}

strong, b   { font-weight: bold }
em, i       { font-style: italic }

a {
	text-decoration:none;
}

/* = CLEARFIX
----------------------------------------------------------------------------------------------------------------------*/
.clearfix:before,
.clearfix:after     { content: "\0020"; display: block; height: 0; visibility: hidden; font-size: 0 }
.clearfix:after     { clear: both }
.clearfix           { *zoom: 1 } /* for IE only */
.clear {
	clear:both;
    outline:0;
	font-size:0px;
	height:0px;
	line-height:0px;
	border:0;
	margin:0;
	padding:0;
}
.breakline {
	clear:both;
	height:1px;
	border:0px;
	margin:2px 0px;
	padding:0px;
	font-size:0px;
	line-height:0px;
	border-bottom:1px dotted #00a2ff;
}

/* = TABLES
----------------------------------------------------------------------------------------------------------------------*/
table {

    border-collapse: collapse;
    border-spacing: 0;
    /* tables still need cellspacing="0" */

}
table.border tr td {
	border: 1px solid #000;
	padding: 5px;
	width: 10%;
}
table.border tr:nth-child(even){
	background: #f7f6f3;
}
table.noborder {
	width: 100%;
}
.noborder tr td{
	border:0px;
	vertical-align: top;
	width: 10%;
}
/* = LISTS
----------------------------------------------------------------------------------------------------------------------*/
/*ul, ol          { list-style: none }
*/

ul  li,
ol  li     { margin-left:20px; }

ul.default,
ol.default,
ol.default ul,
ul.default ul,
ul.default ol,
ol.default ol   { padding-left: 1.5em }

ul.default,
ol.default ul,
ul.default ul   { list-style-type: square }

ol.default,
ul.default ol,
ol.default ol   { list-style-type: decimal }

