/* ---------------------------------------------------------------------

	Born:                2009-02-24
	Last Edit:           2009-02-29
	Author:              Switch IT (http://www.switchit.com.au)
	
	== CONTENT: ========================================================
	
	This stylesheet resets all the browser default styles
	
	== DEPENDENCY ========================================================
		
	print.css, ie.css, ie6.css
	
------------------------------------------------------------------------ */

* { 
	margin: 0; /*remove all default margins!*/
	padding: 0; /*remove all default padding!*/
}

body { 
	background: url(../../images/bg-site.gif) repeat-x #efeae6;
	font:normal 0.75em Arial, Helvetica, sans-serif;
}

body.homepage{
background-image:url(../../images/bg-site-home.gif);
}


img {
	border: none;
	 -ms-interpolation-mode:bicubic; 
	}

p {
	margin: 0 0 1.4em 0;
}

p, li{
	line-height:1.5em;
}

body a:link, body a:visited {
    color: #0083a9;
	text-decoration: none;
	outline: none; /*fixes firefox link outline*/
}

body a:hover {
	color:#14abd7;
	text-decoration: none;	
}

h1, h2, h3, h4, h5 {
	font:normal 2em/1.5em Arial, Helvetica, sans-serif;
	color: #000;
	margin: 0 0 0.75em 0;	
	line-height:1.3em;
}

h1{
	font-size:36px;
	margin:0.75em 0 0 0;
}

h2{
	font-size:2em;
}

h3{
	font-size:1.5em;
	margin:0.75em 0 1.5em 0;
}

h4{
	font-size:1.5em;
	font-weight: normal;
}


ul {
	margin: 0;
}

ul li {
	list-style-type: none;
	padding: 0;
	/*list-style:square inside url(images/bullet.gif);*/
}

ol {
	margin: 1.2em 0 0.9em 2.7em;
}

ol li {
	padding: 0 0 0.9em 0;
	
}

label {
	cursor: pointer;
}

table{
	border:0;
	margin:1.5em 0 1.8em 0;
	border-collapse:collapse;
}

select, select option, input{ 
	background:#fff;
	color:#000;
}

input, textarea, select{
	border:none;
	padding:3px 5px;
}



th{
text-align:left;
}

td{
	vertical-align:top;
}

fieldset{
	border:none;
}

.right{
	float:right;
}

.hidden{
	display:none;
}

.hotSpot{
position:absolute;
width:100px;
height:50px;
left:0;
top:0;
}


/* Clear Fix ------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}





