/*

HTML5 CSS Reset
Based on Eric Meyer's CSS Reset
and html5doctor.com HTML5 Reset

Copyright (c) 2011 736 Computing Services Limited
Released under the MIT license. http://opensource.736cs.com/licenses/mit

*/

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, audio, canvas, details, figcaption,
figure, footer, header, hgroup, mark, menu, meter, nav,
output, progress, section, summary, time, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

article, aside, dialog, figure, footer, header, 
hgroup, nav, section, blockquote { 
	display: block;
}

nav ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

ul ul {
	list-style: circle;
}

blockquote, q {
	quotes: none;
}

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

ins {
	text-decoration: underline;
}

del {
	text-decoration: line-through;
}

mark {
	background: none;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;	
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input[type="submit"], input[type="button"], button {
    padding: 0 !important;
    margin: 0 !important;
}

input, select, a img {
	vertical-align: middle;
}


/* ==========================================================================
   Grid
   ========================================================================== */
/*
 * Example uses:
 *
 * <div class="grid">
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 *
 * <div class="grid grid--center">
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 */
/* Grid core
   ========================================================================== */
/**
 * Grid container
 * Must only contain `.grid` or `.grid__cell` components as children.
 *
 * 1. Adjustment for child element margins.
 * 2. Ensure consistent default alignment/
 * 3. Remove inter-unit whitespace that appears between `inline-block` child
 *    elements. Work for all non-monospace font-families.  If you're using a
 *    monospace base font, you will need to set the `grid` font-family to
 *   `sans-serif` and then redeclare the monospace font on the `grid__cell`
 *    objects.
 * 4. Protect against WebKit bug with optimizelegibility.
 */
/* line 44, ../sass/vendors/_griddle.scss */
.grid {
  display: block;
  padding: 0;
  margin: 0 -10px;
  /* 1 */
  text-align: left;
  /* 2 */
  letter-spacing: -0.31em;
  /* 3 */
  text-rendering: optimizespeed;
  /* 4 */
}

/**
 * Opera hack
 */
/* line 58, ../sass/vendors/_griddle.scss */
.opera:-o-prefocus,
.grid {
  word-spacing: -0.43em;
  /* 3 */
}

/**
 * Child `grid` object adjustments
 * Used for more complex fixed-fluid hybrid grids.
 */
/* line 67, ../sass/vendors/_griddle.scss */
.grid > .grid {
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

/**
 * Grid units
 * No explicit width by default. Apply `.unit-x-y` classes.
 *
 * 1. Fundamentals of the non-float grid layout mechanism.
 * 2. Apply grid gutter.
 * 3. Controls vertical positioning of units.
 * 4. Keeps content correctly aligned with the grid direction.
 * 5. Reset text defaults.
 */
/* line 84, ../sass/vendors/_griddle.scss */
.grid__cell {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  /* 1 */
  margin: 0;
  padding: 0 10px;
  /* 2 */
  vertical-align: top;
  /* 3 */
  text-align: left;
  /* 4 */
  letter-spacing: normal;
  /* 5 */
  word-spacing: normal;
  /* 5 */
  text-rendering: auto;
  /* 5 */
}

/**
 * Modifier: horizontally center all grid units
 * Allows for automatic unit centering irrespective of the number of
 * units in the grid.
 */
/* line 104, ../sass/vendors/_griddle.scss */
.grid--center {
  text-align: center;
}

/**
 * Modifier: horizontally center one unit
 * Set a specific unit to be horizontally centered. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
/* line 114, ../sass/vendors/_griddle.scss */
.grid__cell--center {
  display: block;
  margin: 0 auto;
}

/* Proportional units
   ========================================================================== */
/*
 * Specify the proportional width of an object.
 * Primarily for, but not limited to, use with `.grid__cell` components.
 * Intentional redundancy build into each set of unit classes.
 */
/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-1-2--large, .unit-2-4--large, .unit-3-6--large, .unit-4-8--large, .unit-6-12--large {
  width: 50%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-1-3--large, .unit-2-6--large, .unit-4-12--large {
  width: 33.33333%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-2-3--large, .unit-4-6--large, .unit-8-12--large {
  width: 66.66667%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-1-4--large, .unit-2-8--large, .unit-3-12--large {
  width: 25%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-3-4--large, .unit-6-8--large, .unit-9-12--large {
  width: 75%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-1-5--large {
  width: 20%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-2-5--large {
  width: 40%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-3-5--large {
  width: 60%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-4-5--large {
  width: 80%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-1-6--large, .unit-2-12--large {
  width: 16.66667%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-5-6--large, .unit-10-12--large {
  width: 83.33333%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-1-8--large {
  width: 12.5%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-3-8--large {
  width: 37.5%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-5-8--large {
  width: 62.5%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-7-8--large {
  width: 87.5%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-1-12--large {
  width: 8.33333%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-5-12--large {
  width: 41.66667%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-7-12--large {
  width: 58.33333%;
}

/* line 61, ../sass/vendors/_griddle-build.scss */
.unit-11-12--large {
  width: 91.66667%;
}

@media (max-width: 991px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-2--medium, .unit-2-4--medium, .unit-3-6--medium, .unit-4-8--medium {
    width: 50%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-3--medium, .unit-2-6--medium {
    width: 33.33333%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-2-3--medium, .unit-4-6--medium {
    width: 66.66667%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-4--medium, .unit-2-8--medium {
    width: 25%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-3-4--medium, .unit-6-8--medium {
    width: 75%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-6--medium {
    width: 16.66667%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-5-6--medium {
    width: 83.33333%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-8--medium {
    width: 12.5%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-3-8--medium {
    width: 37.5%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-5-8--medium {
    width: 62.5%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-7-8--medium {
    width: 87.5%;
  }

  /* line 7, ../sass/base/_grid-builder.scss */
  .unit-1--medium {
    width: 100%;
  }
}
@media (max-width: 767px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-2--small, .unit-2-4--small {
    width: 50%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-3--small {
    width: 33.33333%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-2-3--small {
    width: 66.66667%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-4--small {
    width: 25%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-3-4--small {
    width: 75%;
  }

  /* line 15, ../sass/base/_grid-builder.scss */
  .unit-1--small {
    width: 100%;
  }
}
/* line 21, ../sass/base/_grid-builder.scss */
.ie7 .grid__cell {
  display: inline;
  zoom: 1;
}
@media (max-width: 450px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-2--mini, .unit-2-4--mini {
    width: 50%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-3--mini {
    width: 33.33333%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-2-3--mini {
    width: 66.66667%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-1-4--mini {
    width: 25%;
  }

  /* line 61, ../sass/vendors/_griddle-build.scss */
  .unit-3-4--mini {
    width: 75%;
  }

  /* line 15, ../sass/base/_grid-builder.scss */
  .unit-1--mini {
    width: 100%;
  }
}
/* line 21, ../sass/base/_grid-builder.scss */
.ie7 .grid__cell {
  display: inline;
  zoom: 1;
}


@font-face {
		font-family: 'Gotham-Book';
		src: url('../font/gotham-book.eot');
		src: url('../font/gotham-book.eot?#iefix') format('embedded-opentype'),
				 url('../font/gotham-book.woff') format('woff'),
				 url('../font/gotham-book.ttf') format('truetype'),
				 url('../font/gotham-book.svg#gotham-book') format('svg');
		font-weight: normal;
		font-style: normal;
}


html{
	background: #e3e4e5;
}

.page{
	max-width: 990px;
	margin: 0 auto;
	text-align: center;
	font-family: 'Gotham-Book';
	color: #59595b;
	font-size: 0.875rem;
}

.logo{	
	width: 100%;
	height: 330px;
	background: url(../img/greenfield-capital-logo-400.png) center center no-repeat;	
}

.border{
	border-right: 1px solid #bfbfc0;
}

.content{
	padding: 0 20px;
	text-align: justify;
}

h1{
	font-size: 32px;
}

p, li{
	line-height: 1.3rem;
}

ul{
	margin-left: 2rem;
}

a{
	color: #59595b;
	text-decoration: none;
}

a:hover{
	color: #59595b;
	text-decoration: underline;
}

.footer{
	margin: 50px 0;
}

.contact{
	text-align: center;
}


@media (max-width: 767px) {
	.logo{	
		width: 100%;
		height: 230px;
		background: url(../img/greenfield-capital-logo-400.png) center center no-repeat;	
	}
	
	.border{
	border-right: none;
	border-bottom: 1px solid #bfbfc0;
	}
	
	.content{
		margin: 30px;
		padding: 0;
	}
	
	.footer{
		margin: 0;
	}
}


@media screen and (max-width: 450px) {
	.logo{
		height: 130px;
		background: url(../img/greenfield-capital-logo-200.png) center center no-repeat;	
	}

	.page{
		width: 80%;
		margin: 0 auto;
	}
	
	.border{
	border-right: none;
	border-bottom: 1px solid #bfbfc0;
	}
	
	.content{
		margin: 30px 0;
		padding: 0;
	}
	
	.footer{
		margin: 0;
	}
	
	.contact{
		margin: 10px 0;
	}
}

