/* Author: Hardian Muljadi, hm@hmuljadi.com */
/* CSS for hmuljadi.com, Hardian's personal portfolio website */

/* Sitewide styles */
*, ::after, ::before {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	margin: 0 auto;
	text-align: center;
	background: #F9F9F9;
	color: #333333;
	
	/* keep footer at bottom */
	min-height: 100%;
	position: relative;	
}

p {
	font-size: 1em;
	margin-bottom: 15px;
	color: #333333;
}

p em {
	display: block;
	font-size: 28px;
	margin-bottom: 14px;
	font-weight: 300;
}

a {
	color: #0066FF;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

b,strong {
	font-weight: bold;
}

h1,h2,h3,h4,h5 {
	font-family: 'Merriweather', serif;
	margin-bottom: 15px;
	color: #000;
}

h1 {
	font-size: 33px;
}

h2 {
	font-size: 25px;
}

h3 {
	font-size: 17px;
}

h4 {
	font-size: 13px;
}

ul,ol {
	margin-bottom: 20px;
	padding-left: 0;
}

ul li,ol li {
	margin-left: 30px;
	margin-bottom: 10px;
}

ol li {
	list-style: decimal;
}

fieldset {
	border: 0;
	text-align: left;
}
fieldset ol {
	margin: 0;
	padding: 0;
}

/* SITE STRUCTURE */

section {
	padding: 40px 20px;
	text-align: left;
}

/* Main content container */
.container {
	max-width: 1170px;
	background-color: transparent;
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

.text-center p {
	text-align: center;
}

/* LAYOUT */

/* HEADER */
header {
	border-top: 4px solid #424342;
	height: 80px;
	position: relative;
	z-index: 99;
}
header .container {
	top: 20px;
}

#logo {
	margin-left: 20px;
	width: 82px;
	float: left;
	position: relative;
	z-index: 3;
}

#logo.fade div {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 82px;
	height: 50px;
}

#switcher {
	float: right;
	padding-right: 20px;
}

nav {
	margin-top: -20px;
	background-color: rgba(249,249,249,0.9);	
	z-index: 2;
	position: absolute;
	right: 0;
	left: 0;
	height: 45px;
	font-size: 18px;
}

nav ul {
	position: absolute;
	right: 0px;
	margin-top: -4px;
}

nav ul li {
	list-style: none;
	float: left;
	margin: 0px;
}

/* nav item styles */
nav ul li a {	
	text-decoration: none;
	padding: 10px 15px 30px;
	display: block;
	font-weight: 300;		
	color: #333333;
	border-top: 4px solid #333333;	
	transition: all .3s ease-in-out 0s;
}

nav ul li a:hover,
nav ul li a:focus {
	text-decoration: none;
}
nav ul li.current a {
	font-weight: 500;
}

nav ul li a:focus {
	outline: none;
}
nav ul li.current a:focus {
	outline: 1px dotted;
}

nav ul li#home a:hover,
nav ul li#home a:focus,
nav ul li#home.current a {
	border-top: 4px solid #3366CC;
	color: #3366CC;
}

nav ul li#portfolio a:hover,
nav ul li#portfolio a:focus,
nav ul li#portfolio.current a
	{
	border-top: 4px solid #E47400;
	color: #E47400;
}

nav ul li#blog a:hover,
nav ul li#blog a:focus,
nav ul li#blog.current a {
	border-top: 4px solid #EA3535;
	color: #EA3535;
}

nav ul li#photos a:hover,
nav ul li#photos a:focus,
nav ul li#photos.current a {
	border-top: 4px solid #35B81C;
	color: #35B81C;
}

nav ul li#contact a:hover,
nav ul li#contact a:focus,
nav ul li#contact.current a {
	border-top: 4px solid #DA377A;
	color: #DA377A;
}

#tagline {
	width: 100%;
	float: left;
	text-align: center;
	margin-top: 15px;
}

#tagline.blog {
	margin-top: -9px;
}

/* Login */
.login-container { 
	min-height: 100vh; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
}
.login-card {
	border-radius: 8px; 
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

/* CONTENT AREA */
#content {
	width: 100%;
	padding-bottom: 150px; /* height of footer to keep it at bottom */
}

#main-content,
#sidebar {	
	text-align: left;
}

.homepage #main-content {
	width: 100%;
}

#main-content.wireframe {
	width: 100%;
}

