#slides {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 700px;
	height: 560px;
	overflow: hidden;
	float: left;
	background-color: #CCCC00;
}

#slides img {
	display: block;
	height: 100%;
	margin: auto;
}

#slide-buttons {
	display: inline-block;
	margin: 0;
	padding: 0;
	float: left;
}

#slide-buttons ul {
	padding: 0;
	margin: 0;
}

#slide-buttons li {
	height: 50px;
	width: 50px;
	list-style-type: none;
	background-color: #003300;
	font-size: 20px;
	color: #CCCC00;
	padding: 1.5em 1em 0em 1em;
	margin: 0;
	text-align: center;
	cursor: pointer;
	-webkit-user-select: none; /* webkit (safari, chrome) browsers */
	-moz-user-select: none; /* mozilla browsers */
	-khtml-user-select: none; /* webkit (konqueror) browsers */
	-ms-user-select: none; /* IE10+ */
}

#slide-buttons li a {
	margin: 0px;
	width: 200px;
	height: 100%;
}

#slide-buttons #imgindex {
	cursor: default;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
	background-color: #003300;
	color: #CCCC00;
}

#slide-buttons li:hover, #slide-buttons li a:hover {
	background-color: #CCCC00;
	color: #003300;
	-webkit-transition: background 0.1s linear;
	-moz-transition: background 0.1s linear;
	-ms-transition: background 0.1s linear;
	-o-transition: background 0.1s linear;
	transition: background 0.1s linear;
}
