
/****************************** Normal weblinks *********************************/
img.orange:hover
{
	border-radius: 25%;
	background-color: #ffa200;
}

a:link
{
	color: #ffd284;
	text-decoration: underline;
}

@media (pointer: coarse)
{
	a:link
	{
		color: #ffd284;
		text-decoration: underline;
		padding: .8em;
		display: inline-block;
	}
}

a:visited
{
	color: #ffd284;
	text-decoration: underline;
}

@media (pointer: coarse)
{
	a:visited
	{
		color: #ffd284;
		text-decoration: underline;
		padding: .8em;
		display: inline-block;
	}
}

a:active
{
	color: #ffd284;
	text-decoration: none;
}

@media (pointer: coarse)
{
	a:active
	{
		color: #ffd284;
		text-decoration: none;
		padding: .8em;
		display: inline-block;
		border: 2px #ffcb70;
	}
}

a:hover
{
	color: #ffa200;
	text-decoration: none;
}

@media (pointer: coarse)
{
	a:hover
	{
		color: #ffa200;
		text-decoration: none;
		padding: .8em;
		display: inline-block;
		border: 2px #ffa200;
	}
}

/********************** Paragraphs, text body, and images *************************/

html
{
	font-family: Helvetica, Times, serif;
	font-size:100%;
}

body.mainBody
{
	color: #fff;
	background-color: #232426;
	width: 85%;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 25px;
	font-size: 1rem;
}

.infoParagraph
{
	margin-bottom: 0px;
	margin-top: 0px;
	font-size: 0.8rem;
	font-family: verdana, Times, serif;
}

.leftSegment
{
	width: 65%;
	float: left;
}

.rightSegment
{
	width: 30%;
	float: right;
	text-align: right;
}

.fullcentersegment
{
	width: 100%;
	float: left;
}

/* Small devices */
@media (max-width: 991px)
{
	div.header-image img
	{
		align="center";
		width: 100%;
		border-radius: 0%;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px)
{
	div.header-image img
	{
		align="center";
		width: 35%;
		border-radius: 0%;
	}
}

img
{
	border-radius: 5%;
}

.img-circle
{
	border-radius: 50%;
}

.counter img
{
    margin-right: 2px;
    float: left;
}

hr
{
	color: #fff;
	width: 100%;
}

div.container
{
	overflow: auto;
	width: 100%;
}

h1
{
	font-family: jura, Times, serif;
	color: #ffa200;
	font-size: 1.6rem;
}

h2
{
	font-family: Jura, Times, serif;
	color: #b3996c;
	font-size: 1.4rem;
}

h3
{
	font-family: Jura, Times, serif;
	color: #b3996c;
	font-size: 1rem;
	text-decoration: underline;
}

h4
{
	font-family: arial black, sans-serif;
	font-size: 1.4rem;
	line-height: 1%;
	text-decoration: none;
	text-transform: uppercase;
	color: #FFA200;
}

pre
{
	font-family: monospace;
	overflow-x: auto;
	background-color:  #3b3c40;
	padding-bottom: 1.2rem;
}

/**************************** Navigation Menu *****************************/

nav
{
	background-color: #FFA200;
	font-size: 1.25rem;
}

nav .main-content a
{
	font-weight: normal;
	letter-spacing: 0px;
	display: inline-block;
	color: black;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: Jura, Times, serif;
}

nav a:hover
{
	background-color: #282828;
	color: #FFA200;
	display: block;
	text-align: center;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

nav ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #FFA200;
}

/* Small devices */
@media (max-width: 991px)
{
	nav li
	{
		text-align: center;
		border-bottom: 2px solid #000000;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px)
{
	nav li
	{
		/* This forces a horizontal layout of the navigation bar */
		float: left;
	}
}

nav ul a
{
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	text-transform: uppercase;
	font-family: Jura, Times, serif;
}

nav ul a:hover, .dropdown:hover
{
	color: #FFA200;
    background-color: #282828;
}

nav .dropdown
{
    display: inline-block;
}

nav .dropdown a
{
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}

nav .dropdown-content
{
    display: none;
    position: absolute;
    background-color: #E87800;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

nav .dropdown-content a
{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

nav .dropdown-content a:hover
{
	color: #FFA200;
	background-color: #282828;
	text-align: center;
}

nav .dropdown:hover .dropdown-content
{
    display: block;
	text-align: center;
}

/**************************************************/
