/* CSS Document to support www.epicrealty.com.au */

/* resets */

* {
	margin:0;
	padding:0;
	}
	
img, a img { 
	border:0;
	}
	
a:focus {
	outline: none;
	}

a:link, a:visited {
	color: #910029;
	}

a:hover, a:active {
	color: #53565D;
	}

h2, h3, h4, p, label, ol, dl, fieldset, address { 
	margin:1em 1%; 
	}

#content ul  {
	margin:1em 1%; 
	}
	
#content li {
	margin: 0.5em 2%;	
	}

h1 {
	height: 75px;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: top left;
	margin-top:10px;
	}

h2 {
	font-size:130%;
	}
	
h3, h4 {
	font-size: 110%;
	}

dd 	{ 
	margin-left:5%;
	}

fieldset { 
	padding: .5em; 
	}

/* home specifics */
body#home h1 {
	margin:0;
	width:411px;
	float:right;
	}

body#home #animation {
	width: 400px;
	height: 307px;
	float: right;
	}

body#home h2 {
	width: 155px;
	height: 26px;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: top left;
	}

#quicksearch {	
	width: 160px;
	margin: 0 0 0 26px;
	}

#quicksearch p {	
	margin:0.3em 1%; 
	}

#quicksearch h2 {
	background: url(../img/hd_quicksearch.jpg) no-repeat top left;
	}
	
#quicksearch select {	
	width: 152px;
	font: 12px Trebuchet MS, Arial, Helvetica, sans-serif;
	height:22px;
	}
	
#quicksearch .left {
	float: left; 
	width: 70px;
	margin:0 0 0.3em 0; 
	}

#quicksearch .right {
	float: left; 
	width: 80px;
	}
	
#quicksearch #price select {
	width:73px;
	float:left;
	}

#quicksearch #priceTo {	
	margin: 0 0 0.3em 6px;
	}

input.searchBtn { 
	width: 62px;
	height: 20px;
	background: url(../img/btn_search.jpg) no-repeat top left;
	border:none;
	cursor:pointer;
	}
	
#quicksearch input.searchBtn { 
	margin-left: 92px;
	}

#quicksearch input.searchBtn:hover { 
	background: url(../img/btn_search.jpg) no-repeat bottom left;
	}

#featureProp {	
	width: 160px;
	margin: 0 0 0 26px;
	}

#featureProp h2 {
	background: url(../img/hd_featureProp.jpg) no-repeat top left;
	}

#featureProp .imgWrap {
	padding: 2px;
	border: 1px solid #a7a9ac;
	width: 154px;
	text-align: center;
	}
	
#featureProp .imgWrap img {
	width: 152px;
	}
	
#featureProp p {
	margin: 0.3em 1% 0 1%;
	}
	
a:link.detailsBtn, a:visited.detailsBtn {
	width: 62px;
	height: 20px;
	background: url(../img/btn_details.jpg) no-repeat top left;
	border:none;
	cursor:pointer;
	text-indent:-9999px;
	display:block;
	}
	
a:hover.detailsBtn, a:active.detailsBtn  {
	background: url(../img/btn_details.jpg) no-repeat bottom left;
	width: 62px;
	height: 20px;
	border:none;
	cursor:pointer;
	text-indent:-9999px;
	display:block;
	}	
#featureProp a:link.detailsBtn, #featureProp a:visited.detailsBtn {
	margin: 0 0 0 95px;
	}
	
/* sitewide layout */
	
.clear, .break 	{
	clear: both;
	}

body {
	background: #900028;
	font: 12px Trebuchet MS, Arial, Helvetica, sans-serif;
	letter-spacing:0.1em;
	text-align:left;
	color:#666666;
	}

#dropShadow {
	background: url(../img/bg_red_dropshadow.jpg) repeat-y top center;
	}

#curve {	
	background: url(../img/bg_curve.jpg) no-repeat top center;
	}