#contact-form {
	float: left;
	width: 70%;
}

#contact-form #message {
	background: #E4EFF1;
	border-radius: 5px;
	margin: 40px auto 0;
	width: 80%;
	padding: 20px 0;
}

#sidebar {
	width: 30%;
	float:right;
}

.qualifications {
	text-align: center;	
}

.qualifications li {
	float: left;
	width: 25%;	
	margin: 0;
	padding: 0px 20px;
	list-style: none; 
	box-sizing: border-box;
}
.qualifications img {
	height: 64px;
	width: auto;
	opacity: .8;
	margin-bottom: 15px;
}
.qualifications h2 {
	font-weight: 600;	
	font-size: 22px;	
}
.qualifications p {
	font-size: 16px;	
}

#handshake {
	text-align: center;	
	background-color: #F5F2EB;
	margin-top: 20px;	
	margin-bottom: 20px;
	padding: 20px 0;
	min-height: 200px;
	color: #333;
}

#handshake div,
#handshake h1 {
	font-size: 40px;	
	text-align: center;
}

#handshake .has-tag {
	margin-bottom: 0px;
}

#handshake #small {	
	font-size: 24px;
	font-weight: 300;
}

#handshake h1 span {
	color: #ABABAB;
}

#handshake .highlight {
	font-size: 36px;
	font-weight: 300;	
}

#handshake span#rss {
	position: absolute;
	right: 0px;
	top: 3px;
}

#handshake .blog-home-link {
	color: #333;
	font-size: 30px;
	text-decoration: none;
}

#handshake h1 .blog-home-link span {
	font-size: 40px;
}

#handshake .blog-home-link:hover {
	text-decoration: none;
}

#handshake .blog-home-link img {
	width: 36px;
	height: auto;
	margin-right: 10px;
	margin-bottom: -3px;
	opacity: 0.5;
	transition: all 0.3s ease-in;  
}

#handshake .blog-home-link:hover img,
#handshake .blog-home-link:focus img  {
	opacity: 1;
}

ul#social {
	margin-bottom: 50px;
	width: 200px;	
}

ul#social li {
	list-style: none;
	margin-bottom: 0px;
	margin-left: 0px;	
	font-size: 14px;
}

ul#social li img {
	vertical-align: middle;
	opacity: 0.4;
	margin-left: -5px;
	width: 48px;

  -moz-transition-duration: .3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-duration: .3s;
  -webkit-transition-timing-function: ease-in;
  transition-duration: .3s;
  transition-timing-function: ease-in;
}

ul#social li a:hover img,
ul#social li a:focus img {
  opacity: 0.8;
}

ul#social li a {
	text-decoration: none;
	display: block;
	color: #333;
}

ul#social li a:hover {
	color: #003366;
}

ul#current-books span {
	font-style: italic;
	color: #999;
}

/* Image replacement */
h1.image_replace#hi {
	background: url('../images/hi.jpg') no-repeat scroll 50% 0 transparent;
	width: 100%;
	height: 100px;
}

h1.image_replace#hi span {
	display: none;
}

/* Resetting text styles for main-content*/
#main-content .blurb {
	padding-right: 20px;
}

#main-content img.self-portrait {
  float: left;
  margin: 5px 20px 35px 0px;
  border-radius: 3px;
  box-shadow: 0px 0px 7px #777;
}

#main-content .blurb h1 {
	font-size: 30px;
	float: left;
	width: 45%;
	margin-right: 25px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

#main-content .blurb h1 .small {
  display: block;
  font-size: 75%;
  color: #777;
  margin-top: 5px;
}

#main-content .blurb p {
  top: 20px;
  position: relative;
}

#main-content hr {
	/*background: url('../images/separator_content.jpg') no-repeat;
  width: 390px;
  height: 3px;*/
	text-align: left;
	border: 2px solid #333333;
	width: 95%;
	margin-top: 40px;
	margin-bottom: 40px;
}

#sidebar hr {
	/*background: url('../images/separator_sidebar.jpg') no-repeat;
  width: 203px;
  height: 4px;*/
	text-align: center;
	border: 2px solid #333333;
	margin-top: 30px;
	margin-bottom: 30px;
}

/* Portfolio */
.portfolio #handshake {
	background-color: #435A66;
	color: #FFF;
}

.feature {
	margin-bottom: 30px;
	padding: 30px 0;
}

