@charset "utf-8";

/*- Table Of Contents -------------------
	1.Semantic
	2.Layout Class
	3.List(ul,ol)
	4.table
---------------------------------------*/

/*--------------------------------------
	Semantic
--------------------------------------*/

a{ }
a:link {  }
a:visited {  }
a:hover, a:focus {  }
a:active {  }


.underline {
	text-decoration: underline;
}

.important {
	color: #f00;
}

a.link_blank {
	padding-left: 18px;
	background: url("/img/icon_blank.gif") no-repeat left center;
}

a.link_pdf {
	padding-left: 18px;
	background: url("/img/icon_pdf2.gif") no-repeat left center;
}

a.link_doc {
	padding-left: 18px;
	background: url("/img/icon_doc.png") no-repeat left center;
}

a.link_xls {
	padding-left: 18px;
	background: url("/img/icon_xls.png") no-repeat left center;
}

a.link_ppt {
	padding-left: 18px;
	background: url("/img/icon_ppt.png") no-repeat left center;
}

/*--------------------------------------
	Layout Class
--------------------------------------*/
.t_right {
	text-align: right;
}
.t_left {
	text-align: left;
}
.t_center {
	text-align: center;
}

.right {
	float: right;
}
img.right {
	float: right;
	margin: 0 0 15px 15px;
}

.left {
	float: left;
}
img.left {
	float: left;
	margin: 0 15px 15px 0;
}

section img[style*="float"]{
	margin: 5px;
}

.clear {
	clear: both;
}

.indent {
	text-indent: 1em;
}

/* clearfix */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}

img.shadow {
	box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.4);
	margin: 7px 5px 6px 15px;
	padding: 3px;
	border: 1px solid #bbb;
	background: #fff;
}

/*--------------------------------------
	List(ul,ol)
--------------------------------------*/
section ul,
section ol {
	margin-left: 0.5em;
}

section ol li,
section ul li {
	margin-left: 1em;
}

section ul.nomarker li, 
section ol.nomarker li {
	list-style-type: none;
	margin-left: 0;
}

/*--------------------------------------
	table
--------------------------------------*/
table th {
	vertical-align: middle;
}
table td {
	vertical-align: top;
}

table th,
table td {
	padding: 5px 10px;
}

table[border="1"] th,
table[border="1"] td {
	border: 1px #ccc solid;
}
