/*
The following stylesheet was taken from Chip's mockup at: http://mx-chipd.rhcloud.com/css/media-exchange.css
*/

/* Media Exchange Admin and Partner Tool - CSS Document */

/* Foundational */
h1, h2, h3, p, body, li, td, th, span {font-family: 'Lato', sans-serif;}
a {color: #1B6B9E;}


body {
	margin: 0px;
}
.loader {
	z-index: 1;
}

.loader--active {
	background: rgba(0,0,0,.7) none;
	bottom: 0;
	left: 0;
	position: fixed;
    right: 0;
    top: 0;
}

.loader--active .loader-circle,
.loader--active .loader-line-mask {
	display: block;
}

.loader-circle {
	border-radius: 50%;
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .1);
	display: none;
	height: 120px;
	left: 50%;
	margin-left: -60px;
	margin-top: -60px;
	position: absolute;
	top: 50%;
	width: 120px;
}

.loader-line-mask {
	-ms-animation: rotate 1.2s infinite linear;
	-webkit-animation: rotate 1.2s infinite linear;
	-moz-animation: rotate 1.2s infinite linear;
	-o-animation: rotate 1.2s infinite linear;
	animation: rotate 1.2s infinite linear;
	display: none;
	height: 120px;
	left: 50%;
	margin-left: -60px;
	margin-top: -60px;
	-webkit-mask-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	overflow: hidden;
	position: absolute;
	top: 50%;
	-webkit-transform-origin: 60px;
	-moz-transform-origin: 60px;
	transform-origin: 60px;
	width: 60px;
}

.loader-line {
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .75);
	width: 120px;
}

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

@-webkit-keyframes fade {
	0% {
		opacity: 1;
	}
	50% {
		opacity: .25;
	}
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* This works because the border width decreases as we go down the element,
	and technically the colorized content is the shown border
*/
.down-arrow:after {
	content: ' ';
	border-color: #9e9393 transparent;
	border-style: solid;
	border-width: 6px 6px 0px 6px;
	height: 0px;
	width: 0px;
	position: relative;
	top: 1em;
	left: 0.25em;
}

.up-arrow:after {
	content: ' ';
	border-color: #9e9393 transparent;
	border-style: solid;
	border-width: 0px 6px 6px 6px;
	height: 0px;
	width: 0px;
	position: relative;
	top: -0.75em;
	left: 0.25em;
}

dl.one-liners dt {
	display: inline-block;
}

dt::after {
    content: ': ';
	white-space: pre;
}
dl.one-liners dd {
	display: inline;
	margin: 0
}

dl.one-liners dd::after {
	display: block;
	content: ''
}


/*# sourceMappingURL=index.css.map*/