.feature.striped {
	background-color: #EEEEEE;
}

.feature .container {		
	position: relative;	
	min-height: 520px;
}

.feature .container > * {
	margin-left: 650px;
}

.feature .portfolio-screen {
	position: absolute;
	left: 20px;
	top: 20px;
	margin-left: 0;
	display: block;
	height: 100%;
}

.feature .hide {
	display: none;
}

.role li {
	list-style: none;
	display: inline-block;	
	padding: 5px 10px;
	font-size: 13px;
	font-weight: 400;
	color: #333;
	border-radius: 20px;
	border: 1px solid #777;
	margin: 10px 10px 10px 0;
}
.role.inverse li {
	color: #fff;
	border-color: #fff;
}

/* Fancybox Overrides */
.fancybox-lock .fancybox-skin {
	padding: 0px !important;	
	background: transparent;
}

.fancybox-lock .fancybox-title-float-wrap .child {
	background: rgba(0, 0, 0, 0.4);
	border-radius: 2px;
	color: #fff;
	font-family: 'Open Sans',sans-serif;
	font-size: 16px;
	font-weight: 300;
	padding: 2px 15px;
}

/* Bootstrap overrides */
a.btn:hover,
a.btn:focus {
	text-decoration: none;
}

/* Individual Portfolio */
.portfolio-header {
	background-size: cover;
	background-position: center;
	position: relative;
	text-align: center;
}
.portfolio-header:before {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	background: rgba(0,0,0,0.8);	
}

.portfolio-individual h2, h3, h4 {
	font-weight: 600;
}
.portfolio-individual h3 {
	font-size: 20px;
}
.portfolio-individual h4 {
	font-size: 17px;
}

.portfolio-individual .container {
	max-width: 970px;
}

.highlight-desktop {
    box-shadow: 0 2px 20px 2px rgba(12, 44, 76, 0.08);
    position: relative;
    background: #fff;
    padding: 12px 8px 7px 8px;
    border-radius: 10px 10px 0 0;
    max-width: 85%;
    margin: 0 auto -9px auto;
}
.mockup-body {
	width: 100%;
    height: 8px;
    background: #fff;
    box-shadow: 0 2px 20px 2px rgba(12, 44, 76, 0.08);
    border-radius: 0 0 30px 30px;
    margin-top: -2px;
    display: inline-block;
    position: relative;
}
.mockup-body:before {
	content: '';
    width: 80px;
    height: 3px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-top: none;
    border-radius: 0 0 3px 3px;
    background: #edf0f2;
}

.highlight-mobile {
	position: relative;
    background: #fff;
    padding: 55px 20px;
    box-shadow: 0 2px 20px 2px rgba(12, 44, 76, 0.08);
    border-radius: 30px;
    display: inline-block;
    margin: 0 auto;
    max-width: 85%;
}

.card-title {
	line-height: 145%;
	color: #212529;
}

.card > a:hover,
.card > a:focus {
	text-decoration: none;
}

.card {
	transition: all ease-out 0.125s;
}
.card img {
	opacity: 0.8;
	transition: all ease-out 0.125s;	
}

.card:hover,
.card:focus {
	box-shadow: 10px 10px 46px 5px rgba(0,0,0,0.21);
}
.card:hover img,
.card:focus img {
	opacity: 1;
}

/*#main-content.portfolio {
	width: 100%;
}
.row {
	min-height: 230px;
	float: left;
	width: 100%;
	border-bottom: 1px dotted #CCCCCC;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.portfolio-piece {
	float: left;
	width: 45%;
	margin-right: 48px;
}

.portfolio-piece .screenshot {
	float: left;
	width: 200px;
	margin-right: 25px;
}

.portfolio-piece .screenshot a.hide {
	display: none;
}

.portfolio-piece .background {
	float: left;
	width: 200px;
}

.portfolio-piece .background a {
	text-decoration: none;
}

.portfolio-piece .background p span,.portfolio-piece .story p span {
	color: #E47400;
	font-weight: bold;
}

.portfolio-piece .background p.role {
	margin-bottom: 3px;
	font-style: italic;
	color: #666;
}

.portfolio-piece .background p.portfolio-link {
	margin-bottom: 0px;
}

.portfolio-piece h3 {
	font-size: 17px;
	color: #3366CC;
	cursor: pointer;
	clear: both;
	width: 200px;
	text-align: center;
}

.portfolio-piece .story {
	width: 100%;
	clear: both;
	display: none;
}

.portfolio-piece .story strong {
	background-color: #E9F14C;
	font-weight: normal;
	padding: 0px 2px;
}

.portfolio-piece img {
	border: 5px solid #CCCCCC;
	padding: 3px;
}

.portfolio-piece img:hover {
	border: 5px solid #999;
}

p.show-all {
	text-align: right;
	font-size: 11px;
}*/

