/* 
 *  CSS Reset
 */
 
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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	/*vertical-align: baseline;*/
}

/* 
 *  remember to define focus styles! 
 */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* 
 *  tables still need 'cellspacing="0"' in the markup 
 */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}

/* 
 *  table.sb ~~ add class 'sb' to show borders 
 */	
table.sb {
	border-collapse:collapse; 
	border-spacing: 0;
	border-top:1px solid #CCCCCC; border-right:1px solid #CCCCCC;
}
table.sb caption, table.sb td, table.sb th {
	border-bottom:1px solid #CCCCCC; border-left:1px solid #CCCCCC; 
	text-align:left; 
}	

/* 
 *  table.hb ~~ add class 'hb' to hide borders 
 */	
table.hb {
	border:none;	
	border-collapse:collapse; 
	border-spacing: 0;
}
table.hb caption, table.hb td, table.hb th {
	border:none;	
	text-align:left; 
}

/* 
 *  tankek 
 */	
/* :link, :visited { text-decoration:none } */
a img,:link img,:visited img { border:none }

/*
 *  mainTable (sample table)
 */
table#mainTable {
	margin:0 auto; /* align center */
	border-collapse:collapse; 
	border-spacing: 0;

}
table#mainTable caption, table#mainTable td, table#mainTable th { 
	text-align:left; 
	background-color:#FFFFFF; 
}
	/* default css table inside #mainTable */
	table#mainTable table {
		border-collapse:collapse; 
		border-spacing: 0;
	}
	table#mainTable table caption, table#mainTable table td, table#mainTable table th {
		text-align:left; 
	}
		
/*
 *  align horizontally center
 */
.hCenter {
	float:left; clear:left;
	position:relative;
	left:50%;
	text-align:left;
	width:auto;
}
	.hCenter .hCenter_inner {
		position:relative;
		left:-50%;
	}

/*
 *  <hr> alternative: <div class="hr"><!-- --></div>
 */	
div.hr {
	margin:6px 0;
	padding:0;
	border:0; 
	border-top:1px solid #000; 
}

/*
 *  Firefox 3 hidden input fields
 */	
input[type=hidden] {
	visibility: hidden;
	height:0px;
	border:0px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	position:absolute;
}		
/*
 E
  N
   D
    */