/*
 * Globals
 */



/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }



/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base Bootstrap structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}
h1, .h1, h2, .h2, h3, .h3 {
  font-family: 'Mukta Malar', sans-serif;
}
h1, .h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
}
h2, .h2 {
  font-size: 1.9rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
h4{
  font-family: 'Allison', cursive;
  font-weight: medium;
  font-size: 6rem;
  margin-bottom: 25px;
}
p{
  font-size: .9rem;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-top: 25px;
}

.nav-link,
.dropdown-item,
.navbar-title {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.cover-container {
  max-width: 102em;
}
.d3-container {
  background-color: #3095B4;
  align: "center";
}



/*
 * Header
 */

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);

  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}


/*
 * Base d3 visualisation code
 */


a {
    font-style: normal;
    text-decoration: underline;
}

#main-wrapper {
    margin: 30px auto;
	max-width: 720px;
}


#chart {
    margin: 0px auto;
/*	max-width: 600px;*/

}

text {
    fill: #000;
/*    display: none;*/
}
text.occlabel {
	font-size: .9rem;
	text-anchor: middle;
}

.clr { clear: both; }
.centered { text-align: center; }
.hidden  { 
    display: none; 
    pointer-events: none;
}