/* Photo Gallery */
#main-content.photos {
	width: 100%;
}

#flickr {
	text-align: center;
}

#flickr a {
	position: relative;
	margin: 10px;
}

#flickr img {
	display: inline;
	margin: 10px;
	height: 180px;
	background-color: #FFF;
	box-shadow: 1px 1px 5px #999;
	
	-moz-transition-duration: .3s;
	-moz-transition-timing-function: ease-in;
	-webkit-transition-duration: .3s;
	-webkit-transition-timing-function: ease-in;
	transition-duration: .3s;
	transition-timing-function: ease-in;
}

#flickr .photo-title {
	display: block;
	position: absolute;
	text-align: center;
	font-size: 100%;
	line-height: 100%;
	color: #EEE;
	word-wrap: break-word;
	
	width: auto;
	opacity: 0;
	background-color: rgba(0,0,0,0.1);
	top: -40px;
	right: 10px;
	padding: 10px;
	
	-moz-transition-duration: .3s;
	-moz-transition-timing-function: ease-in;
	-webkit-transition-duration: .3s;
	-webkit-transition-timing-function: ease-in;
	transition-duration: .3s;
	transition-timing-function: ease-in;
}

#flickr a:hover img {
	box-shadow: 1px 1px 20px #666;
}

#flickr a:hover .photo-title {
	display: block;
	background-color: rgba(0,0,0,0.8);
	opacity: 1.0;
}

/* Form styles */
form ol li {
	margin-bottom: 15px;
	list-style: none;
	margin-left: 0px;
}

label {
	font-weight: 300;
	font-size: 16px;
	margin: 0;
	padding: 0;
	display: block;
}

label span {
	font-weight: normal;
	font-size: 11px;
	font-style: italic;
	color: #666;
}

label.error {
	font-weight: normal;
	color: #DA377A;
	font-style: italic;
}

input,
textarea {			
	border: 1px solid #CCCCCC;
	margin-top: 7px;
	padding: 8px;
	border-radius: 3px;
	box-sizing: border-box;
	
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #666;
}

input.button {
	cursor: pointer;
	border: 1px solid #007295;
	padding: 7px 25px;
	font-size: 16px;
	width: auto;	
	color: #222222;
	border-radius: 3px;	
	background-color: #008cba;
	color: #FFF;
	transition: background-color 300ms ease-out 0s;
}

input.button:hover,
input.button:focus {
	background-color: #007295;
}

textarea:focus,
input:focus {
	box-shadow: 0 1px 5px #CCC;	
	background: #FFF !important;
	transition: all 300ms ease-out 0s;
	color: #333;
}

/* COMMENT FORM */
#contact_form #message p {
	margin-top: 20px;
	text-align: center;
}

#contact_form ol li textarea,#contact_form ol li {
	width: 580px;
}

/* BLOG */
.main-page .blog-content {
	box-sizing: border-box;
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	column-gap: 20px;
}

.single .blog-content {
	background: #FFF;
	box-shadow: 0px 0px 5px #CCC;
	padding: 20px;
	max-width: 600px;
	margin: 0 auto;
}

.blogs #handshake {
	min-height: 0px;
}
.blogs #handshake .container {
	padding-top: 0;
}

.blog h1 {
	font-weight: normal;
	margin-bottom: 20px;
}

.blog h1 a {
	color: #333;
}

.blog h2 {
	font-size: 25px;
}

.blog .wp-caption {
	width: auto !important;
}

.blog .wp-caption .wp-caption-text {
	text-align: center;
	color: #777;
	font-family: 'Merriweather', serif;
	font-style: italic;
	background-color: #FFF;
	margin-top: -10px;
}

.blog .storycontent img {
	clear: both;
	display: block;
	margin: 20px auto;
	max-width: 100%;
	height: auto;
}

.blog .storycontent img.wp-smiley {
	display: inline;
	margin: 0px;
	padding: 0px;
}

