.modalbox .boxie {
    background-color: #191717;
    margin: 0 auto;
    /*min-width: 210px;*/
    padding: 40px;
    width: 80%;
    margin-top: 100px;
	padding-bottom: 10px;
    padding-top: 20px;
    }
    .modalbox .title {
    border-bottom: 1px solid #ccc;
	font-family: source sans pro,sans-serif;    
	font-size: 100%;
    letter-spacing: -.025em;
	line-height: 1.75em;
    margin: 0;
    padding: 0 0 10px;
/* uppercase text looks like garbage, why? text-transform: uppercase; */
    color: #fff;
	font-weight: bold;
        }
    .modalbox .content {
    display: block;
	font-family: source sans pro,sans-serif; 
	font-size: 11pt;
    line-height: 22px;
    padding: 10px 0 0;
    color: #fff;
        }
    .modalbox .close {
    color: #fff;
    display: block;
    float: right;
	font-family: source sans pro,sans-serif; 
    font-size: 22px;
    height: 25px;
    text-decoration: none;
        }


.modalbox{
    display: none;
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    color:#333333;
    -webkit-animation: fadein .5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein .5s; /* Firefox < 16 */
    -ms-animation: fadein .5s; /* Internet Explorer */
    -o-animation: fadein .5s; /* Opera < 12.1 */
    animation: fadein .5s;

    }	

/* fadein keyframes */
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}	
/* fadeout keyframes */
@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}
/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}
/* Internet Explorer */
@-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}
/* Opera < 12.1 */
@-o-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}
		
.modalbox:last-of-type {
    background: rgba(0,0,0,.8);
}
	
.modalbox:target {
    display: block;
    outline: none;
}

/*this CSS down here is not for the modal but I wanted to put it here anyway because I am lazy. Get over it.*/



*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  outline: none;
}

@font-face {
  font-family: 'Genericons';
  src: url('s.cdpn.io/53819/genericons-regular-webfont.eot');
  src: url('s.cdpn.io/53819/genericons-regular-webfont.woff') format('woff'),
     url('s.cdpn.io/53819/genericons-regular-webfont.eot') format('truetype');
  font-weight: normal;
  font-style: normal;
}

[class*="genericon"] {
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1;
  font-family: 'Genericons';
  text-decoration: inherit;
  font-weight: normal;
  font-style: normal;
  vertical-align: top;

}

/* IE7 */
[class*="genericon"] {
  *overflow: auto;
  *zoom: 1;
  *display: inline;

}

a .social-button {
  
  display: inline-block;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  width: 129px;
  height: 34px;
  padding-right: 12px;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
  text-align: left;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #d0d0d0;
  
  /* transition fadeIn */
  -webkit-transition: background-color 0.175s ease-in-out;
  -moz-transition: background-color 0.175s ease-in-out;
	-o-transition: background-color 0.175s ease-in-out;
	transition: background-color 0.175s ease-in-out;
}

a .social-button.twitter {
  background-color: #00a9f1;
font-size: 18px;
}

a .social-button.twitter:before {
  display: inline-block;
  font-family: "Genericons";
  content: "\f202";
  width: 34px;
	height: 34px;
  padding-left: 10px;
  margin-right: 12px;
  background-color: #0085be;
  
  /* left borders */
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;  
	
}

a:hover .social-button.twitter {
  background-color: #0085be;
}
			
