/*CSS for wiki (views/wiki.html)*/

/*table: contains everything*/
#main{
	background: lightgray;
	width: 100%;
}

/*left side of wiki*/
#wiki-left{
	width: 150px;
	text-align: center;
	vertical-align: top;
	padding: 1em;
}

/*main section of wiki with content*/
#wiki-content{
	background: white;
	border: 2px solid black;
	min-height: 500px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-radius: 5px;
	padding: 1em;
}

/*view tab content*/
#view-tab{
	text-align: justify;
}

/*menu of pages*/
#wiki-menu{
	background: white;
	border: 2px solid black;
	padding: 1em;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin-top: 1em;
}

/*image viewer*/
#image-viewer{
	background-color: white;
	position: absolute;
	width: 500px;
	height: 400px;
	border: 5px solid gray;
	padding: 10px;
	left: 50%;
	margin-left: -250px
}

/*image viewer's title */
#image-viewer-title{
	width: 500px;  /*corresponds to #image-viewer width*/
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid gray;
	padding-bottom: 10px;
	text-align: center;
	margin-bottom: 10px;
}

/*image viewer div with image content*/
#image-viewer-content{
	width: 500px; /*corresponds to #image-viewer width*/
	height: 325px;
	overflow: auto;
}

/*image viewer's button panel*/
#button-panel{
	width: 500px; /*corresponds to #image-viewer width*/
	padding-top: 5px;
	text-align:right; 
	border-top: 1px solid gray;
	margin-top: 10px;
	bottom: 10px;
	position: absolute;
}

/*login error message*/
#login-error{
	color: red; 
	font-weight: normal; 
	font-size: 12px; 
	text-align: center; 
	background: white; 
	margin: 5px;
	padding: 3px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/*image viewer: container of image thumbnail*/
.thumbnail-container{
	float: left;
	cursor: pointer;
	width: 215px;
	min-height: 200px;
	text-align: center;
	height: auto;
	padding: 5px;
	padding-top: 10px;
	background: lightgray;
	border: 1px solid black;
	margin: 5px;
	position: relative;
}

/*image viewer: image thumbnail*/
.thumbnail{
	max-width: 200px;
	max-height: 190px;
}

/*image viewer: thumbnail caption*/
.thumbnail-text{
	width: 200px; /*same size as thumbnail-container*/
	bottom: 10px;
	left: 50%;
	margin-left: -100px;
	position: absolute;
	background-color: lightgray;
}

/*wiki images*/
.wiki-image {
	border: 5px solid gray;
	padding: 5px; /*Inner border size*/
	background: white; /*Inner border color*/
	max-width: 250px;
	text-align: center;
	margin: 10px;
	margin-right: 0px;
	float: right;
}

/* Recall logo*/
.logo{
	border: 5px solid gray;
	padding: 5px; /*Inner border size*/
	background: white; /*Inner border color*/
	text-align: center;
	margin-top: 15px;
}

/*image resized (by width)*/
.resize {
	max-width: 240px;
	max-height : 200px;
}

/*image caption*/
.caption{
	text-align: justify;
	font-size: 11px;
}

/* div in menu for adding pages */
#new-page{
	text-align: left;
	margin-top: 1em;
}

/* div that pops up when a new page is added */
#new-page-details{
	text-align: left;
	margin-top: 5px;
	height: 120px;
}

/* textarea for editing page content */
#contentTA{
	height: 400px;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
}

label{
  font-weight: bold;
  color: #4d9b12;
  font-style: normal;
  font-size: 13px;
}

/* links that act like buttons */
a.pseudo-button{
	border: 2px solid gray;
	color: black;
	padding: 2px 5px;
	margin-left: 5px;
	float: right;
	background-color: lightgray;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* link hover action*/
a:hover{
	text-decoration: none;
	cursor: pointer;
}

/* general tab settings */
ul#tabnav { 
	text-align: left; /* set to left, right or center */
	margin-bottom: 5px;
	margin-left: 10px;
	font: bold 12px verdana, arial, sans-serif; /* set font as desired */
	list-style-type: none;
	padding-left: 50px;
}

/* ul - menu of pages*/
ul#menu-list{
	text-align: left;
	padding-left: 1em;
	margin: 0px;
	margin-top: 5px;
}

/* li - menu of pages*/
#menu-list li{
	font-size: 12px;
}

/*container of tabs*/
ul#tabnav {
	margin-bottom: 2px;
}

/* settings for all tab links */
ul#tabnav li{
	display: inline;
	padding: 2px 6px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
	border: 2px solid black; /* set border COLOR as desired; usually matches border color specified in #tabnav */
	background-color: white; /* set unselected tab background color as desired */
	color: gray; /* set unselected tab link color as desired */
	text-decoration: none;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-radius: 5px;
	cursor: pointer;
}

/* settings for selected tab link */
ul#tabnav li.selected{ 
	color: black; /* set selected tab link color as desired */
	position: relative;
	border-bottom: 2px solid white;
}

/* instructions/reminders given for wiki*/
.wiki-instructions{
	background-color: lightgray;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 11px;
	text-align: left;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* header for wiki content */
.wiki-header{
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 20px;
	border-bottom: 1px solid gray;
	font-weight: bold;
}

/* subheader for wiki content */
.wiki-subheader{
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: bold;
}

/* wiki content <ul> */
.wiki-ul{
	margin: 2px;
}