body {
    /*
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cbccc8)) fixed;
    */
}

.column {
    padding: 20px;
    margin: 5px;
    -moz-box-shadow: 4px 0px 6px #AAA; 
    -webkit-box-shadow: 4px 0px 6px #AAA; 
    box-shadow: 4px 0px 6px #AAA; 
}

#albums-edit {
    width: 29%;
    background-color: #DDD;
    float: left;
    height: 800px;
}
    
#album-edit {
    width: 29%;
    background-color: #EEE;
    float: left;
    height: 800px;
}

#image-edit {
    width: 29%;
    background-color: #F4F4F4;
    float: left;
    height: 800px;

}
    
.album a {
    font-size: 18px;
    text-decoration: none;
    color: #000;
    padding: 5px;
    margin: 5px;
}

.selected {
    border: 1px solid #777;
    background-color: lightsalmon;
    margin: 5px;
    border-radius: 5px;
    -moz-box-shadow: 4px 4px 6px #000; 
    -webkit-box-shadow: 4px 4px 6px #000; 
    box-shadow: 4px 4px 6px #000; 
}

.nonselected {
    border: 1px solid #CCC;
    background-color: white;
    margin: 5px;
    border-radius: 5px;
    -moz-box-shadow: 4px 4px 6px #999; 
    -webkit-box-shadow: 4px 4px 6px #999; 
    box-shadow: 4px 4px 6px #999; 
}

p.invalid {
    color: red;
    font-size: 20px;
}



input.button-add {
    background-image: url(/images/refresh.png); /* 16px x 16px */
    background-color: transparent; /* make the button transparent */
    background-repeat: no-repeat;  /* make the background image appear only once */
    background-position: 0px 0px;  /* equivalent to 'top left' */
    border: none;           /* assuming we don't want any borders */
    cursor: pointer;        /* make the cursor like hovering over an <a> element */
    height: 16px;           /* make this the size of your image */
    padding-left: 16px;     /* make text start to the right of the image */
    vertical-align: middle; /* align the text vertically centered */
}

.right {
    right: 10px;
    display: inline;
}

.thumbnail {
    float: left;
    padding: 5px;
    margin: 5px;
}

.thumbnail div {
    width: 80px;
    height: 90px;
}

.thumbnail input {
    max-height: 100%;
    max-width: 100%;
}

.preview {
    width: 250px;
    height: 250px;
    border: 1px solid #777;
    margin: 5px;
    border-radius: 5px;
    -moz-box-shadow: 4px 4px 6px #000; 
    -webkit-box-shadow: 4px 4px 6px #000; 
    box-shadow: 4px 4px 6px #000; 
}

.preview img {
    max-height: 100%;
    max-width: 100%;
}

.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	margin: .5em 0.5em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	padding: 3px 8px;
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

div#status {
    position: fixed;
    top: 0px;
    border: 1px solid #777;
    width: 100%;
    height: 30px;
    font-family: sans-serif;
    font-size: 20px;
    color: lightcoral;
    background-color: rgba(200,200,200,0.5);
    z-index: 100;
}

#articles-edit {
    width: 29%;
    background-color: #DDD;
    float: left;
    height: 800px;
}
    
#article-edit {
    width: 60%;
    background-color: #EEE;
    float: left;
    height: 800px;
}

.validInput {
	border-color: green;
}

.invalidInput {
	border-color: red;
}

.highlight {
	background-color: lightsalmon;
}
