body {
font-family:sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	font-family:sans-serif;
	text-transform:uppercase;
	font-weight:700;
	padding:20px 0;
}

p {
	font-family:sans-serif;
}


.left-side{
	background: #ff4200;
	min-height: 200px;
	margin: 10px;
	color:#fff;
}
.right-side{
	background: #EFEFEF;
	min-height: 200px;	
	margin: 10px;
}
.more-info{
	color: #1D7FC3;
	font-weight:bold;
}
.container-fluid{
	padding-right:0px;
	padding-left:0px;
}

.certificates-sidebar {
    width: 100%;
    padding: 20px;
    background: #efefef;
    border-radius: 5px;
	border: 1px solid #f2f2f2;
	border-top: 5px solid #ff4200;
}

.profile-details {
    border-radius: 5px;
	border: 1px solid #f2f2f2;
	border-top: 5px solid #ff4200;
	padding:20px;
}

.course-history {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
	border: 1px solid #f2f2f2;
	border-top: 5px solid #ff4200;
    margin: 5px auto;
}

.course-history p {
	padding:10px;
	border-bottom:1px solid #efefef;
}

input[type=submit], .bulls-btn {
	padding:8px 30px;
	border:4px solid #ff4200;
	border-radius:3px;
	background:transparent;
	color:#ff4200;
	font-family:sans-serif;
}

input[type=submit]:hover {
	color:#fff;
	background:#ff4200;
	transition:0.2s;
	cursor:pointer;
	text-decoration:none;
}

.logo {
    width: 213px;
    height: 36px;
    background: url('http://i.imgur.com/fd8Lcso.png') no-repeat;
    margin: 30px auto;
}

.login-block {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
	border: 1px solid #f2f2f2;
	border-top: 5px solid #ff4200;
    margin: 50px auto;
}

.login-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: sans-serif;
    padding: 0 20px 0 20px;
    outline: none;
}

.login-block input[type=checkbox]{width:auto; height:auto;margin-right:10px;}

.login-block select {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: sans-serif;
    padding: 0 20px 0 20px;
    outline: none;
}

.login-block input#username {
    background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#username:focus {
    background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #ff4200;
}

.login-block input[type="submit"] {
    width: 100%;
    height: 40px;
    background: #ff4200;
    box-sizing: border-box;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: sans-serif;
    outline: none;
    cursor: pointer;
	padding-left: 0px;
	padding-right:0px;
}

.login-block input[type="file"] {
	border:none;
}

.login-block input[type="submit"]:hover {
    opacity: 0.7;
}
.login-block input[type="radio"] {
    width: auto;
	height: auto;
}

/* Navigation */

.navbar {
	background:#ff4200;
	border:none;
	border-radius:0px;
}

.navbar-inverse .navbar-nav>li>a {
	color:#fff;
}

.navbar-inverse .navbar-nav>li>a:hover {
	opacity:0.8;
}

/* Helptip Stuff */

.help-tip{
	float: right;
	margin-left: 10px;
	text-align: center;
	background-color: #BCDBEA;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 14px;
	line-height: 26px;
	cursor: default;
}

.help-tip:before{
	content:'?';
	font-weight: bold;
	color:#fff;
}

.help-tip:hover p{
	display:block;
	transform-origin: 100% 0%;

	-webkit-animation: fadeIn 0.3s ease-in-out;
	animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{	/* The tooltip */
	display: none;
	text-align: left;
	background-color: #1E2021;
	padding: 20px;
	width: 300px;
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	color: #FFF;
	font-size: 13px;
	line-height: 1.4;
	margin-left: 40px;
	position: relative;
    bottom: 30px;
    right:350px;
}

.help-tip p:before{ /* The pointer of the tooltip */
	position: absolute;
	width:0;
	height: 0;
	border:6px solid transparent;
	border-bottom-color:#1E2021;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
	width:100%;
	height:40px;
	content:'';
	position: absolute;
	top:-40px;
	left:0;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
	0% { 
		opacity:0; 
		transform: scale(0.6);
	}

	100% {
		opacity:100%;
		transform: scale(1);
	}
}

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

/* Data Tables */

.bulls-jquery-tables {
	border:2px solid #efefef;
	border-radius:4px;
}

footer {
	background:#1C1C1C;
}

footer p {
	padding:15px 30px;
	color:#B8B8B8;
}

footer p a {
	color:#fff;
}

footer p a:hover {
	color:#00B0E9;
	text-decoration:none;
}

/* Admin Main Menu */

.mainmenu-box {
	width:100%;
	min-height:350px;
	border-radius:5px;
	border:4px solid #ff4200;
	position:relative;
	margin:20px 0;
}

/* jQuery Select Union */

/*
#select-union select {
	width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: sans-serif;
    padding: 0 20px 0 20px;
    outline: none;
}
*/

.mainmenu-box div {
	/*margin-top:10%;*/
	position:absolute;
	width:100%;
	text-align:center;
	padding:20px;
}

.mainmenu-box div p, .mainmenu-box div h2, .mainmenu-box div a {
	width:100%;
	text-transform:uppercase;
}

.mainmenu-box h2 {
	color:#ff4200;
}

.mainmenu-box div a {
	display: block;
	margin-top:5px;
}

/*
.mainmenu-box div a:hover {
	background:#fff;
	text-decoration:none;
}
*/

/* Event Details page */

.event-container {
	padding:20px;
	border:4px solid #1D7FC3;
	border-radius:4px;
	margin-bottom:40px;
}

.req-cert {
	font-weight:bold;
	color:#1D7FC3;
}

.req-cert-item {
	font-weight:bold;
}

.event-description, .event-where, .event-spaces {
	font-size:1.2em;
}

.course-type {
	padding-top:0;
}
select#union-select{
width: 300px;
height: 100px;
}

@media(min-width:980px){
.container{
	min-height: 530px;
}
}