body
{
	background-color: #555555;
	margin: 0;
	padding: 0;
	font-family: calibri;
	font-size:14px;
}

#main_frame
{
	width: 1150px;
	height: 834px;
	background-color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 5px 5px 13px rgba(0,0,0,0.5);
}

#help_frame
{
	width: 65%;
	background-color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	padding: 13px 20px;
	font-size:16px;
	margin-top:10px;
	box-shadow: 5px 5px 13px rgba(0,0,0,0.5);
}

#top_bar
{
	width:100%;
	height:30px;
	background-color: #888;
	color: #EEEEEE;
	font-size: 17px;
	line-height:30px;
}

#top_bar a {
	color: #EEEEEE;
	text-decoration: none;
}

#top_bar a:hover {
	color: #000000;
}

#top_box_left
{
	float: left;
	padding-left: 15px;
}

#top_box_right
{
	float: right;
	padding-right: 15px;
}

#session_control_frame
{
	width: 100%;
	height: 34px;
	background-color: #DDD;
}

#session_control_left {
	float:left;
	width: 77%;
	font-size: 20px;
	line-height: 34px;
}

#session_control_right {
	float:right;
	width: 23%;
}

#content_frame {
	background-color: #FFFFFF;
}

.button, .btn-lg {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 98%;
	background-color: #f87643;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	font-size: 18px;
	line-height: 34px;
	text-decoration: none;
	border-radius: 0;
	border: 1px solid #f87643;
}

.button:hover, .btn-lg:hover {
	background-color: #fa9872;
	border: 1px solid #f87643;
}

.input-group-text {
    padding: 1rem 1.1rem;
	font-size: 1.3rem;
}

.alert {
	font-size: 18px;
}

#session_button {
	display: inline-block;
	text-align: center;
	width: 100%;
	text-decoration: none;
	color: rgba(0, 0, 0, 0.9);
	font-size: 18px;
	line-height: 34px;
	background-color: #222222;
	color: #FFFFFF;
}

#session_button:hover {
	color: #FFFFFF;
	background-color: #444444;
	text-decoration: none;
}

#session_message_label {
	width: 440px;
	position: absolute;
	display: block;
	left: 50%;
	margin-left: -220px;
	top: 100px;
	background-color: #d4edda;
	text-align: center;
	line-height: 42px;
	color: #155724;
	font-size: 20px;
	box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

/** EFFECTS **/

@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.fadeIn {
	-webkit-animation-name: fadeIn 1.0s;
	animation: fadeIn 1.0s;
}

@-webkit-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

.fadeOut {
	-webkit-animation-name: fadeOut 1.0s;
	animation: fadeOut 1.0s;
}

.grow {
	transition: all .15s ease-in-out;

}
.grow:hover {
	transform: scale(1.10);
}

.shake {
	animation:	0.4s ease-out 0s 1 shake;
}

@-webkit-keyframes shake {
  0% { transform: translateX(0px); }
  12% { transform: translateX(-30px); }
  25% {	transform: translateX(30px); }
  50% { transform: translateX(-30px); }
  75% { transform: translateX(30px); }
  100% { transform: translateX(0px); }
}

@keyframes shake {
  0% { transform: translateX(0px); }
  12% { transform: translateX(-30px); }
  25% {	transform: translateX(30px); }
  50% { transform: translateX(-30px); }
  75% { transform: translateX(30px); }
  100% { transform: translateX(0px); }
}