/******************************************************************
Stylesheet: Main Stylesheet
******************************************************************/

/******************************************************************
COLORS
******************************************************************
Blues
Carolina Blue: 56a0d3
Cerulean: 86fff6

Grays
Text: 333333
Dark Grey: 828282
Medium Grey: afafaf
Light Grey: efefef

Greens:
Callout Green: 4DB24C;
Dark Lime: 97ce25
Light Lime: b0d16e
Link Lime: b6ef3e

Other
Lavender: 968ab5


Normal spacing between objects: 3.333% 

/******************************************************************
CUSTOMIZED RESET VALUES + TOOLS
******************************************************************/
/*p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}*/
b,
strong,
.strong {
  font-weight: bold;
}
dfn,
em,
.em {
  font-style: italic;
}
small,
.small {
  font-size: 75%;
}
ul,
ol {
  padding: 0 0 0 1rem;
  list-style-type:disc;
}
dd {
  margin: 0;
}
.sidebar ul,
.sidebar ol,
.commentlist {
  list-style: none;
}

/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/*********************
TOOLS
*********************/
/* Force all paddings & borders to cut into element rather than expand: http://css-tricks.com/box-sizing/ */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mean-bar a{
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.hide-text {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

/* 
use the best ampersand 
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}

/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #bfe4f4;
  background: #d5edf8;
}
.alert-error {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #f8cdce;
  background: #fbe3e4;
}
.alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #deeaae;
  background: #e6efc2;
}

/*********************
BUTTONS
*********************/
.button,
.button:visited {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 15px 20px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 4px;
  background-color: #56a0d3;
  border: none;
  box-shadow: 0 1px 2px rgba(100, 100, 100, .3);
  text-align: center;
  font-weight: bold;
 }
.button:hover,
.button:visited:hover,
.button:focus,
.button:visited:focus {
  color: #fff;
  background-color: #97ce25;
}
.button:active,
.button:visited:active {
  background-color: #56a0d3;

}
.button.green {
	background-color: #4DB24C;
	color: #fff;
}
.button.green:hover,
.sidebar .button.green:hover {
	background-color: #449943;
	color: #fff;
}
.button.full-width {
	width: 100%;
}

/**********************
MARGINS
***********************/
.margin-top {
	margin-top: 1em;
}
.margin-bottom {
	margin-bottom: 1em;
}
.margin-left {
	margin-left: 1em;
}
.margin-right {
	margin-right: 1em;
}
.margin-vertical {
	margin: 1em 0;
}
margin-horizontal {
	margin: 0 1em;
}
margin-all {
	margin: 1em;
}