/**
 * Style file @
 *
 * This file is compiled into style.css
 */
@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i");
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/**
 * Breakpoints - Breakpoint slicer
 * https://github.com/lolmaus/breakpoint-slicer
 */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
/* Font stuff */
/* Easing */
/** 
 * Magic numbers
 */
/* ---------- Import grid system ---------- */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* ---------- Import fonts ---------- */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

a {
  background: transparent; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: 600; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

q:before,
q:after {
  content: '';
  content: none; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0; }

img.ntg_image {
  max-width: 20px;
  height: 20px;
 }


svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0;
  white-space: normal; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline; }

button,
input {
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
/*
 * IcoMoon
 * see @ http://jaydenseric.com/blog/fun-with-sass-and-font-icons
 */
/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: '';
    display: table; }
  .clearfix:after {
    clear: both; }

.overflow-hidden {
  overflow: hidden; }

.ellipsis {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-large {
  font-size: 125%; }

.link--text {
  display: inline-block;
  border-bottom: 1px dashed #DD6E1D;
  text-decoration: none; }

/**
 * Typography
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

html,
button,
input,
select,
textarea {
  font-family: "Lato", sans-serif; }

body {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  line-height: 1.4;
  font-weight: 400; }

h1 {
  line-height: 1.3;
  color: #173559;
  margin: 0 0 2.1rem;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  line-height: 1; }
  @media (max-width: 500px) {
    h1 {
      font-size: 2rem; } }
  @media (min-width: 501px) and (max-width: 767px) {
    h1 {
      font-size: 2.25rem; } }
  @media (min-width: 768px) {
    h1 {
      font-size: 2.625rem; } }
  h1 a {
    color: #555555;
    font-weight: 900; }
    h1 a:hover {
      color: #DD6E1D; }

h2 {
  line-height: 1.3;
  color: #173559;
  margin: 0 0 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 900; }
  @media (max-width: 500px) {
    h2 {
      font-size: 1.375rem; } }
  @media (min-width: 501px) and (max-width: 767px) {
    h2 {
      font-size: 1.875rem; } }
  @media (min-width: 768px) {
    h2 {
      font-size: 2.25rem; } }
  h2 a {
    color: #555555;
    font-weight: 900; }
    h2 a:hover {
      color: #DD6E1D; }

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #173559;
  margin: 0 0 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 700; }
  @media (max-width: 500px) {
    h3 {
      font-size: 1.125rem; } }

h3.introtitle {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #173559;
  margin: 0 0 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 700; }
  @media (max-width: 500px) {
    h3 {
      font-size: 1.125rem; } }


h4 {
  font-size: 1.125rem;
  line-height: 1.3;
  color: #555555;
  margin: 0 0 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 700; }
  @media (max-width: 500px) {
    h4 {
      font-size: 1rem; } }

p,
ul,
ol {
  max-width: 50rem; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

mark {
  background: #ff0;
  color: #000; }

p, pre {
  margin: 0 0 1.4rem; }

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 1.125rem; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

q:before, q:after {
  content: '';
  content: none; }

small {
  font-size: 1rem; }

large {
  font-size: 1.25rem; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

dl, ol, ul {
  margin: 0 0 1.4rem; }
  dl dl, dl menu, dl ul, ol dl, ol menu, ol ul, ul dl, ul menu, ul ul {
    margin: 0; }

dd {
  margin: 0 0 1.4rem; }

ul {
  padding: 0 0 0 1.5rem;
  list-style: disc; }
  ul.rteindent1 {
    padding: 0; }

ol {
  padding: 0 0 0 1.5rem;
  list-style: decimal; }
  ol.rteindent1 {
    padding: 0; }

ol ol {
  margin: 0;
  list-style: lower-alpha; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

/* ---------- Components ---------- */
.btn {
  padding: 0.7rem 1.05rem;
  background: #DD6E1D;
  border: 0;
  text-shadow: none;
  color: #ffffff;
  -webkit-transform: all 0.1s ease-in;
  -ms-transform: all 0.1s ease-in;
  transform: all 0.1s ease-in;
  font-size: 1.125rem; }
  .btn:hover {
    background-color: #CC4E02;
    color: #ffffff; }

.dropdown-menu > li > a {
  padding: 10px 20px; }

.filters .module-heading {
  padding: 0 0 0.7rem; }
  .filters .module-heading i {
    display: none; }

.filters .nav-item.active a {
  color: #CC4E02;
  padding-left: 0.7rem;
  background-color: transparent; }

.filters .nav-item a {
  padding: 0.7rem 0 0.7rem 0;
  display: block; }
  .filters .nav-item a:hover {
    color: #CC4E02;
    padding-left: 0.7rem; }

/**
 * List overview
 */
.dataset-list {
  max-width: 100%; }
  .dataset-list .dataset-content {
    font-size: 1rem; }
  .dataset-list .dataset-heading {
    font-size: 1.125rem; }

/**
 * Dataset page view
 */
.tag-list.well {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background-color: transparent; }

.additional-info {
  margin-top: 1.4rem; }

.resource-list {
  max-width: 100%; }

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  display: inline-block;
  height: auto;
  padding: 0.7rem 0.7rem;
  font-size: 1.125rem;
  line-height: 20px;
  color: #555555;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  vertical-align: middle; }

select, input[type="file"] {
  height: auto;
  line-height: 30px; }

.form-horizontal .control-label {
  padding-top: 0.875rem; }

label {
  font-size: 1.125rem; }

.input-group .input-group-addon, .input-group .input-group-addon {
  height: auto;
  padding: 0.7rem; }

.control-order-by label,
.control-order-by select {
  font-size: 0.875rem; }

.container,
.navbar-static-top .container {
  width: 1340px;
  max-width: 100%; }

.row {
  width: 100%;
  *zoom: 1;
  margin-left: 0; }
 
.row:before,
.row:after {
  display: table;
  line-height: 0;
  content: ""; }

 
.row:after {
  clear: both; }

.row [class*="span"]:first-child {
  margin-left: 0; }

@media (min-width: 768px) and (max-width: 1100px) {
  [class*="span"] {
    margin-left: 0; } }

@media (min-width: 768px) {
  .row .span12 {
    width: 100%;
    *width: 99.94680851063829%; 
	float: left;				}
  .row .span11 {
    width: 91.48936170212765%;
    *width: 91.43617021276594%;  
	float: left;				}
  .row .span10 {
    width: 82.97872340425532%;
    *width: 82.92553191489361%;  
	float: left;				}
  .row .span9 {
    width: 74.46808510638297%;
    *width: 74.41489361702126%;  
	float: left;				}
  .row .span8 {
    width: 65.95744680851064%;
    *width: 65.90425531914893%;  
	float: left;				}
  .row .span7 {
    width: 57.44680851063829%;
    *width: 57.39361702127659%;  
	float: left;				}
  .row .span6 {
    width: 48.93617021276595%;
    *width: 48.88297872340425%;  
	float: left;				}
  .row .span5 {
    width: 40.42553191489362%;
    *width: 40.37234042553192%;  
	float: left;				}
  .row .span4 {
    width: 31.914893617021278%;
    *width: 31.861702127659576%;  
	float: left;				}
  .row .span3 {
    width: 23.404255319148934%;
    *width: 23.351063829787233%;  
	float: left;				}
  .row .span2 {
    width: 14.893617021276595%;
    *width: 14.840425531914894%;  
	float: left;				}
  .row .span1 {
    width: 6.382978723404255%;
    *width: 6.329787234042553%; 
	float: left;				}
  .row .col-md-offset-12 {
    margin-left: 104.25531914893617%;
    *margin-left: 104.14893617021275%; }
  .row .col-md-offset-12:first-child {
    margin-left: 102.12765957446808%;
    *margin-left: 102.02127659574467%; }
  .row .col-md-offset-11 {
    margin-left: 95.74468085106382%;
    *margin-left: 95.6382978723404%; }
  .row .col-md-offset-11:first-child {
    margin-left: 93.61702127659574%;
    *margin-left: 93.51063829787232%; }
  .row .col-md-offset-10 {
    margin-left: 87.23404255319149%;
    *margin-left: 87.12765957446807%; }
  .row .col-md-offset-10:first-child {
    margin-left: 85.1063829787234%;
    *margin-left: 84.99999999999999%; }
  .row .col-md-offset-9 {
    margin-left: 78.72340425531914%;
    *margin-left: 78.61702127659572%; }
  .row .col-md-offset-9:first-child {
    margin-left: 76.59574468085106%;
    *margin-left: 76.48936170212764%; }
  .row .col-md-offset-8 {
    margin-left: 70.2127659574468%;
    *margin-left: 70.10638297872339%; }
  .row .col-md-offset-8:first-child {
    margin-left: 68.08510638297872%;
    *margin-left: 67.9787234042553%; }
  .row .col-md-offset-7 {
    margin-left: 61.70212765957446%;
    *margin-left: 61.59574468085106%; }
  .row .col-md-offset-7:first-child {
    margin-left: 59.574468085106375%;
    *margin-left: 59.46808510638297%; }
  .row .col-md-offset-6 {
    margin-left: 53.191489361702125%;
    *margin-left: 53.085106382978715%; }
  .row .col-md-offset-6:first-child {
    margin-left: 51.063829787234035%;
    *margin-left: 50.95744680851063%; }
  .row .col-md-offset-5 {
    margin-left: 44.68085106382979%;
    *margin-left: 44.57446808510638%; }
  .row .col-md-offset-5:first-child {
    margin-left: 42.5531914893617%;
    *margin-left: 42.4468085106383%; }
  .row .col-md-offset-4 {
    margin-left: 36.170212765957444%;
    *margin-left: 36.06382978723405%; }
  .row .col-md-offset-4:first-child {
    margin-left: 34.04255319148936%;
    *margin-left: 33.93617021276596%; }
  .row .col-md-offset-3 {
    margin-left: 27.659574468085104%;
    *margin-left: 27.5531914893617%; }
  .row .col-md-offset-3:first-child {
    margin-left: 25.53191489361702%;
    *margin-left: 25.425531914893618%; }
  .row .col-md-offset-2 {
    margin-left: 19.148936170212764%;
    *margin-left: 19.04255319148936%; }
  .row .col-md-offset-2:first-child {
    margin-left: 17.02127659574468%;
    *margin-left: 16.914893617021278%; }
  .row .col-md-offset-1 {
    margin-left: 10.638297872340425%;
    *margin-left: 10.53191489361702%; }
  .row .col-md-offset-1:first-child {
    margin-left: 8.51063829787234%;
    *margin-left: 8.404255319148938%; }
  [class*="span"].hide,
  .row [class*="span"].hide {
    display: none; }
  [class*="span"].pull-right,
  .row [class*="span"].pull-right {
    float: right; } }

/** 
 * Groups overview page
 */
.media-grid {
  padding: 0;
  margin: 0;
  max-width: 100%;
border: 0;
background: none transparent;
 }
  .media-grid .media-item {
    width: 100%;
    float: none;
    margin-left: 0; }
    .media-grid .media-item .media-heading,
    .media-grid .media-item > h3,
    .media-grid .media-item > p,
    .media-grid .media-item .count {
      margin-left: 120px;
      display: block; }
    .media-grid .media-item p,
    .media-grid .media-item .count {
      font-size: 0.875rem; }
  .media-grid .media-image {
    max-width: 100px;
    max-height: 100px;
    margin-right: 20px;
    float: left; }
  .media-grid .media-view:hover,
  .media-grid .media-view.hovered {
    -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-color: #b3b3b3; }

/* 
.media-grid {
	margin: 0;
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	border: 0;
	background: none transparent;
	@include from(tabletp) {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	&:before {
		display: none;
	}
	&:after {
	  content: "";
		width: 32%;
	}
	.media-item {
		border-color: $border-color;
		margin: 0;
		float: none;
		width: auto;
		box-shadow: 0 10px 20px rgba(0,0,0,0.05);
		@include to(phablet) {
			margin-bottom: vr(1);
		}
		@include at(tabletp) {
			width: 48%;
			margin-bottom: vr(1);
		}
		@include from(tabletl) {
			width: 32%;
			margin-bottom: vr(1);
		}
		p {
			@include font-size(14);
			line-height: 1.3;
		}
		.count {
			@include font-size(14);	
		}
	}
	.clearfix {
		display: none;
	}
}
.media-view:hover, 
.media-view.hovered {
	box-shadow: 0 10px 25px rgba(0,0,0,0.1s);
	border-color: darken($border-color,10%);
} */
.navbar-static-top,
.account-masthead {
  margin: 0 auto; }

.account-masthead {
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1F1F5F), to(#1F1F5F	));
  background: -webkit-linear-gradient(#1F1F5F, #1F1F5F	);
  background: -o-linear-gradient(#1F1F5F, #1F1F5F	);
  background: linear-gradient(#1F1F5F, #1F1F5F	); }
  .account-masthead .account ul li {	
    border-color: #122945; }
    .account-masthead .account ul li a {
      line-height: 50px;
      padding: 0 1.4rem;
      font-size: 1rem; }
      .account-masthead .account ul li a:hover {
        background-color: #12125b; }
  .account-masthead [class^="icon-"], .account-masthead [class*=" icon-"] {
    font-size: 1.125rem; }
  .account-masthead .account.authed .image {
    padding: 0 1.4rem; }

.masthead {
  background: #1f1f5f none;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem; }
  .masthead .nav   li {
    margin: 0.5rem 0.7rem 0; }
    .masthead .nav   li.active a {
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none; }
      .masthead .nav   li.active a:after {
        background-color: #00C3E2;
        bottom: -2px;
        -webkit-box-shadow: none;
        box-shadow: none; }
    .masthead .nav   li a {
      margin: 0;
      border-radius: 0;
      padding-left: 0;
      padding-right: 0;
      position: relative; }
      .masthead .nav   li a:after {
        content: '';
        background-color: transparent;
        display: block;
        width: 100%;
        height: 3px;
        position: absolute;
        bottom: 2px;
        left: 0;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
      .masthead .nav   li a:hover {
        background-color: transparent; }
        .masthead .nav   li a:hover:after {
          background-color: #00C3E2;
          bottom: -2px;
          -webkit-box-shadow: none;
          box-shadow: none; }
  .masthead .navbar-collapse {
    padding-top: 0; }
  .masthead .site-search {
    margin: 0; }
    .masthead .site-search input {
      width: 18.75rem;
      padding: 0 1.4rem;
      font-size: 1rem;
      margin: 0;
      height: 50px; }
      .masthead .site-search input:focus {
        -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); }
    .masthead .site-search .icon-search {
      display: block;
      font-size: 1.5rem; }
    .masthead .site-search .btn-search {
      right: 15px;
      margin-top: -17px; }
  .masthead .simple-input .field .btn-search {
    height: 32px;
    width: 32px; }

.header-image img {
  width: 150px;
  margin-top: 5px; }

.badge[data-format]{
  padding: 0.35rem 0.7rem;
  text-shadow: none;
  border-radius: 4px; }

.badge[data-format]:hover {
    border-color: #CC4E02 !important;
    background-color: #CC4E02 !important; }


.badge[data-format=html], .badge[data-format*=html] {
  color: #55a1ce;
  border: 2px solid #55a1ce;
  background-color: transparent; }

.badge[data-format=json], .badge[data-format*=json] {
  color: #ef7100;
  border: 2px solid #ef7100;
  background-color: transparent; }

.badge[data-format=xml], .badge[data-format*=xml] {
  color: #ef7100;
  border: 2px solid #ef7100;
  background-color: transparent; }

.badge[data-format=text], .badge[data-format*=text] {
  color: #74cbec;
  border: 2px solid #74cbec;
  background-color: transparent; }

.badge[data-format=csv], .badge[data-format*=csv] {
  color: #243db7;
  border: 2px solid #243db7;
  background-color: transparent; }

.badge[data-format=xls], .badge[data-format*=xls] {
  color: #0a9e3e;
  border: 2px solid #0a9e3e;
  background-color: transparent; }

.badge[data-format=zip], .badge[data-format*=zip] {
  color: #686868;
  border: 2px solid #686868;
  background-color: transparent; }

.badge[data-format=api], .badge[data-format*=api] {
  color: #ec96be;
  border: 2px solid #ec96be;
  background-color: transparent; }

.badge[data-format=pdf], .badge[data-format*=pdf] {
  color: #e0051e;
  border: 2px solid #e0051e;
  background-color: transparent; }

.badge[data-format=rdf], .badge[data-format*=rdf], .badge[data-format*=nquad], .badge[data-format*=ntriples], .badge[data-format*=turtle] {
  color: #0b4498;
  border: 2px solid #0b4498;
  background-color: transparent; }

.badge[data-format=tab], .badge[data-format*=tab] {
  color: #744;
  border: 2px solid #744;
  background-color: transparent; }

.unstyled,
ul.nav-simple {
  padding-left: 0; }

/**
 * Mobile nav
 */
.masthead .navigation {
  margin: 0; }

@media (max-width: 767px) {
  .masthead .nav  {
    margin: 1.4rem 0; }
    .masthead .nav  li {
      margin: 0 !important; }
    .masthead .nav  a {
      padding: 1.05rem 0 !important; }
      .masthead .nav  a:focus {
        background-color: transparent; } }

@media (max-width: 1100px) {
  .masthead .navbar-btn {
    margin: 0.25rem 0 0;
    padding: 0.9375rem;
    background-color: #173559;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    .masthead .navbar-btn:hover, .masthead .navbar-btn:active, .masthead .navbar-btn:focus {
      -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
      margin: 0.25rem 0 0;
      background: #0d1d30; } }

.nav-simple a {
  padding: 0.7rem 0; }

.module .module-content {
  margin: 0;
  padding: 1.4rem 0; }

.module-heading {
  background-color: transparent;
  border-top: 0;
  border-bottom: 3px solid #00C3E2;
  padding: 30px 0 0.35rem !important;
  font-size: 1.5rem; }
  .module-heading i {
    font-size: 1.375rem;
    color: #a2a2a2; }

.search-form {
  *zoom: 1; }
  .search-form:before, .search-form:after {
    content: '';
    display: table; }
  .search-form:after {
    clear: both; }
  .search-form .search-input.search-giant input {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.05rem; }
  .search-form h2 {
    color: #173559;
    font-size: 2.25rem; }

.search-form .control-order-by select {
  width: auto; }

.table-condensed th,
.table-condensed td {
  padding: 0.7rem; }

.table-bordered {
  border-radius: 4px; }

a.tag {
  border-radius: 4px;
  background-color: transparent;
  border-color: #00C3E2;
  color: #2f2f5f;
  font-size: 0.875rem;
  padding: 0.35rem 0.7rem; }
  a.tag:hover {
    background-color: #CC4E02;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #993b02; }

.tag-list {
  max-width: 100%; }
  .tag-list li {
    margin-right: 0; }

.toolbar {
  margin-bottom: 1.4rem; }
  .toolbar .breadcrumb {
    color: #555555 !important; }
    .toolbar .breadcrumb .home {
      display: inline-block !important; }

.pill {
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-size: 1rem; }

.wrapper {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent none;
  border: 0;
  padding: 0; }

/* ---------- Design ---------- */
body {
  color: #555555;
  background-color: #ffffff; }
  @media (max-width: 767px) {
    body {
      padding: 0; } }

a {
  font-weight: 200;
  color: #DD6E1D;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in; }

[role=main], .main {
  background: #ffffff none;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  min-height: auto; }

.page-header {
  background-color: transparent;
  border: 0; }
  .page-header.module-content {
    margin-bottom: 2.8rem; }
  .page-header .nav-tabs {
    float: none;
    max-width: 100%; }

aside.secondary {
  margin-top: 2.45rem; }
  aside.secondary p,
  aside.secondary .btn {
    font-size: 1rem; }

.home .site-search {
  display: none; }

.homepage {
  background-color: #2f2f5f; }
  .homepage [role=main] {
    padding: 0; }
  .homepage .hero {
    background: -webkit-gradient(linear, left top, left bottom, from(#2f2f5f), to(#3f3f8f));
    background: -webkit-linear-gradient(#2f2f5f, #3f3f8f);
    background: -o-linear-gradient(#2f2f5f, #3f3f8f);
    background: linear-gradient(#2f2f5f, #3f3f8f);
    padding: 0 3%; }
    .homepage .hero .container {
      background: url("../img/big-shadow-background.png") no-repeat right bottom -150px;
      background-size: 434px 419px; }
      @media (max-width: 1680px) {
        .homepage .hero .container {
          padding-top: 1.4rem;
          padding-bottom: 1.4rem; } }
      @media (min-width: 681px) {
        .homepage .hero .container {
          padding-top: 2.8rem;
          padding-bottom: 2.8rem; } }
  .homepage .module-search {
    padding: 0;
    margin: 0 auto;
    max-width: 50rem;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .homepage .module-search .module-content .heading {
      color: #ffffff;
      margin-bottom: 1.4rem; }
      @media (min-width: 681px) {
        .homepage .module-search .module-content .heading {
          font-size: 2.625rem; } }
    .homepage .module-search .module-content {
      background-color: transparent;
      padding: 0; }
    .homepage .module-search .search-giant {
      margin-bottom: 1.4rem; }
      .homepage .module-search .search-giant input {
        padding: 1.4rem 1.75rem;
        font-size: 1.5rem;
        font-weight: 700; }
        .homepage .module-search .search-giant input:focus {
          -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); }
      .homepage .module-search .search-giant button {
        margin-top: -25px;
        height: 48px; }
        .homepage .module-search .search-giant button:hover i {
          color: #CC4E02; }
        .homepage .module-search .search-giant button i {
          font-size: 3rem; }
    .homepage .module-search .tags {
      padding: 0;
      background-color: transparent; }
      .homepage .module-search .tags h3 {
        font-size: 1.125rem;
        color: #ffffff;
        text-transform: none;
        padding: 0;
        margin: 0 0.7rem 0 0;
        line-height: 2.5rem; }
      .homepage .module-search .tags .tag {
        background-color: transparent;
        border: 1px solid #00C3E2;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #ffffff;
        padding: 0 1.05rem;
        font-weight: 400;
        display: inline-block;
        font-size: 1rem;
        margin: 0 0.35rem 0.35rem 0;
        line-height: 2.5rem; }
        .homepage .module-search .tags .tag:hover {
          background-color: #0d1d30;
          -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }

.homepage-intro {
  padding: 2.8rem 0;
  border-bottom: 2px solid #00C3E2; }
  .homepage-intro h1 {
    font-weight: 900 !important; }

@media (min-width: 681px) {
  .homepage-intro-text {
    font-size: 1.375rem; }
    .homepage-intro-text p:last-child {
      margin-bottom: 0; } }

.homepage-latest-data {
  border-bottom: 2px solid #00C3E2;
  padding: 2.8rem 0; }
  .homepage-latest-data .dataset-list {
    padding: 0; }
    @media (min-width: 768px) {
      .homepage-latest-data .dataset-list {
        margin-top: 1.54rem; } }

.homepage-updated-data {
  padding: 2.8rem 0; }
  .homepage-updated-data .dataset-list {
    padding: 0; }
    @media (min-width: 768px) {
      .homepage-updated-data .dataset-list {
        margin-top: 1.54rem; } }

.homepage-stats {
  text-align: center; }
  .homepage-stats ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  .homepage-stats li {
    line-height: 1;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 29.33333%;
    margin-left: 0%;
    margin-right: 6%; }
    .homepage-stats li:before, .homepage-stats li:after {
      content: '';
      display: table; }
    .homepage-stats li:after {
      clear: both; }
    .homepage-stats li:last-child {
      margin-right: 0%; }
    .homepage-stats li a {
      color: #2f2f5f; }
      .homepage-stats li a:hover, .homepage-stats li a:focus {
        text-decoration: none;
        color: #CC4E02; }
        .homepage-stats li a:hover span, .homepage-stats li a:focus span {
          border-bottom-color: #ffffff; }
   /* .homepage-stats li b {
      font-weight: 900;
      display: block;
      color: #222; }
      @media (max-width: 680px) {
        .homepage-stats li b {
          font-size: 2rem; } } */
      .homepage-stats a b {
      font-weight: 900;
      display: block;
      font-size: 3.5rem;
      color: #222; }
      @media (max-width: 680px) {
        .homepage-stats a b {
        font-size: 3.5rem; } }

      @media (min-width: 681px) {
        .homepage-stats li b {
          font-size: 4.5rem; } }
      .homepage-stats li b span {
        display: inline-block;
        border-bottom: 5px solid transparent;
        margin-bottom: 0.3125rem; }

@media (min-width: 1101px) {
  .primary.span9 {
    padding-left: 2.5rem; } }

.site-footer {
  background: #fff;
  padding: 2.8rem 0; }
  .site-footer ul.unstyled {
    padding-left: 0; }
    .site-footer ul.unstyled li {
      margin-bottom: 0.7rem; }
  .site-footer a {
    color: #000000;
    font-weight: 400; }

.menu-footer {
  font-size: 0.875rem; }
  @media (max-width: 767px) {
    .menu-footer {
      margin-top: 1.4rem; } }
  .menu-footer ul {
    padding: 0;
    margin-bottom: 0;
    list-style: none; }
    @media (min-width: 768px) {
      .menu-footer ul {
        margin-left: 1.4rem; } }
  .menu-footer li {
    color: #000000;
    line-height: 1.8;
    display: inline-block;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem; }
    .menu-footer li:not(:last-child) {
      margin-right: 1.4rem; }
  .menu-footer a {
    display: inline-block;
    border-bottom: 1px solid #555555; }
    .menu-footer a:hover {
      text-decoration: none;
      border-bottom-color: #00C3E2;
      border-bottom-width: 2px;
      margin-bottom: -1px; }

/*# sourceMappingURL=style.css.map */
.topic-content {
  min-height: 230px;
}

.topics h3 {
  margin: 0;
  border-bottom: 3px dotted #D7D2CB;
  color: #1F1F5F;
  font-weight: bold;
  font-size: 22px;
  padding-bottom: 10px;
}

.topics p {
  font-size: 16px;
  margin-bottom: 0;
}

.topics div[class^="col"] {
  padding: 20px;
  transition: background 0.3s ease;
}

.topics div[class^="col"]:hover {
  background-color: #f4f2ef;
}

/* Fix Flask Debug toolbar scrolling */
#flDebug,
#flDebug * {
    overflow-y: auto;
}

/* Fix clone dataset button */
.clone-dataset > .btn.btn-sm.btn-primary {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  border-radius: 0.2rem;
}