/*  IAT 235 Project 2 Part 3 Wireframes
	Top Bars and Headers of Home Page - CSS | www.sfu.ca/~rllee/	*/

/* 1 orange, 1 blue, shades of grey, black and white*/
#mainSize{
	width:1280px;
	height:980px;
	background:beige;
}

#header{
	font-family:Arial;
}

#logo {
	width: 130px;
	height: 20px; /**with padding, height = 60px **/
	background:#B6B6B6;
	padding: 20px 20px 20px 20px; /**top right bottom left**/
	left:30px;
	position:relative;
	text-align:center;
}

#place{ /**needs to take over 1080px **/
	width:270px;
	height:20px;
	background:#E1E1E1;	
	font-size: 20px;	
	padding:20px 351px 20px 351px;	
	position:relative;
	left:200px;
	bottom:60px; /**position from top left corner**/
}

#changePlace{
	width:85px;
	height:20px;	
	padding: 10px 10px 30px 10px;	
	position:relative;
	left: 1170px;
	bottom: 120px;
}

.button {
	border-radius: 5px;
	background:#BEBEBE;
}

#postButton{
	text-align:center;
	position:relative;
}
.post{
	background:orange;
	width:350px;
	height:50px;
	left:30px;
	bottom:120px; /* position from top*/
	line-height:50px;
	border-radius:10px;
	padding:5px;
}
.post a{						/* makes the post div clickable */
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	text-decoration:none;
	z-index:10;
}
.search{
	background:white;
	width:455px;
	height:45px;
	left:350px;
	bottom:117px;
	border:1px solid black;
	line-height:50px;
}
.searchButton{
	width: 80px;
	height:45px;	
	left:350px;
	bottom:106px;
	background:#BEBEBE;
	line-height:24px;
	border-radius:10px;
	padding:5px;
}
.post, .search, .searchButton{
	display:inline-block;
}

#pageTitle{
	height:40px;
	padding:5px;
	position:relative;
}
.homeButton{
	background:#848484;
	width:110px;	
	border:1px solid black;
	border-radius:10px;
	right:892px;
	bottom:53px;
	text-align:center;
	color:white;
	line-height:40px;
	z-index:1;
}
.titleText{
	background:#66B9EE;
	width:1125px;
	left:145px;
	bottom:108px;
	text-indent:50px;
	font-size:25px;
	line-height:40px;
}
.homeButton, .titleText {
	display:inline-block;
}
