/**** IDs ****/
#ultimate-dim {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
	z-index: 9000;
	}

#ultimate-box {
	position: relative;
	width: 90%;
	max-width: 760px;
	margin: 0 auto 40px auto;
	background-color: #ffffff;
	box-shadow: 0 0 5px #333333;
	border-radius: 2px;
	}

#ultimate-loader-dim {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
	}

#ultimate-loader-box {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	background-color: #999999;
	margin: 200px auto 0 auto;
	font-family: 'FontAwesome';
	text-align: center;
	font-size: 24px;
	color: #eeeeee;
	}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

#ultimate-loader-box span {
	display: inline-block;
	margin-top: 20px;
	-webkit-animation: spinner 1s infinite steps(8);
	animation: spinner 1s infinite steps(8);
	}

#ultimate-loader-text {
	position: relative;
	margin-top: 10px;
	text-align: center;
	color: #f0f0f0;
	font-size: 13px;
	}

#ultimate-popover {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000000;
	width: 100%;
	height: 100%;
	opacity: 0.98;
	overflow: hidden;
	}

/**** DIALOG ****/
.ultimate-title-gray {
	position: relative;
	height: 36px;
	background: -webkit-linear-gradient(#e1e1e1,#cccccc);
	background: linear-gradient(#e1e1e1,#cccccc);
	font-size: 14px;
	font-weight: 400;
	padding: 0 0 0 14px;
	line-height: 34px;
	border: 1px solid #aaaaaa;
	border-radius: 2px;
	}

.ultimate-title-red {
	position: relative;
	height: 36px;
	background: -webkit-linear-gradient(#ff3b3b,#e50505);
	background: linear-gradient(#ff3b3b,#e50505);
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	padding: 0 0 0 14px;
	line-height: 34px;
	border: 1px solid #cd5c5c;
	border-radius: 2px;
	}

.ultimate-title-green {
	position: relative;
	height: 36px;
	background: -webkit-linear-gradient(#5ced5c,#1bb41b);
	background: linear-gradient(#5ced5c,#1bb41b);
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	padding: 0 0 0 14px;
	line-height: 34px;
	border: 1px solid #5ccd5c;
	border-radius: 2px;
	}

.ultimate-title-orange {
	position: relative;
	height: 36px;
	background: -webkit-linear-gradient(#ff6600,#e15a00);
	background: linear-gradient(#ff6600,#e15a00);
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	padding: 0 0 0 14px;
	line-height: 34px;
	border: 1px solid #ff6600;
	border-radius: 2px;
	}

a:link.ultimate-btn-gray, a:visited.ultimate-btn-gray {
	display: inline-block;
	height: 36px;
	border: 1px solid #aaaaaa;
	outline: none;
	border-radius: 2px;
	font-size: 13px;
	color: #000000;
	background: -webkit-linear-gradient(#e1e1e1,#cccccc);
	background: linear-gradient(#e1e1e1,#cccccc);
	line-height: 34px;
	text-align: center;
	text-decoration: none;
	padding: 0 16px;
	}
a:hover.ultimate-btn-gray {
	text-decoration: none;
	background: -webkit-linear-gradient(#e9e9e9,#e9e9e9);
	background: linear-gradient(#e9e9e9,#e9e9e9);
	}

a:link.ultimate-btn-filled, a:visited.ultimate-btn-filled {
	display: inline-block;
	color: #ebe8de;
	text-decoration: none;
	line-height: 50px;
	padding: 0 16px;
	background-color: #3268c2;
	border-radius: 3px;
	outline: none;
	}
a:hover.ultimate-btn-filled, a:active.ultimate-btn-filled {
	text-decoration: none;
	background-color: #b9d2ee;
	}

a:link.ultimate-btn-filled-g, a:visited.ultimate-btn-filled-g {
	display: inline-block;
	color: #666666;
	text-decoration: none;
	line-height: 50px;
	padding: 0 16px;
	background-color: #dddddd;
	border-radius: 3px;
	outline: none;
	}
a:hover.ultimate-btn-filled-g, a:active.ultimate-btn-filled-g {
	text-decoration: none;
	color: #282828;
	background-color: #e7e7e7;
	}

a:link.ultimate-btn-red, a:visited.ultimate-btn-red {
	display: inline-block;
	height: 32px;
	border: 1px solid #aaaaaa;
	outline: none;
	border-radius: 2px;
	font-size: 13px;
	color: #ffffff;
	background: -webkit-linear-gradient(#ff3b3b,#e50505);
	background: linear-gradient(#ff3b3b,#e50505);
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	padding: 0 16px;
	}
a:hover.ultimate-btn-red {
	text-decoration: none;
	background: -webkit-linear-gradient(#ff7979,#ff7979);
	background: linear-gradient(#ff7979,#ff7979);
	}

.ultimate-btn-left { float: left; margin-left: 0; margin-right: 4px; }
.ultimate-btn-right { float: right; margin-right: 0; margin-left: 4px; }
.ultimate-btn-responsive {
	width: 100%;
	text-align: center;
	}

@media (min-width: 658px) {
		.ultimate-btn-responsive {
			width: auto;
			text-align: left;
			}
	}

.ultimate-content {
	position: relative;
	padding: 14px 14px;
	overflow-x: hidden;
	overflow-y: auto; 
	}
	
.ultimate-buttons {
	padding: 14px;
	overflow: hidden;
	}
	
a:link.ultimate-x,a:visited.ultimate-x {
	display: block;
	position: absolute;
	top: 2px;
	right: 2px;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	text-decoration: none;
	font-family: 'FontAwesome';
	color: #282828;
	}
a:hover.ultimate-x {
	background-color: #f5f5f5;
	color: #000000;
	}

.ultimate-row {
	position: relative;
	width: 100%;
	overflow: hidden;
	}

#ultimate-error {
	position: relative;
	display: none;
	margin-top: 14px;
	width: 100%;
	background-color: #c40000;
	color: #ffffff;
	margin-top: 14px;
	text-align: left;
	overflow: hidden;
	font-size: 12px;
	border-radius: 2px;
	}

#ultimate-error p {
	padding: 6px 10px;
	margin: 0;
	}

.ultimate-btn-60 { width: 60px; }
