/*==========================================
                  GENERAL
==========================================*/
* {
	margin:0px;
	padding:0px;
}

body {
	background-color:#ffffff;
	font-family:Garamond;
	font-size:16px;
	color:#333333;
}

#page {
	width:900px;
	margin:auto;
}

/*-------------- LINK STYLE --------------*/

a.menu:link {color:#888888;text-decoration:none;font-weight:bold;font-size:18px;}
a.menu:visited {color:#888888;text-decoration:none;font-weight:bold;font-size:18px;}
a.menu:hover {color:#d4007d;text-decoration:none;font-weight:bold;font-size:18px;}

a.text:link {color:#d4007d;text-decoration:none;}
a.text:visited {color:#d4007d;text-decoration:none;}
a.text:hover {color:#ffffff;text-decoration:none;background-color:#d4007d;}

/*==========================================
                  HEADER
==========================================*/

#header {
	width:900px;
}

/*--------------- LOGO ---------------*/

#header div.logo {
	float:left;
	width:200px;
	height:130px;
}

/*--------------- TITLE ---------------*/

#header div.title {
	float:right;
	width:700px;
	height:130px;
}

div.title p {
	margin:96px 0 0 60px;
	font-size:40px;
	font-weight:bold;
	color:#aaaaaa;
}

/*==========================================
                  MAIN
==========================================*/

#main {
	width:900px;
	padding-top:60px;
}

/*--------------- SIDEBAR ---------------*/

#main div.sidebar {
	float:left;
	width:200px;
}

div.sidebar p {
	margin-bottom:10px;
	text-align:right;
}

/*--------------- CONTENT ---------------*/

#main div.content {
	float:right;
	width:700px;
}

div.content p {
	margin-left:60px;
	line-height:1.4;
}

/*--------------- SLIDER ---------------*/

#slider {
	margin-left:60px;
}

#slider ul, #slider li {
	list-style:none;
}

#slider li {
	width:640px;
	height:390px;
	overflow:hidden; 
}

#prevBtn, #nextBtn {
	display:block;
	width:24px;
	height:41px;
	text-align:center;
	position:absolute;
	top:190px;
	margin-left:60px;
}

#nextBtn {
	margin-left:669px;
}

#prevBtn a { 
	display:block;
	width:31px;
	height:31px;
	background:url(img/btn_prev.gif) no-repeat 0 0;	
}

#nextBtn a { 
	display:block;
	width:31px;
	height:31px;
	background:url(img/btn_next.gif) no-repeat 0 0;	
}

/*==========================================
                  FOOTER
==========================================*/

#footer {
	width:900px;
	margin:auto;
	padding-top:10px;
	border-top:1px solid #cccccc;
	font-size:14px;
	color:#888888;
}

#footer ul {
	float:left;
}

#footer li {
	display:inline;
	padding-right:10px;
}

p.copy {
	float:right;
	padding-bottom:40px;
}

/*==========================================
   FOR FIXING BUGS ON FIREFOX AND IE
==========================================*/

/* Float and background fix */
.clearfix:after {
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

/* Hides from IE-mac */
* html .clearfix {
	height:1%;
}

/* Takes care of the right-border dissapearing issue on FF */
* {
    -moz-box-sizing:border-box;
}