body {
	padding-top: 20px;
	padding-bottom: 40px;
}

.container-narrow {
	margin: 0 auto;
	max-width: 700px;
}
.container-narrow > hr {
	margin: 30px 0;
}


.home-container {
	margin: 15px 0;
	text-align: center;
}
.home-heading {
	font-size: 36px;
	color: #888;
	font-family: times;
	font-style: italic;
	font-weight: normal;
	margin-bottom: 20px;
}

h2.home-heading {
	font-size: 28px;
	color: #3a87ad;
}

#shortening-result {
	display: none;
}
#shorten-form {
	display: block;
}

.shortening-success #shortening-result {
	display: block;
}
.shortening-success #shorten-form {
	display: none;
}

.alert {
	display: none;
}

.spinner {
  display: inline-block;
  opacity: 0;
  width: 0;

  -webkit-transition: opacity 0.25s, width 0.25s;
  -moz-transition: opacity 0.25s, width 0.25s;
  -o-transition: opacity 0.25s, width 0.25s;
  transition: opacity 0.25s, width 0.25s;
}

.inline-display {
	display: inline-block;
}

.has-spinner.active {
  cursor:progress;
}

.icon-refresh-animate {
	animation-name: rotateThis;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes rotateThis {
	from { transform: scale( 1 ) rotate( 0deg );   }
	to   { transform: scale( 1 ) rotate( 360deg ); }
}

.muted {
	color: #999999;
	font-weight: bold;
}


.form-control {
	width: 95%;
}

.has-spinner.active .spinner {
  opacity: 1;
  width: auto; /* This doesn't work, just fix for unkown width elements */
}

.has-spinner.btn-mini.active .spinner {
    width: 10px;
}

.has-spinner.btn-small.active .spinner {
    width: 13px;
}


.has-spinner.btn.active .spinner {
    width: 16px;
}

.has-spinner.btn-large.active .spinner {
    width: 19px;
}

canvas {
    max-height: 250px;
}

.center-pills { display: inline-block; }

.navbar-brand {
	height: 78px !important;
	padding: 0px !important;
}

th,tr .small {
	width: 50px;
	text-align: left;
	font-size: 100%;
}

th,tr .medium {
	width: 100px;
	text-align: left;
	font-size: 100%;
}

th,tr .fixedlarge {
	max-width: 250px;
	word-break: break-all;
	text-align: left;
	font-size: 100%;
}

.floatcontainer:after{
  content: "."; 
  display: block;
  height: 0; 
  overflow:hidden;
   clear: both; 
  visibility:hidden; 
}
 /* Holly Hack Targets IE Win only \*/ 
* html .floatcontainer {
height: 1%;
}
/* End Holly Hack */