html, body 
{
	background-color: white;
    margin: 0px;
}

img
{
	position:absolute;
	width:68%;
	min-width: 700px;
}

p
{
	padding-left:15px;
	font-size: 18;
	font-weight: bold;
}

.button
{
    outline: none;
	border-radius: 13px;
	padding:8px;
	margin:10px;
	background-color: LightGray;
	color: gray;
	border: none;
	font-size: 18;
}

/* Style the active class, and buttons on mouse-over */
.active, .button:hover 
{
	background-color: #f3ae4e;
	color: #5f3a07;
}

.main
{
	width: 150px;
	font-weight: bold;
	color: gray;
	border-radius: 10px;
}

.mainActive 
{
  background-color: #f3ae4e;
  color: #5f3a07;
}

.sub
{
	background:none;
	font-weight: bold;
}

.subActive 
{
  background-color: #f3ae4e;
  color: #5f3a07;
}

.buttonNone
{
	background-color: transparent;
	border-radius: 15px;
	padding:8px;
	margin:10px;
}

#optionContainerDiv
{
   position:block;
   width:100%;
}

#controlContainer
{
	float: right;
	width: 30%;
	min-width: 300px;
	height:90%;	
	overflow: auto;
}
#container
{
	height:90%;
	min-width: 1000px;
}

.dot {
	height: 25px;
	width: 25px;
	/*Do not change the background-color from rgb. It is necessary for the HighlightToggle function. The background colour is partially controlled by this function. */
	background-color: rgb(211, 211, 211);
	border-radius: 50%;
	border: none;
	display: relative;
    vertical-align: top;
	padding-left:0px;
	margin:1px;
}

.dot:hover {
	/*Do not change the background-color from rgb. It is necessary for the HighlightToggle function. The background colour is partially controlled by this function. */
	background-color: rgb(243, 174, 78);
}

#toesDiv
{
	/*stops toggle elements getting too close to img on a small screen*/
	margin-left: 10px;
}

#sockDiv
{
	/*stops toggle elements getting too close to img on a small screen*/
	margin-left: 10px;
}

.toggle
{
	display: inline-block
}

.toggleButton, .toggleButton:hover ~ .dot 
{
	border-radius: 13px;
	margin:1px;
	margin-bottom: 20px;
	display: relative;
/*Do not change the background-color from rgb. It is necessary for the HighlightToggle function. The background colour is partially controlled by this function. */
	background-color: rgb(243, 174, 78);
}

a:link 
{
  text-decoration: none ;
  color: black;
}

a:visited {
  color: black;
}

.arrow 
{
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

/*Makes a left arrow for back button*/
.left 
{
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}