@charset "utf-8";
/* CSS Document */

@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Satisfy);

/* General Styles */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
	background-color: #2E2E2E;
	font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Satisfy', cursive;
}

.headerContent {
	background-color: #B5C789;
	background-image: url(../assets/headerbg.png);
	background-position: center;
	text-align: center;
	height: 100px;
	padding-top: 2em;
}
	.headerContent h2 {
		background-image: url(../assets/dandelionLogo.png);
		width: 70px;
		height: 70px;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		left: 130px;
		top: 70px;
	}
	.headerContent span {
		display: none;
	}
	
	nav {
		background-color: #fff;
		padding-top: .3em;
		font-weight: bold;
	}
	nav ul {
		text-align: right;
		margin-right: 1em;
	}
		nav ul li {
			display: inline-block;
			text-decoration: none;
			margin-left: 1.5em;
		}
		nav ul li a {
			text-decoration: none;
		}

.bodyContent {
	background-color: white;
}

#content {
	margin-top: 50px;
	padding: 1em;
}


/* Guest List */
#statistics {
	background-color: #B5C789;
	margin-left: auto;
	margin-right: auto;
}
	#totalInvitedGuest, #totalGuestComing, #totalGuestDeclined {
		width: 30%;
		display: inline-block;
		text-align: center;
	}
	#statistics div {
		display: inline-block;
	}
	.label {
		font-weight: bold;
		text-transform: capitalize;
	}

.guestList {
	margin-top: 2em;
	text-align: center;
}
	.guestInfo {
	text-align: center;
	}
	img { 
		width: 100px;
		height: auto;
	}
	.guestProfile {
	
	}
	.guestName {
		font-size: 1.3em;
		font-weight: bold;
	}
	.guestAddress {
	
	}


.sixteen {
	padding: 1em;
	background-color: white;
}

.container .sixteen.columns { width: 960px;}
.container .column, .container .columns {
	margin-left: -1em;
}


/* Login Form M11 */
.loginForm {
	float: left;
	position: relative;
	top: 0;
	left: 10px;
}
.loginForm label, .loginForm legend, .loginForm div, input[type="text"], input[type="password"], input[type="email"], textarea, select {
	display: inline-block;
}