/*	-------------------------------------------------------------
	STYLE CLEANER
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, 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,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	background-image: transparent;
}

body {
	line-height: 1;
	color: black;
	background: white;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

textarea {
	resize: vertical;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

.clear {
	clear: both;
}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */


#content .no-edit {
	position: absolute;
	z-index: 100000;
	top: -9999px;
	left: -9999px;
}

/*	-------------------------------------------------------------
	MODERN BROWSER CLEANUP
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
* {
     -webkit-font-smoothing: antialiased;
     -moz-font-smoothing: antialiased;
     -o-font-smoothing: antialiased;
     font-smoothing: antialiased;
}

a:link,
a:visited {
	-webkit-transition: all 0.10s ease;
	-moz-transition: all 0.10s ease;
	-o-transition: all 0.10s ease;
	transition: all 0.10s ease;
}


/*	-------------------------------------------------------------
	TOOLTIPS
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/


.tooltip, [data-tip] {
	position: relative;
	display: inline-block;
}

.tooltip:before,
.tooltip:after,
[data-tip]:before,
[data-tip]:after {
	position: absolute;
	visibility: hidden;
	opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	z-index: 1000000;
	pointer-events: none;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	transition: 0.3s ease;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
 
 .tooltip:hover:before,
 .tooltip:hover:after,
 [data-tip]:hover:before,
 [data-tip]:hover:after {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.tooltip:before,
[data-tip]:before {
    content: '';
    z-index: 1000001;
    position: absolute;
    border: 6px solid transparent;
    background: transparent;

}

.tooltip:after,
[data-tip]:after {
    content: attr(data-tip);   
    padding: 8px 10px;
    white-space: nowrap;
    font-size: 12px;
    line-height: 12px;
    color: #ffffff;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    background: #383838;
}

.tooltip:before {
  border-top-color: #383838;
  margin-bottom: -12px;
}

.tooltip:after {
  margin-left: -18px;
}

.tooltip:before,
.tooltip:after {
  bottom: 100%;
  left: 8%;
}

.tooltip:hover:before,
.tooltip:hover:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}


/*	-------------------------------------------------------------
	DEFAULTS
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/


small { font-size: 0.9em; }

strong { font-weight: bold; }

em { font-style: italic; }

.smallText { font-size: 0.9em; }

.large { font-size: 1.2em; }

.clearit { clear: both; }

.left {	float: left; }

.right { float: right; }

.hidden { display: none; }


/* 	IMAGES
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

.image_l,
.image_l_b {
	float: left;
	clear: left;
	margin: 5px 10px 5px 0;
}

.image_r,
.image_r_b {
	float: right;
	clear: right;
	margin: 5px 0 5px 10px;
}

.image_b,
.image_l_b,
.image_r_b {
	border: 1px solid #cdcdcd;
	padding: 2px;
	background: #FFF;
}