@charset "UTF-8";
/* 	
Blogsy website main page CSS
Author : Sean Choe
*/

body {
	font-family: “Trebuchet MS”, Verdana, Arial, Helvetica, sans-serif;
	background-color: #d7d7d7;
	background-image: url(../images/main_background.jpg);
	margin: 0;
	padding: 0;
}

img {
	border: none;
}

a {
	text-decoration: none;
	color: #0092c8;
}

a:hover {
	text-decoration: underline;
}

#container {
	width: 1080px;
	margin: auto;
}

#wrap {
	width: 1080px;
	margin: auto;
	float: left;
}

#menu {
	width: 1080px;
	height: 43px;
	margin: 0;
	padding: 0;
	background-image: url(../images/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 0 17px;
}

#menu ul {
	float: left;
	margin: 0 0 0 120px;
	padding-top: 10px;
	list-style: none;
}

#menu li {
	float: left;
	margin: 0 50px 0 50px;
	font-size: medium;
	font-weight: bold;
	text-shadow: #ffffff 1px 1px 0;
}

#menu li a {
	color: inherit;
	text-decoration: none;
}

#menu li a:visited {
	color: inherit;
}

#menu li a:hover {
	color: #777777;
}

#main {
	width: 1026px;
	float: left;
	margin-left: 27px;
	background-image: url(../images/header_photo.jpg);
	background-repeat: no-repeat;
	background-color: white;
}

#devide {
	float: left;
	margin-left: 40px;
	width: 857px;
	height: 1px;
	background-image: url(../images/deviding_line.png);
	background-repeat: no-repeat;
}

#header p#header_main_text {
	color: white;
	font-family: Georgia;
	font-size: 34px;
	text-align: right;
	padding: 20px;
	margin-top: 250px;
	float: right;
	background: rgba(0, 0, 0, 0.9);
}

#content {
	width: 826px;
	float: left;
	font-size: small;
	color: #333333;
	padding: 0 100px 0 100px;
}

#footer {
	float: left;
	width: 1026px;
	font-size: x-small;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-left: 27px;
	background-color: white;
}

/* in case of iPad */
@media only screen and (max-device-width: 1024px) { 
	#container {
		width: 650px;
	}
	
	#wrap {
		width: 650px;
	}
	
	#menu {
		width: 650px;
		background-image: url(../images/menu_bg_mobile.png);
	}
	
	#menu ul {
		margin: 0 0 0 5px;
	}
	
	#menu li {
		margin: 0 30px 0 30px;
	}
	
	#main {
		width: 602px;
	}
	
	#header p#header_main_text {
		margin-top: 150px;
	}
	
	#content {
		width: 540px;
		padding: 0 20px 0 20px;
	}
	
	#footer {
		width: 602px;
	}
	
	img {
		max-width: 530px;
	}
}