@charset "utf-8";


/*//////////////////////////////////////////////////

Title   : reset.css
For     : Resetting browser's default styles

Author  : Kooy Siew Na
Created : 2009-02-19
Modified: yyyy-mm-dd

----------------------------------------

Content : 1. Html, Body, Anchor
          2. Heading, Paragraph
          3. List
          4. Table
          5. Forms
          6. Quotation
          7. Others 

----------------------------------------

Colours :

#333 (grey)    : main text color
#185792 (blue) : main link color

----------------------------------------

Font size : 12px 
	  
//////////////////////////////////////////////////*/


/* ----------------------------------------
	1. Html, Body, Anchor
   ---------------------------------------- */
html {}
body { 
	margin: 0;
	padding: 0;	
	color: #333;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
}
img { behavior: url(js/iepngfix.htc) }

/* Anchor */
a:link,
a:visited { color: #185792; text-decoration: none; }

a:hover,
a:active { text-decoration: underline; }


/* ----------------------------------------
	2. Heading, Paragraph
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 { margin: 0 0 15px; padding: 0; color: #185792; }
h1 { font-size: 18px; }
h2 { font-size: 14px; }
h3 { font-size: 12px; }

p { margin: 0 0 10px; padding: 0; }


/* ----------------------------------------
	3. List
   ---------------------------------------- */
dl, ol, ul { margin: 0; padding: 0; }

ul, ol { list-style: none; }

li, dd { margin: 0 0 10px; }
	
dt {}


/* ----------------------------------------
	4. Table
   ---------------------------------------- */
table {
	width: 100%;
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
th {
	padding: 0;
	font-weight: bold;
}
td {
	padding: 0;
}

table.style {
	width: 100%;
	margin: 0;
	padding: 0;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
table.style caption {
	position: absolute;
	left: -9999px;
	font-size: 1%;
}
table.style th {
	padding: 3px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	text-align: left;
	vertical-align: top;
}
table.style td {
	padding: 3px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: left;
	vertical-align: top;
}

/* -- unused --
thead {}
tbody {}
tfoot {}
col {}
colgroup {}
*/

/* -- unused --
thead th {}
tbody th {}
tfoot th {}
*/


/* ----------------------------------------
	5. Forms
   ---------------------------------------- */
fieldset, form, label, legend { margin: 0; padding: 0; }
form     {}
fieldset { border:0; }
legend   { display: none; }
label {}

input, textarea, select {}

/* -- unused --
optgroup {}
option {}
*/


/* ----------------------------------------
	6. Quotation
   ---------------------------------------- */

blockquote { margin: 0; padding: 0; quotes: none; font-style: italic; }
cite { margin: 0; padding: 0; font-style: italic; }

/* -- unused --
q {	margin: 0; padding: 0; quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
*/


/* ----------------------------------------
	7. Others
   ---------------------------------------- */
   
/*  Inline-level elements
   ------------------------------- */
img {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: bottom;
}

em { 
	margin: 0; 
	padding: 0; 
	font-style: normal; 
}
strong { 
	margin: 0; 
	padding: 0; 
	font-weight: bold; 
}

/* -- unused -- 
span {}
abbr {}
acronym {}
dfn {}
code {}
var {}
samp {}
bdo {}
kbd {}
br {}
ins {}
del {}
param {}
sup {}
sub {}
big, font, s, small, strike, tt, b, u, i{}
*/

/*  Block-level elements
   ------------------------------- */
div { margin: 0; padding: 0; }
hr { display: none; }
address { margin: 0; padding: 0; font-style: normal; }

/* -- unused --
pre {}
applet {}
object {}
iframe {} 
noscript {}
center 
*/