.blog .storycontent img.aligncenter {
	text-align: center;
}
code {
	color: #d63333;
}
blockquote {
	margin: 40px 0px 20px 20px;
	padding-left: 40px;
	position: relative;
	font-family: Georgia, serif;
	font-style: italic;
	font-size: 17px;
	line-height:150%;
}
blockquote:before {
	content: open-quote;
	position: absolute;
	left: 0px;
	top: -20px;
	font-family: Georgia, serif;
	font-size: 75px;
	color: #999;
	font-style: normal;
	line-height: 100%;
}
.blockquote-footer {
	color: #666;
}
.blog blockquote p {
	color: #666;
	font-size: 17px;
}

h2#postcomment {
	margin-top: 25px;
	padding-top: 10px;
	margin-bottom: 0px;
}

p.cite {
	font-size: 10px;
}

p.cite.name {
	margin-top: 5px;
	margin-bottom: 2px;
	font-size: 13px;
}

p.cite.date {
	margin-top: 0px;
	margin-bottom: 10px;
	color: #787878;
}

#menu a,.blog a {
	text-decoration: none;
}

#menu a:hover,.blog a:hover {
	text-decoration: underline;
}

#main-content.blog hr {
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog .storytitle,
.blog .storytitle a,
.blog .storycontent h2 {
	font-size: 23px;	
	margin-bottom: 5px;
	font-weight: 400;
	line-height: 125%;
	color: #333;
}

.blog .storycontent h2 {
	font-size: 20px;
	margin: 25px 0px 15px;
}

.blog .storytitle a:hover,
.blog .storytitle a:focus {
	color: #0066ff;
	text-decoration: none;
}

.blog .storycontent p {
	line-height: 150%;
	font-size: 16px;
}

.feedback {
	text-align: right;
}
.feedback a {
	font-size: 13px;
	color: #999;
}

.blog .meta {
	color: #666;
	margin-bottom: 20px;
	font-size: 14px;
	margin-top: 10px;
	font-weight: 300;
}

.blog .fblikebutton_button {
	margin-top: 40px;
	margin-bottom: 20px;
}

.blog .addthis_toolbox {
	margin-bottom: 20px;
}

.blog .addtoany_shareave_container {
	margin-top: 0px;
}

#menu #topic {
	margin-top: 15px;
	margin-bottom: 15px;
	zoom: 1;
}

#menu #topic li {
	/*background: url('../images/topic.jpg') no-repeat 0% 100%;*/
	list-style: none;
	margin-left: 0px;
}

#menu #topic li a {
	font-size: 16px;
	display: block;
	padding: 10px 0px 10px 40px;
	color: #333333;
}

#menu #topic li a:hover {
	color: #0066FF;
	text-decoration: none;
}

#ad {
	border: 1px solid #CDCDCD;
	padding: 2px;
	text-align: center;
	margin-top: 20px;
	padding-bottom: 5px;
}

#ad p {
	font-size: 10px;
	color: #999999;
	text-align: center;
}

p.credit {
	text-align: center;
	color: #999999;
	font-size: 10px;
}

p.credit a {
	color: #999999;
	font-size: 10px;
}

#menu #topic li#all a {
	background: url('../images/icons/all.jpg') no-repeat 3% 40%;
}

#menu #topic li#usability a {
	background: url('../images/icons/usability.jpg') no-repeat 3% 40%;
}

#menu #topic li#ux a {
	background: url('../images/icons/user_experience.jpg') no-repeat 3% 40%;
}

#menu #topic li#website_building a {
	background: url('../images/icons/website_building.jpg') no-repeat 3% 40%;
}

#menu #topic li#web_business a {
	background: url('../images/icons/business.jpg') no-repeat 3% 40%;
}

#menu #topic li#inspiration a {
	background: url('../images/icons/inspiration.jpg') no-repeat 3% 40%;
}

#menu #topic li#industry a {
	background: url('../images/icons/industry.jpg') no-repeat 3% 40%;
}

#menu #topic li#photography a {
	background: url("../images/icons/photography.png") no-repeat 4% 40% / 18px 18px transparent;
}

form#commentform input.button.post {
	width: auto;	
}


.comment-subscription-form {
	margin-bottom: 5px;
}

form#commentform .comment-subscription-form input[type="checkbox"] {
	border: 0px;
	padding: 0px;
	margin: 0px;
}