#container {
	background: #FFF url(../img/bg_content_red.gif) repeat-y top left;
	width: 760px;
	margin: 0 auto;
	height: auto;
	overflow-y: auto;
	overflow-x: hidden;
	/*border:1px solid green;*/
	}
	
a#logo {
	float: right;
	margin:0;
	display: block;
	width: 91px;
	height:203px;
	background: url(../img/logo.jpg) no-repeat top left;
	text-indent: -9999em;
	}

/* menu structure */

#menu {
	height: 33px;
	background: url(../img/bg_menu.jpg) repeat-x top left;
	_float: left;
	width: 669px;
	padding:20px 0 0 0;
	}

/* remove all list stylings */
ul.menu {
	border: 0;
	list-style-type: none;
	height:33px;
}



.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
	list-style-position: outside;
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 0 0 0;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */

/* menu superstylin */
		
.menu li a {
	background-position:top left;
	background-repeat:no-repeat;
	text-indent:-9999px;
	display:block;
	float:left;
	height: 33px;
	padding:0;
	margin:0;
	color:#FFF;
	}
	
.menu li a:hover {
	background-position:bottom left;
	background-repeat:no-repeat;
	border-bottom:none;
	color:#FFF;
	}

/* nav buttons */
.menu li a#mm_home {
	background-image: url(../img/mm_home.gif);
	width: 51px;
	}
.menu li a#mm_buying {
	background-image: url(../img/mm_buying.gif);
	width: 55px;
	}
.menu li a#mm_selling {
	background-image: url(../img/mm_selling.gif);
	width: 53px;
	}
.menu li a#mm_prop {
	background-image: url(../img/mm_prop.gif);
	width: 145px;
	}
.menu li a#mm_renting {
	background-image: url(../img/mm_lease.gif);
	width: 65px;
	}
.menu li a#mm_tenant {
	background-image: url(../img/mm_tenant.gif);
	width: 79px;
	}
.menu li a#mm_calcs {
	background-image: url(../img/mm_calc.gif);
	width: 78px;
	}	
.menu li a#mm_about {
	background-image: url(../img/mm_about.gif);
	width: 66px;
	}
.menu li a#mm_contact {
	background-image: url(../img/mm_contact.gif);
	width: 77px;
	}

/* active main nav buttons */
body#home .menu li a#mm_home {	
	background-position:bottom left;
	}
body#buying .menu li a#mm_buying {	
	background-position:bottom left;
	}
body#selling .menu li a#mm_selling {	
	background-position:bottom left;
	}
body#prop .menu li a#mm_prop {	
	background-position:bottom left;
	}
body#lease .menu li a#mm_renting {	
	background-position:bottom left;
	}
body#tenant .menu li a#mm_tenant {	
	background-position:bottom left;
	}
body#calcs .menu li a#mm_calcs {	
	background-position:bottom left;
	}
body#about .menu li a#mm_about {	
	background-position:bottom left;
	}
body#contact .menu li a#mm_contact {	
	background-position:bottom left;
	}

.menu li ul {
	padding: 0 0 0 5px;
	margin: 0;
	}
	
.menu li li a:link,
.menu li li a:visited {
	height: 24px;
	letter-spacing:normal;
	line-height:24px;
	text-decoration:none;
	color: #515050;
	text-indent: 1em;
	display: block;
	float: none;
	width:  180px;
	background-color: #dbdfe5;
	font-weight:bold;
	border-bottom:1px solid #900028;
	}
	
.menu li li a:hover {	
	color:#515050;
	background-color: #EFEFEF;
	border-bottom:1px solid #900028;
	}

#content {
	width: 660px;
	margin: 0 0 0 2px;
	_float:left;
	}
	
body#home #content {
	width: 430px;
	float:right;
	border-left: 1px solid #810024;
	margin: 16px 29px 0 0;
	}

#content .imgWrap {
	float:right;
	margin:1em 1%;
	padding: 2px;
	border: 1px solid #a7a9ac;
	}

