body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label{
	/* Simple page reset */
	margin:0px;
	padding:0px;
}

body{
	/* Setting default text color, background and a font stack */
	color:#eeeeee;
	font-size:13px;
	background:url(img/flakes.jpg) repeat;
	font-family:Arial, Helvetica, sans-serif;
}

h1.tutTitle{
	/* Hiding the H1 - it is only visble by search engines */
	display:none;
}

#main{
	/* The main container */
	margin:15px auto;
	text-align:center;
	width:865px;
	position:relative;
	display:none;
}

a, a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

#header{
	width:100%;
	height:160px;
	
	/* Setting the background of the header to show in the center of the page
	   and blend seemlessly with the background color: */
		
	background:url(img/header_bg.jpg) no-repeat #ad0303 center bottom;
	border-bottom:1px solid #d84b4e;
	text-align:center;
	margin-bottom:60px;
	
	/* Relative positioning, so that the #backToTut div is positioned accordingly */
	position:relative;
}

#backToTut{
	/* Positioning the "Back to the tut" link */
	position:absolute;
	right:30px;
	top:40px;
}

#logo{
	width:880px;
	text-align:left;
	margin:0 auto;
}

.wish{
	/* A common class, shared by all .wish divs */
	padding:10px;
	text-align:left;
	width:600px;
	margin:0 auto 45px;
	position:relative;
}

/* Individual CSS rules for each color: */

.wish.green{
	background:url(img/green_bg.jpg);
	border:1px solid #3ccd1b;
}

.wish.red{
	background:url(img/red_bg.jpg);
	border:1px solid #e9403c;
}

.wish.add{
	background:url(img/blue_bg.jpg);
	border:1px solid #2976BB;
}

.profile-pic{
	float:left;
	margin-right:10px;
}

div div.profile-pic img{
	/* Re-designing the facebook avatars */
	border:2px solid white;
	
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 1px #666666;
	-webkit-box-shadow:0 0 1px #666666;
	box-shadow:0 0 1px #666666;
}

a.fbconnect_login_button {
	/* The facebook button */
	display:block;
	margin-top:7px;
}

.stage{
	/* The .stage divs, which hold the text of the wish */
	background:url(img/bg_gwg.png) repeat-y  center top #eeeeee;
	border:3px solid white;
	padding:8px;
	
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #666666;
	-webkit-box-shadow:0 0 3px #666666;
	box-shadow:0 0 3px #666666;
	
	/* Fixing the peekaboo bug in IE by triggering the
	   hasLayout mechanism with the zoom property */
	zoom:1;
}

.topIcon{
	/* The icons at the top */
	width:128px;
	height:120px;
	position:absolute;
	top:-40px;
	right:-40px;
}

.wish.red .topIcon{
	background:url(img/mistletoe.png) no-repeat;
}

.wish.green .topIcon{
	background:url(img/jingle.png) no-repeat;
}

.name{
	color:#888888;
	margin-left:114px;
}

.body{
	/* Text of the wish */
	color:#555555;
	font-size:20px;
	padding-top:6px;
	margin-left:114px;
}

#addWish .name{
	/* Initially hiding the name field of the comment form */
	display:none;
}

#cb{
	/* The checkbox */
	position:relative;
	top:2px
}

#sbutton{
	/* The submit button */
	background:#155C9C;
	border:1px solid #093F6F;
	color:white;
	cursor:pointer;
	font-family:Arial,Verdana,Sans-serif;
	font-size:12px;
	padding:3px;
}

#wish{
	/* The textarea */
	border:1px solid #AAAAAA;
	color:#606060;
	font-family:Arial,Verdana,Sans-serif;
	font-size:20px;
	padding:3px;
	width:400px;
	display:block;
}

label{
	font-size:10px;
}

a img{
	border:none;
}

/* Styling the pagination at the bottom of the page: */

.pagination{
	font-size:10px;
	margin:-15px auto 10px;
	text-transform:capitalize;
	width:620px;
}

.pagination a,.pagination a:visited,.pagination span{
	background-color:#F2F2F2;
	border:1px solid white;
	color:#545454;
	display:inline;
	float:left;
	margin:3px 5px 0 0;
	padding:4px 6px;
	text-decoration:none;
}

.pagination a:hover{
	background-color:#eaf7ff;
	color:#444444;
}

.pagination span{
	background-color:#BBBBBB;
	border:1px solid #CCCCCC;
	color:#666666;
}

/* The clearfix hack */

.clear{
	clear:both;
}

p.tutInfo{
	/* The tut info on the bottom of the page */
	padding:10px;
	text-align:center;
}

