/* For each item in flowchart. Creates drop shadow effect. */

body {
margin: 0 auto;
font-size:90%;
}

.shadow{
	background-color: #ff3; /*shadow color*/
	color: inherit;
	margin-left: 4px;
	margin-top: 4px;
	position:absolute;
	width:auto;
	max-width:157px;
	cursor: pointer;
}

.field{
	max-width:108px;
}

.content{
	background-color: #fff; /*background color of content*/
	color: #000; /*text color of content*/
	border: 1px solid #000; /*border color*/
	padding: .1em 1ex;
	position: relative;
	bottom: 2px;
	right: 2px;
	max-width:157px;
	/*cursor: pointer;*/
}

#resetButton{

	position:absolute;
	border: 1px solid #000;
	padding: .1em 1ex;
	cursor: pointer;
}

#fc_table{
	position: absolute;
	border-collapse:collapse;
    border-color: black;
	/*border: thin solid black;*/
}
/*
#fc_table tr{
   border: thin solid black;
}

*/
#fc_table td{
   border-color: black;
}


.spacer{
	border-top:none;
	border-bottom:none;
}

.grayedOut{
	opacity: .2;
	filter: alpha(opacity=20);
	cursor: default !important;
}
/************************************************************/
