﻿/* CSS layout */
#left_col {
	width: 175px;
	position: absolute;
	left: 0px;
	top: 0px;
}

#right_col {
	width: 175px;
	position: absolute;
	top: 0px;
	right: 0px;
}

#page_content {
	margin-right: 180px;
	margin-left: 180px;
}
	
#container {
	position: relative;
	width: 100%;
}


/* Buttons */

.clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.button {
    background: url('../img/bg_button_6.gif') no-repeat right top;
    color: #00008B;
    display: block;
    float: left;
    font: bold 12px arial, sans-serif;
    height: 19px;
    margin-right: 6px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
}

a.button:active {
    background-position: bottom right;
    color: #000;
    outline: none; /* hide dotted outline in Firefox */
}