input#s {
	width: 170px;
}

#login {
	float: left;
	width: 100%;
	text-align: right;
}

#login ul {
	margin-bottom: 0px;
}

#login li {
	width: auto;
	list-style: none;
	padding-right: 20px;
	display: inline;
	margin-left: 0px;
	font-size: 14px;
}

.main-page .post {
	box-shadow: 0px 0px 5px #CCC;
	background-color: #FFF;
	margin-bottom: 20px;
	padding: 20px;
	page-break-inside: avoid;
	page-break-before: avoid;
	page-break-after: avoid;
}

#search {
	margin-bottom: 40px;
}

#category_definition h2 {
	margin-bottom: 5px;
}

#category_definition p {
	font-size: 11px;
	color: #777777;
	padding: 5px 30px 0px;
	line-height: 170%;
	font-style: italic;
}

img#wpstats {
	display: none;
}

/* COMMENTS */
h2#comments {
	padding-bottom: 5px;
	width: 95%;
	display: none;
}

#commentform {
	position: relative;
	margin-top: 50px;
}

form#commentform input,textarea#comment {	
	padding: 10px;
	margin-bottom: 20px;
}

form#commentform label {
	display: block;
}

form#commentform label.subscribe-label {
	font-weight: normal;
	font-size: 90%;
	color: #666;
}

ol#commentlist {
	margin-top: 10px;
	margin-bottom: 0px;
}

li.comment,
li.pingback {
	width: 95%;
	float: left;
	position: relative;
	margin-bottom: 25px;
	list-style: none;
	margin-left: 0px;	
	border-radius: 4px;
	padding: 10px;
	box-shadow: 0px 0px 5px #CCC;
	background-color: #FFFFFF;
}

li.comment:after,
li.pingback:after {
	content: "";
	z-index: -1;
	box-shadow: 0px 17px 15px rgba(0,0,0,0.2);
	
	transform: rotate(2deg);
	-ms-transform:rotate(2deg);
	-moz-transform:rotate(2deg);
	-webkit-transform:rotate(2deg);
	-o-transform:rotate(2deg);
		
	top: -3px;
	bottom: 17px;
	right: 11px;
	left: 17px;
	position:absolute;
}

li.comment img {
	float: left;
	margin: 5px 10px 10px 0px;
	border: 1px solid #CDCDCD;
	padding: 2px;
}

li.comment .avatar_container {
	float: left;
	width: 42px;
	margin-right: 7px;
}

.comment_text_container {
	margin-left: 55px;
	padding-right: 10px;
}

#main-content li.comment p {
	margin-left: 0px;
}

/* Twitter */
.tweet ul {
	margin: 0px;
	padding: 0px;
}

.tweet ul li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.tweet_avatar {
	float: left;
	width: 46px;
	margin-right: 10px;
}

.tweet blockquote:before {
	top: -30px;
}

.tweet .tweet_time {
	text-align: right;
	margin-top: 10px;
}

.tweet .tweet_time a {
	color: #999999;
	font-size: 10px;
	text-decoration: none;
}

.tweet .tweet_time a:hover {
	text-decoration: underline;
}

/* FOOTER */
footer {
	background-color: #424342;
	height: 100px;
	margin-top: 30px;		
	padding-top: 20px;
	position: absolute;
	width: 100%;
	bottom: 0;
	text-align: left;
	line-height: 1.35rem;
}

footer #copyright a {
	color: #DDD;
	border-bottom: 1px dotted #CCC;
}

footer #copyright a:hover,
footer #copyright a:focus {
	text-decoration: none;
	color: #FFF;
	transition: all 0.2s ease-in;
}

footer #follow,
footer #copyright {
	float: left;
	position: relative;
	font-size: 13px;	
	color: #FFF;
}

footer #follow > a {
	display: inline-block;
}

footer #follow img {
	width: 30px;
	opacity: 0.5;
	vertical-align: middle;
	margin: 0 2px;
	transition: all 0.2s ease-in;
}

footer #follow img:hover{
	opacity: 1;
}

footer p#copyright {
	float: right;	
}

.clear {
	clear: both;
	padding: 0px;
	margin: 0px;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

/*.hidden {
	position: absolute;
	text-indent: -9999px;
	width: 1px;
	color: transparent;
	height: 1px;
}*/

/* Medium styles */
@media only screen and (min-width: 40.063em) and (max-width: 64em) {



}