@charset "UTF-8";
/* CSS Document */

#main_container {
    position: relative;
    height: 780px;
    background-color: yellow;
    margin-right: auto;
    margin-left: auto;
    width: 960px;
}

#header {
    background-color: aqua;
    height: 120px;
    padding-left: 5px;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: aqua;
    padding-left: 10px;
}

#left_column {
    background-color: beige;
    float: left;
    width: 220px;
    height: 600px;
    padding-left: 10px;
    padding-right: 10px;
}

#left_column:hover {
    background-color: pink;
}

#right_column {
    background-color: white;
    float: left;
    height: 600px;
    padding-left: 10px;
    padding-right: 10px;
    width: 700px;
}

.pic-cap {
	background-color: beige;
	margin: 5px;
	padding: 5px;
	height: 400px;
	width: 240px;
	float: right;
}
body {
	font-family: Verdana, Geneva, sans-serif;
	line-height: 2;
	color: #960;
	font-size: smaller;
}