#content .dynamicPic {
	width: 350px;
	}
	
#content .staffmember {
	width: 160px;
  	padding: 0px;
	margin: 0 0 30px 55px;
	_margin: 0 0 30px 40px;
    float: left;
	height:260px;
	}
	
#content .staffThumb {
	width: 100px;
	}

#content .dynamicStaff {
	width: 160px;
	}

/* graphic headings */
h1#hd_home {
	background-image: url(../img/hd_home.jpg);
	}
h1#hd_resiSales {
	background-image: url(../img/hd_resiSales.jpg);
	}
h1#hd_commSales {
	background-image: url(../img/hd_commSales.jpg);
	}	
h1#hd_marketApp {
	background-image: url(../img/hd_marketApp.jpg);
	}		
h1#hd_soldProps {
	background-image: url(../img/hd_soldProps.jpg);
	}		
h1#hd_whyEpic {
	background-image: url(../img/hd_why.jpg);
	}	
h1#hd_ourServices {
	background-image: url(../img/hd_ourServices.jpg);
	}
h1#hd_ownerInfo {
	background-image: url(../img/hd_owner.jpg);
	}	
h1#hd_testimonials {
	background-image: url(../img/hd_testimonials.jpg);
	}	
h1#hd_contact {
	background-image: url(../img/hd_contactUs.jpg);
	}	
h1#hd_resiRentals {
	background-image: url(../img/hd_resiRentals.jpg);
	}	
h1#hd_commLease {
	background-image: url(../img/hd_commLeases.jpg);
	}
h1#hd_rentingInfo {
	background-image: url(../img/hd_rentingInfo.jpg);
	}	
h1#hd_tenancyApp {
	background-image: url(../img/hd_tennApp.jpg);
	}	
h1#hd_repairRequest {
	background-image: url(../img/hd_repairRequest.jpg);
	}
h1#hd_vacatingNotice {
	background-image: url(../img/hd_vacateNotice.jpg);
	}	
h1#hd_payRent {
	background-image: url(../img/hd_payRent.jpg);
	}	
h1#hd_investCalc {
	background-image: url(../img/hd_investCalc.jpg);
	}
h1#hd_mortCalc {
	background-image: url(../img/hd_mortCalc.jpg);
	}
h1#hd_staff {
	background-image: url(../img/hd_staff.jpg);
	}	
h1#hd_companyInfo {
	background-image: url(../img/hd_companyInfo.jpg);
	}
h1#hd_awards {
	background-image: url(../img/hd_awards.jpg);
	}
h1#hd_emailFriend {
	background-image: url(../img/hd_sendToFriend.jpg);
	}	
h1#hd_propEnquiry {
	background-image: url(../img/hd_propEnquiry.jpg);
	}		
h1#hd_privacy {
	background-image: url(../img/hd_privacy.jpg);
	}		

	
/* pdf buttons */

.downloadPdf a:link, 
.downloadPdf a:visited {
	background: url(../img/ico_pdf.gif) no-repeat;
	display: block;
	height: 32px;
	padding-left: 40px;
}
.downloadPdf a:hover { 
	color: #484A4C;
}
.getAcrobat a:link, 
.getAcrobat a:visited {
	background: url(../img/ico_acrobat.gif) no-repeat 0 10px;
	border-top: 1px solid #a7a9ac;
	display: block;
	font-size: 10px; 
	height: 51px;
	line-height: 12px; 
	padding: 12px 0px 0px 98px; 
	text-decoration: none;
	width: 450px; 
}

#footer {
	background: #900028 url(../img/bg_footer.jpg) no-repeat top center;
	color: #a2576e;
	width:100%;
	}

#footer p {
	height:120px;
	margin:0 auto;
	line-height: 120px;
	text-align:center;
	}

#footer a:link, #footer a:visited {
	color: #a2576e;
	text-decoration:none;
	}
	
#footer a:hover, #footer a:active {
	color: #bf7b90;
	text-decoration:underline;
	}




	





	




