/* top of css:  from
   http://www.alexkatz.me/html5-audio/building-a-custom-html5-audio-player-with-javascript/ */

#pButton{
	height:60px; 
	width: 60px;
	border: none;
	background-size: 50% 50%;
	background-position: center;
}
.play {
    background: url('images/play.png') no-repeat;
}
.pause {
    background: url('images/pause.png') no-repeat;
}
/* end */ 

/* margin order is: top, right, bottom, left */ /** all h1 elements */
h1 {
	font-size: 2em;
	font-weight: bold;
	color: #222222;
	text-align: center;
}

p {
	font-family: Arial, sans-serif;
}

#audioPlayer {
    display: table;
    margin: 0 auto;
    padding-top: 8px;
}

/*.recordSide TD {*/
.recordSide {
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    border: solid #93BEE2 1px;
    color: white;
    background: black; /* #AAAAFF; */
}

.filterSelected , .tagSelected , .manualSelected {
    border: solid #93BEE2 1px;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    color: #000096;
    background: white; /* #AAAAFF; */
}

td.rotatedText {
    height:50px;
    -ms-transform:rotate(270deg); /* IE 9 */
    -moz-transform:rotate(270deg); /* Firefox */
    -webkit-transform:rotate(270deg); /* Safari and Chrome */
    -o-transform:rotate(270deg); /* Opera */
}

#topDiv {
    padding: 0px;
}

/*.tagButton {
    float: left;
}*/

.sbOnText {
	color: blue;
	font-size: 16px;
	text-align: center;
	background: white;
	/*margin-bottom: 2px;
	margin-top: 2px;*/
	margin: 0px;
}

.sbOffText {
	color: red;
	font-size: 16px;
	text-align: center;
	background: white;
	margin-bottom: 2px;
	margin-top: 2px;
}

.simpleButton {
    vertical-align: middle;
    background: white;
    color: black;
    display: inline-block;
    margin: 0px;
    padding: 2px;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
}

.playerButton {
    width: 4em;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simpleButtonGroup {
    /*display: inline-block;*/
    display: block;
    text-align: center;
}

.textEntryGroup {
    display: block;
    text-align: center;
}

#playDiv {
    margin-top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#infoDiv {
    /*display: table;
    margin: 0 auto;*/
    display: block;
    text-align: center;
}

#transferToPlaylist {
    display: block;
    width: 99%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#transferToWarehouse {
    display: block;
    width: 99%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

tbody {
    display: block;
    overflow-y: auto;
}

.ui-btn {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: red;
}

.ui-tabs-anchor {
    background-color: red;
}

#infoP {
    margin: 0px;
}

#page-content {
    padding: 0px;
}

.grayedText {
    opacity: 0.25; /* Real browsers */
    filter: alpha(opacity = 25); /* MSIE */
}

.sideBySideMessage {
	width: 50%;
	display: block;
	float: left
}
