/*
 * reset css
 *
 * @author: Kien Wai
 * @version: 0.1
 */
 
 
/***** Global Settings *****/
html, body {
	border:0;
	margin:0;
	padding:0;
	font-size: 100%;
	background: #fff;
}

body {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 100%;
	color: #000;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote img {
	margin:0;
	padding:0;
}

/*
table {
	border-collapse:collapse;
	border-spacing:0;
}
*/

h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}

fieldset, img {
	border:0;
}

address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

li {
	/*list-style:none;*/
}

caption, th {
	text-align:left; 
}

/*blockquote:before, blockquote:after,
q:before, q:after {
	content: open-quote;
}

blockquote, q {
	quotes: "" "";
}*/

blockquote {
margin: 0px;
padding: 10px;
quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before { content: open-quote; font-weight: bold; }
blockquote:after { content: close-quote; font-weight: bold; }


abbr, acronym {
	border:0;
	font-variant:normal;
}

sup {
	vertical-align:text-top;
}

sub {
	vertical-align:text-bottom;
}
 
/***** Links *****/
a,
a:link,
a:visited,
a:hover {
	text-decoration:underline;
}

 
/***** Forms *****/
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}

input, textarea, select {
	font-size:100%;
}

legend {
	color:#000;
}

label {
	cursor:pointer;
}


/***** Global Classes *****/
 
.clear         { clear:both; }
.float-left    { float:left; }
.float-right   { float:right; }
 
.text-left     { text-align:left; }
.text-right    { text-align:right; }
.text-center   { text-align:center; }
.text-justify  { text-align:justify; }
 
.bold          { font-weight:bold; }
.italic        { font-style:italic; }
.underline     { border-bottom:1px solid; }
.highlight     { background:#ffc; }
 
.wrap          { width:960px;margin:0 auto; }
 
.img-left      { float:left;margin:4px 10px 4px 0; }
.img-right     { float:right;margin:4px 0 4px 10px; }
 
.nopadding     { padding:0; }
.noindent      { margin-left:0;padding-left:0; }
.nobullet      { list-style:none;list-style-image:none; }

.hide		   { display:none; }
