
/* Various helper classes */

.n-hidden {
  display: none /*!important*/;
}

.n-full-width {
  width: 100%;
}

.n-full-height {
  height: 100%;
}

.n-full {
  width: 100%;
  height: 100%;
}

.n-full-a {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.n-full-r {
  position: relative;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.n-cover {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.n-cover-viewport {
  position: fixed;
  left: 0px; right: 0px; top: 0px; bottom: 0px;
  margin: 0; padding: 0;
}

.n-relative {
  position: relative;
}

.n-no-overflow {
  overflow: hidden;
}

.n-auto-overflow {
  overflow: auto;
}

.n-no-margin {
  margin: 0;
}

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


.no-js div.n-only-if-no-js {
  display: block;
}

.js div.n-only-if-no-js {
  display: none;
}

.no-js div.n-only-if-have-js {
  display: none;
}

.js div.n-only-if-have-js {
  display: block;
}


.n-no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.n-can-select {
  -webkit-touch-callout: all;
  -webkit-user-select: all;
  -khtml-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
}

.n-can-select-text {
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.n-nowrap {
  white-space: nowrap;
}


.green {
	color: #00BA65;
}

/* Hover color for green links */
.green.link:hover {
	color: #02A359;
}

.red {
	background: red;
}

.red:hover, .red:focus, .red[disabled], .red[disabled]:hover, red[disabled]:focus {
	background: rgb(173, 0, 0);
}


ul.n-data-list {
  list-style-type: none;
  list-style-position: outside;
  display: table;
}

ul.n-data-list li:nth-child(odd) {
  background-color: #555;
  display: table-row;
}

ul.n-data-list li:nth-child(even) {
  display: table-row;
}


/* Vertically centering block */
.n-centering-container {
  text-align: center;
  white-space: nowrap;
  font-size: 0px;
}
.n-centering-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.n-centered {
  text-align: initial;
  display: inline-block !important;
  vertical-align: middle;
  font-size: initial;
  white-space: normal;
}

.n-h-centered {
  display: inline-block;
  margin: 0 auto !important;
}


/* Hide the Javascript support nagger if JS is detected to be available by Modernizr.
   See: assets/pages/common/nojs.jade .
 */
.js #nojs {
  display: none;
}


/* View manager */

.n_view_root {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: auto !important;
  margin: 0px;
  padding: 0px;
  border: 0px;
}



/* Foundation modifications */

button.button {
  background-color: #336600;
  border-radius: 5px;
}

button.button:hover {
  background-color: #669900;
}

.reveal-overlay {
  overflow-y: hidden;
}
