/* CSS Reset
--------------------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, address, big, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
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;
	vertical-align: baseline;
}
html, body {
	height: 100%;
	width: 100%;
}
body {
	font: 0.625em/1em Arial, Tahoma, Verdana, sans-serif;
	background: #FFF;
	color: #000;
}
a img, :link img, :visited img {
	border: 0;
	text-decoration: none;
}
table {
	border-collapse: collapse;
}



ul li {
	list-style:none;
}

a,
a:visited,
a:hover {
	color: #000;
	text-decoration: underline;
}
a:hover {
	color: #F00;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
input {
	vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

/* Clearfix
--------------------------------------------------------------------------*/
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

/* Common styles
--------------------------------------------------------------------------*/
.left_align {text-align: left;}
.right_align {text-align: right;}
.center_align {text-align: center;}
.bold_text {font-weight: bold;}
.no_bold {font-weight: normal;}

.hide {display: none;}
.is_block {display: block;}
.is_inline {display: inline;}

.overflow_hidden {overflow: hidden;}
.clear_both {clear: both;}
.float_left {float: left;}
.float_right {float: right;}