/* CSS Document */

body {
	background-image: url("/images/win31back.png");
}

h1 {
	font-family: "Monotype Corsiva", "times New Roman";
	font-size: 72px;
	text-align: center;
}

img {
}

#main_window {
	height: 500px;
	width: 700px;
	margin: auto;
	border: double black 4px;
	background-color: lightgray;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.button {
	height: inherit;
	width: 70px;
	float: left;
}

.button:hover {
	background-color: #0000AA;
	color: white;
	cursor: pointer;
}

.button_text {
	font-family: sans-serif;
	font-weight: bold;
	font-size: 13px;
	padding-left: 10px;
	margin: auto;
	padding-top: 2px;
	padding-bottom: 2px;
}

.window {
	border: double black 4px;
	background-color: lightgray;
	float: left;
	width: 300px;
	height: 190px;
}

#inner_window {
	background-color: white;
	height: 100%;
	width: 100%;
}

.top_bar {
	background-color: #0000AA;
	height: 18px;
	width: 100%;
	border-bottom: thin solid black;
	display: inline-flex;
}

.top_bar_text {
	font-family: sans-serif;
	color: white;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	margin: auto;
	padding-top: 2px;
	padding-bottom: 2px;
}

#top_buttons {
	width: 100%;
	height: 20px;
	border-bottom: thin solid black;
}

.link_box {
	width: 75px;
	height: auto;
	float: left;
}

.link_box_top {
	width: 100%;
	text-align: center;
	height: 40px;
}

.link_box_bottom {
	width: 100%;
	height: 45px;
}

.link_text {
	font-family: sans-serif;
	text-align: center;
	font-size: 13px;
	margin: auto;
	color: black;
}

.link_text:hover {
	background-color: #0000AA;
	color: white;
	cursor: pointer;
}

img:hover {
	cursor: pointer;
}

.top_bar_menu_button {
	width: 18px;
	height: 100%;
	float: left;
	border-top: none;
	border-left: none;
	border-bottom: none;
	border-right: thin solid black;
	background-image: url("/images/icons/menu.png");
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: center;
	background-color: #0000AA;
}

.minimize_button {
	width: 18px;
	height: 100%;
	float: right;
	cursor: pointer;
	border: none;
	background-image: url("/images/icons/minimize.png");
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: center;
	background-color: #0000AA;
	margin-right: 1px;
}

.maximize_button {
	width: 18px;
	height: 100%;
	float: right;
	cursor: pointer;
	border: none;
	background-image: url("/images/icons/maximize.png");
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: center;
	background-color: #0000AA;
}
