/* 
 * memorazzo.css
 *
 * © 2010, Fred Zuijdendorp
 * version: 20121113 12:39
 */


/***************************** general *****************************/

body {
	background-color: rgba(194,208,225,0.5);
	margin: 20px;
}


a {
	color: #666;
	text-decoration: underline;
}


a img {
	border: 0;
}


/***************************** page *****************************/

#page {
	background-color: #d6dee1;
	margin: 0 auto;
	width: 900px;
	border: 0;
	border: 1px solid gray;
	text-align: center;
	font-family: verdana, sans-serif;
	/* shadow */
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}


/***************************** header *****************************/

#header {
	padding: 50px;
	border-bottom: 1px solid gray;
}

#header img {
	width: 256px;
	/* rounded corners */
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	/* shadow */
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
	-webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
	-moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
}

.home #header img {
/* 	width: 256px; */
	/* rounded corners */
/*
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
*/
}


/***************************** footer *****************************/

#footer {
	padding: 2em 0 0.2em 0;
}

#footer a {
	color: #666;
	text-decoration: none;
}


/***************************** menu *****************************/

#menu {
	margin: 2em 0 4em 0;
}

/*
.home #menu {
		margin: 2em 0 2em 0;
}
*/

#menu a {
	color: #666;
	background-color: rgba(194,208,225,1.0);
	width: 30%;
	font-size: 1.3em;
	border: 1px solid #687A7A;
	margin: 2em 0 2em 0;
	padding: 0.2em 0.5em 0.3em 0.5em;
	text-decoration: none;
	/* shadow */
	box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
}

#menu .selected {
	color: #e7e3e3;
	background-color: #e58a3c;	/* orange */
}


/***************************** content *****************************/

#content {
	color: #333;
	margin: 2em 10% 2em 10%;
	text-align: left;
}

#content h2 {
	font-size: 1.5em;
	color: #666666;
}


#content h3 {
	font-size: 0.9em;
	color: #777;
	padding: 0em 5em 1em 5em;
}


#content h4 {
	font-size: 1.0em;
	color: #777;
	margin-top: -1em;
	padding: 0px;
}

#content p {
	color: #eee;
	font-size: 1.2em;
	margin-bottom: 0;
}

#content #screenshots img {
	display: block;
	margin: 30px;
	margin-bottom: 3em;
 	margin-left: auto;
 	margin-right: auto;
	/* shadow */
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.8);
	-webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.8);
	-moz-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.8);
}

#content #screenshots img.portrait {
	height: 512px;
}

#content #screenshots img.landscape {
	width: 512px;
}

#content #steps img {
	float: right;
	width: 600px;
}

#content ol {
	list-style-position: inside;
	list-style-type: decimal;
	color: #eee;
	margin: 0;
	padding: 1em 2em 1em 2em;
}

.ui-accordion-header {
ÊÊÊÊbackground-image: -moz-linear-gradient(top,Ê rgba(145, 173, 206, 1) 0%, rgba(194,208,225,1.0) 100%); /* FF3.6+ */
	background-image: linear-gradient(top, #000000 0%, #ffffff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(145, 173, 206, 1)), color-stop(100%,rgba(194,208,225,1.0)));
ÊÊÊÊbackground-image: -webkit-linear-gradient(top,Ê rgba(145, 173, 206, 1) 0%,rgba(194,208,225,1.0) 100%); /* Chrome10+,Safari5.1+ */
ÊÊÊÊbackground-image: -o-linear-gradient(top,Ê rgba(145, 173, 206, 1) 0%,rgba(194,208,225,1.0) 100%); /* Opera 11.10+ */
ÊÊÊÊbackground-image: -ms-linear-gradient(top,Ê rgba(145, 173, 206, 1) 0%,rgba(194,208,225,1.0) 100%); /* IE10+ */
ÊÊÊÊbackground-image: linear-gradient(to bottom,Ê rgba(145, 173, 206, 1) 0%,rgba(194,208,225,1.0) 100%); /* W3C */
ÊÊÊÊfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(145, 173, 206, 1)', endColorstr='rgba(194,208,225,1.0)',GradientType=0 ); /* IE6-9 */
}


