/* Layout */
* {
	margin:0;
    padding:0;
}
html,
body {
    height:100%;
}
#general-wrapper {
    min-height:100%;
    position:relative;
}
#general-header {
    background: silver;
    height: auto;
}
main {
	padding: 10px;
    padding-bottom: 80px;   /* Height of the #general-footer */
}
#general-footer {
    width:100%;
    height:80px;
    position:absolute;
    bottom:0;
    left:0;
    background: orange;
    text-align: center;
}

/* Common elements */
a {
	color: blue;
	cursor: pointer;
}
h1 {
	padding: 10px;
}
h2 {
	padding: 8px;
}
h3 {
	padding: 6px;
}
.de-input {
	width: auto;
	text-align: center;
}
.de-button {
	padding: 2px;
}
.wrapper {
	padding: 10px;
}

.section-control-wrapper {
	top: -20px;
	text-align: right;
}