* {
	/* include padding and borders in box height and width */
	box-sizing: border-box;
}

body {
	font-family: Verdana, arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FF6600;
	background-attachment: fixed;
	margin: 10px;
}

p {
	margin-top: 1rem;
	margin-bottom: .8rem;
}

td {
	margin: 2px;
	padding: 0;
	vertical-align: top;
}

a {
	text-decoration: none;
	color: #FF6600;
}

a:hover {
	text-decoration: underline;
	color: #000000
}

pre {
	font-family: Verdana, arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FF6600;
	text-align: left;
}

hr {
	background-attachment: fixed;
	background-image: url(images/hr.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5 {
	margin-top: 1rem;
	margin-bottom: .8rem;
}

h1 {
	font-size: 1.5rem;
}

h2 {
	font-size: 1.25rem;
}

h3 {
	font-size: 1.1rem
}

header {	
	display: flex;
	justify-content: space-between;
}

.container {
	display: flex;
	justify-content: center;
	/* Horizontal content alignment */
	align-items: flex-start;
	/* Vertical content alignment */
	height: calc(100vh - 20px);
	/* Full viewport height - body margins */
	flex-direction: row;
	max-width: 1200px;
	margin: auto;
	/* center div */
}

.main {
	order: 2;
	flex-grow: 1;
	height: stretch;
}

.top {
	margin: 10px 0;
}

.col {
	max-width: 100px;
}

.col-left {
	order: 1;
}

.col-right {
	order: 3;
}

.col-borders {
	min-height: 65%;
	overflow-y: auto;
	/* Scroll if content overflows */
	padding: 20px;
	border-color: #ff6600;
	border-style: solid;
	border-width: 10px;
	border-radius: 30px;
	box-shadow: inset rgba(0, 0, 0, 0.5) 5px 5px 5px, rgba(0, 0, 0, 0.5) 5px 5px 5px;
}

ul.menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	align-self: flex-end;
}

ul.menu li {
	float: left;
}

ul.menu li a {
	display: block;
	text-align: center;
	padding: 5px 10px;
}

ul.menu li a:hover {
	font-style: italic;
	text-decoration: underline;
}

ul.menu li:first-child a {
	padding-left: 5px;
}

ul.menu li:last-child a {
	padding-right: 5px;
}

@media (max-width:920px) {
	.container {
		flex-direction: column;
	}

	.main {
		order: 1;
		width: 100%;
	}

	.col-left {
		order: 2;
		width: 100%;
		margin: 0;
	}

	.col-right {
		order: 3;
		width: 100%;
		margin: 0;
	}
	header {
		flex-direction: column;
	}
	ul.menu {
		margin-top: 10px;
		align-self: flex-start;
	}
}

@media (min-width: 921px) {
	.main {
		margin: 0 20px;
	}
}

.txt {
	font-size: 16px;
	color: #FF6600;
}

.txtBig {
	font-size: 24px;
	font-weight: bold;
}

.txtSmall {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
}

.title {
	font-style: normal;
	font-weight: bold;
	color: #FF6600;
	text-decoration: none;
	font-size: 36px;
}

.artist {
	font-weight: bold;
	color: #FF6600;
	font-size: 24px;
}

.lyrics {
	color: #000000;
}

.album {
	color: #FF6600;
	font-style: italic;
}

.partnersite {
	color: #000000;
	font-size: 16px;
	font-family: Geneva, Arial, Helvetica, san-serif
}

.clsTDPartner {
	color: #000000;
	font-size: 16px;
	font-family: Geneva, Arial, Helvetica, san-serif;
	background-color: #e9e9e9;
}

.clsTable {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}

.clsTDHead {
	color: #ff6600;
	font-size: 16px;
	font-weight: bold;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FF6600;
}

.td1, .clsTD1 {
	color: #000000;
	vertical-align: top;
	padding: 4px;
}

.td2, .clsTD2 {
	color: #000000;
	background-color: #E9E9E9;
	vertical-align: top;
	padding: 4px;
}

.clsList {
	color: #000000;
	font-size: 16px;
	font-family: Geneva, Arial, Helvetica, san-serif;

}

.required {
	color: #ff0000;
}

.warning {
	color: #ff0000;
}

label {
	min-width: 30%;
	margin-bottom: 10px;
}

input,
select,
textarea {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1rem;
	border: 1px solid #ff6600;
}

input[type=submit],
input[type=reset] {
	width: 400px;
	padding: 14px;
	margin: 8px 0;
	border: 1px solid #ff6600;
	border-radius: 4px;
	cursor: pointer;
}

input[type=submit] {
	background-color: #ff6600;
	color: white;
}

input[type=reset] {
	background-color: #ffffff;
	color: #ff6600;
}

input[type=text],
input[type=password],
select {
	min-width: 68%;
	margin-bottom: 10px;
	border-radius: 4px;
	padding: 14px;
}

textarea {
	min-width: 68%;
	height: 150px;
	margin-bottom: 10px;
	border: 1px solid #ff6600;
	border-radius: 4px;
	padding: 10px;
}

header img,
form.img {
	max-width: 100%;
	height: auto;
}

.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0;
}

.form-flex .required {
	font-size: 0.9rem;
	;
}

.form-flex .required:before {
	content: "\000a"
}

.form-flex .buttons {
	width: 100%;
	align-items: end;
}

.form-inline {
	display: inline;
}

.form-inline input[type=submit],
.form-inline input[type=reset],
.form-inline input[type=text],
.form-inline input[type=password],
.form-inline select {
	min-width: auto;
	width: auto;
}

@media screen and (max-width: 992px) {

	label,
	input[type=text],
	input[type=submit],
	input[type=reset],
	select,
	textarea {
		flex: 100%;
		min-width: 100%;
	}
}