﻿/*JMJ*/
@import url(//fonts.googleapis.com/css?family=Yatra+One);

/*-------------- SVG Styles ---------------*/
/*Groups*/
svg #cuerpo {
	stroke: chocolate;
	stroke-width: 1;
	fill: bisque;
}
svg #bones {
	stroke: gray;
	stroke-width: 3;
	fill: honeydew;
}
svg #muscles {
	stroke: brown;
	stroke-width: 1;
	fill: indianred;
}
svg #tendons {
	stroke: black;
	stroke-width: 1;
	fill: black;
}
svg #arteries {
	stroke: darkred;
	stroke-width: 3;
	fill: pink;
}
svg #veins {
	stroke: blue;
	stroke-width: 3;
	fill: darkturquoise;
}
svg #nerves {
	stroke: darkgoldenrod;
	stroke-width: 1;
	fill: goldenrod;
}
/*Highlight items during cursor hover (but not the outer surface)*/
svg *:not(#cuerpo) :hover {
	stroke: red;
	stroke-width: 5;
}
/*Highlight items when their button is clicked*/
svg .highlight {
	stroke: purple;
	stroke-width: 5;
}

/*---------------------- Page Styles ------------------------*/
h1 {
    text-align: center;
	color: firebrick;
	font-family: 'Yatra One', serif;
}
.bodytainer {
	width: 816px;
}
.left-column {
	float:left;
	width: 200px;
}
.center-column {
	display: inline-block;
	width: 400px;
	margin: 0px 4px;
}
.right-column {
	float:right;
	width: 200px;
}
#drawing {
	width: 400px;
	border: 2px solid maroon;
}
/*Hide the checkbox element; will only show and style its label*/
.hidden {
	position:absolute;
	visibility:hidden;
	opacity:0;
}
input[type=checkbox] + label {
	width: 200px;
	color: black;
	font: arial, sans-serif;
	background-color: lemonchiffon;
	border: solid 1px black;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 5px;
	display:inline-block;
	padding: 2px 0px;
} 
input[type=checkbox]:checked + label {
	color: purple;
  	border: solid 1px purple;
	background-color: plum;
}
label {
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
input[type=checkbox] + label:hover {
	color: red;
}
.highlight-button {
	width: 200px;
	margin-bottom: 5px;
}
.heading {
	color: maroon;
	margin-top: 0px;
	margin-bottom: 5px;
	text-align: center;
	font-weight: bold;
}

/*Styling for the hovered item label*/
#label-display {
	width: 400px;
	height: 100px;
	border: 2px solid maroon;
	padding:5px;
	margin-top: 4px;
}
.structure-name {
	margin-top: 20px;
	font: 20px arial, sans-serif;
	text-align: center;
	color: red;
}
.structure-description {
	font: 15px arial, sans-serif;
}
/*--------------- AddItem Page ----------------------*/
.left {
	float: left;
}
.clear {
	clear: both;
}
.additem .medium {
	width: 400px;
}
.additem .wide {
	width: 800px;
}
.input-group {
	margin: 10px;
}
.input-group label {
	display: inline-block;
	margin-left: 20px;
	width: 100px;
	vertical-align:top;
}
.input-group label.narrow {
	width: 60px;
}
.input-group label.wide {
	width: 150px;
}
.input-group label.widest {
	width: 200px;
}
textarea.xml {
	width: 750px;
	height: 400px;
}
.path-item {
	margin: 5px;
	border: blue solid 1px;
	padding: 5px;
}

/*--------------- Modal Dialog ----------------------*/
#overlay { /*Takes care of hiding/fullscreening the #overlay (i.e. the modal content) */
     visibility: hidden;
     position: absolute;
     left: 0px;
     top: 0px;
     width:100%;
     height:100%;
     text-align:center;
     z-index: 1000;
	 background-color:rgba(0, 0, 0, 0.5);
}
#overlay div {/*Styles the inner div of the overlay (i.e. the content) such as with center on page */
     width:300px;
     margin: 100px auto;
     background-color: #fff;
     border:1px solid #000;
     padding:15px;
     text-align:center;
}
