@charset "utf-8";
/* CSS Document */


.cursorCopy { text-align:center; border:none; }


.maxResults
{
	background-color: #FFFFcc;
	font-size: 25px;
	padding: 10px;
	margin: 15px;
	
	border: 1px solid #444400;
	
	background: #ffffff;
	
	background: -moz-linear-gradient(top, #FFFF99, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFF99), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#FFFF99', endColorstr = '#ffffff' );
}

.beliefEditDiv
{
	display: none;
	position: absolute;
	top: -20px;
	left: 0px;
	width: 90%;
	padding: 15px;
	
	z-index: 2000;
	
	border: 1px dashed olive;
	
	box-shadow: 3px 3px 10px #000000;
	
	background: #e8ddee;
	
	background: -moz-linear-gradient(top, #e8ddee, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#e8ddee), to(#ffffff));
	
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#e8ddee', endColorstr = '#ffffff' ),
			progid:DXImageTransform.Microsoft.Shadow (color='#333333',Direction=135, Strength=7);
}

.beliefEditSupportDiv
{
	display: none;
	position: absolute;
	top: -20px;
	left: 50px;
	width: 80%;
	padding: 15px;
	
	z-index: 2000;
	
	border: 1px dashed olive;
	
	box-shadow: 3px 3px 10px #000000;
	
	background: #cce3cc;
	
	background: -moz-linear-gradient(top, #cce3cc, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#cce3cc), to(#ffffff));
		
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#cce3cc', endColorstr = '#ffffff' ),
			progid:DXImageTransform.Microsoft.Shadow (color='#333333',Direction=135, Strength=7);
}



.beliefEditCancelButton
{
	margin-left: 7px;
}

.beliefEditTextField
{
	width: 100%;
	margin-bottom: 6px;
}

.beliefRow
{
	margin: 5px;
	padding: 7px;
	border: 1px dahsed gray;
	
	background: #ffffff;
	
	background: -moz-linear-gradient(top, #f3f3f3, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#f3f3f3', endColorstr = '#ffffff' );
}
.beliefName
{
	margin: 15px;
	font-size: 25px;
	font-weight: bold;
	display: block;
}
.beliefControl
{
	position: relative;
	display: block;
	margin: 10px;
}


A.AddOrFilter
{
	color: #000000;
	text-decoration: none;
}
A.AddOrFilter:HOVER
{
	color: #000066;
	text-decoration: underline;
}


/* --- This class is used on buttons which are the source of of the "pinned filter" --- */
/* --- Only one belief is allowed to hold a pin within the list.  Pinning another belief will release the previous one (if one exists).  --- */
/* --- It is important to change the color (relative to the "create pin" buttons) in order to distinguish the row.   --- */
A.beliefPinRelease
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #FFDDD6;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #ffcc99;
	
	background: -moz-linear-gradient(top, #ffcc99, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffcc99), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ffcc99', endColorstr = '#ffffff' );
}
A.beliefPinRelease:HOVER
{
	background-color: #FFccdd;
	box-shadow: none;
	
	background: #ffcc33;
	
	background: -moz-linear-gradient(top, #ff9966, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ff9966), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ff9966', endColorstr = '#ffffff' );
}


/* --- This class is shared by any buttons which are responsible for pinning a belief (i.e. pinning up the support beliefs, or pinning up a belief index). --- */
A.beliefPinCreate
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #bbbbbb;
	
	background: -moz-linear-gradient(top, #bbbbbb, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#bbbbbb', endColorstr = '#ffffff' );
}
A.beliefPinCreate:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
	
	background: #9999FF;
	
	background: -moz-linear-gradient(top, #9999FF, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#9999FF), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#9999FF', endColorstr = '#ffffff' );
}




A.beliefCompleteChangeFalse
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #FFDDD6;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #ffffff;
	
	background: -moz-linear-gradient(top, #ffcc99, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffcc99), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ffcc99', endColorstr = '#ffffff' );
}
A.beliefCompleteChangeFalse:HOVER
{
	background-color: #FFccdd;
	box-shadow: none;
	
	background: #ff9966;
	
	background: -moz-linear-gradient(top, #ff9966, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ff9966), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ff9966', endColorstr = '#ffffff' );
}


A.beliefCompleteChangeTrue
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #bbbbbb;
	
	background: -moz-linear-gradient(top, #bbbbbb, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#bbbbbb', endColorstr = '#ffffff' );
}
A.beliefCompleteChangeTrue:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
	
	background: #9999FF;
	
	background: -moz-linear-gradient(top, #9999FF, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#9999FF), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#9999FF', endColorstr = '#ffffff' );
}



A.beliefDelete
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #bbbbbb;
	
	background: -moz-linear-gradient(top, #bbbbbb, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#bbbbbb', endColorstr = '#ffffff' );
}
A.beliefDelete:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
	
	background: #ff9999;
	
	background: -moz-linear-gradient(top, #ff9999, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ff9999), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ff9999', endColorstr = '#ffffff' );
}

A.beliefPinUp
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
}
A.beliefPinUp:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
}

A.newBeliefUnder
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #bbbbbb;
	
	background: -moz-linear-gradient(top, #bbbbbb, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#bbbbbb', endColorstr = '#ffffff' );
}
A.newBeliefUnder:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
	
	background: #99FF99;
	
	background: -moz-linear-gradient(top, #99FF99, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFF99), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#99FF99', endColorstr = '#ffffff' );
}


A.statusButton
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: #005500;
	font-weight: bold;
	padding: 2px;
	font-size: 25px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #bbbbbb;
	
	background: -moz-linear-gradient(top, #bbbbbb, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#bbbbbb', endColorstr = '#ffffff' );
}
A.statusButton:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
	
	background: #99FF99;
	
	background: -moz-linear-gradient(top, #99FF99, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFF99), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#99FF99', endColorstr = '#ffffff' );
}


A.linkingMenuDisplay
{
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 15px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #bbbbbb;
	
	background: -moz-linear-gradient(top, #bbbbbb, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#bbbbbb', endColorstr = '#ffffff' );
}
A.linkingMenuDisplay:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
	
	background: #99FF99;
	
	background: -moz-linear-gradient(top, #99FF99, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFF99), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#99FF99', endColorstr = '#ffffff' );
}



A.beliefSupportDelete
{
	
	margin: 5px;
	margin-right: 16px;
	border: 1px dotted #336699;
	background-color: #EEEEEE;
	text-decoration: none;
	color: black;
	font-weight: bold;
	padding: 2px;
	font-size: 12px;
	box-shadow: 1px 1px 1px #000000;
	
	background: #bbbbbb;
	
	background: -moz-linear-gradient(top, #bbbbbb, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#bbbbbb', endColorstr = '#ffffff' );
}
A.beliefSupportDelete:HOVER
{
	background-color: #ddeeff;
	box-shadow: none;
	
	background: #FF9900;
	
	background: -moz-linear-gradient(top, #FF9900, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFF99), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#FF9900', endColorstr = '#ffffff' );
}



#addBelief
{
	margin-left: 5px;
	width: 50%;
}



.errorMessage
{
	color: #FF0000;
	font-weight: bold;
}

#addNewBeliefForm
{
	width: 95%;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px dashed black;
	
	background: #ffffff;
	
	background: -moz-linear-gradient(top, #cccccc, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#cccccc', endColorstr = '#ffffff' ),
			progid:DXImageTransform.Microsoft.Shadow (color='#333333',Direction=135, Strength=7);
	box-shadow: 3px 3px 10px #000000;
	
}

.beliefSupportDiv
{
	margin-left: 90px;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 3px;
	
}

.beliefSupportFirstLevel
{
	position: relative;
	padding: 6px;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
}

.beliefUses
{
	position: relative;
	font-size: 15px;
	margin-right: 10px;
	text-decoration: underline;
	
}
.beliefUses:HOVER
{
	text-decoration: none;
}
.linkingBeliefs
{
	display: none;
	position: absolute;
	width: 800px;;
	left: -10px;
	top: 34px;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px dashed brown;
	
	background: #e4eedd;
	
	background: -moz-linear-gradient(top, #e4eedd, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#e4eedd), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#e4eedd', endColorstr = '#ffffff' );
	
	box-shadow: 3px 3px 10px #000000;
	z-index: 1500;
}
.formGroup
{
	display: inline;
	margin-right: 25px;
}

.beliefSupportPyramid
{
	margin-left: 30px;
	margin-top: 7px;
	border: 1px solid #FFFFFF;
	padding: 5px;
}
.beliefSupportPyramid:HOVER
{
	border: 1px solid #cccccc;
}

#filterParentLinks
{
	display: inline;
	margin-left: 10px;
}

#filterListSort
{
	display: inline;
	margin-left: 10px;
}
#filterStatus
{
	display: inline;
	margin-left: 10px;
}

#filtersDiv
{
	margin-top: 7px;
	padding: 5px;
}
#filterResultsDiv
{
	display: inline;
}
#filterLinksDiv
{
	margin-left: 20px;
	display: inline;
}


A.EditSupportingBelief
{
	text-decoration: none;
	color: black;
}
A.EditSupportingBelief:HOVER
{
	text-decoration: underline;
	color: #224499;
}

A.BeliefEdit
{
	text-decoration: none;
	color: black;
}
A.BeliefEdit:HOVER
{
	text-decoration: underline;
	color: #224499;
}

A.expandBelief
{
	font-weight: bold;
	padding: 3px;
	text-decoration: none;
	color: #999999;
	border: 1px solid #dddddd;
	
	background: #ffff66;
	
	background: -moz-linear-gradient(top, #ffffff, #ffff66);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffff66));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ffffff', endColorstr = '#ffff66' );
}
A.expandBelief:HOVER
{
	color: #224499;
	border: 1px solid #999999;
	
	background: #ffff00;
	
	background: -moz-linear-gradient(top, #ffffff, #ffff66);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffff66));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ffffff', endColorstr = '#ffff66' );
}

A.collapseBelief
{
	padding: 3px;
	text-decoration: none;
	color: #999999;
	border: 1px solid #dddddd;
	
	background: #ffffee;
	
	background: -moz-linear-gradient(top, #ffffee, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffee), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ffffee', endColorstr = '#ffffff' );
}
A.collapseBelief:HOVER
{
	color: #224499;
	border: 1px solid #999999;
	
	background: #ffff66;
	
	background: -moz-linear-gradient(top, #ffff66, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffff66), to(#ffffff));
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#ffff66', endColorstr = '#ffffff' );
}

A.collapseLinkSupportPyramid
{
	font-size: 12px;
	margin-right: 7px;
	
	padding-left: 3px;
	padding-right: 3px;
}

A.collapseLinkSupportLevel2
{
	font-size: 14px;
	margin-right: 10px;
	
	padding-left: 5px;
	padding-right: 5px;
}
A.collapseLinkMain
{
	font-size: 18px;
	margin-right: 13px;
	
	padding-left: 5px;
	padding-right: 5px;
}

.thinkingMessage
{
	display:inline;
	margin-left: 100px;
	font-weight: bold;
	color: #0000CC;
	font-size: 16px;
	width: 100%;
	text-align: center;
}

.newBeliefUnderDivInner
{
	display: none;
	position: relative;
	top: -20px;
	left: 0px;
	width: 90%;
	padding: 15px;
	
	z-index: 3000;
	
	border: 1px dashed olive;
	
	box-shadow: 3px 3px 10px #000000;
	
	background: #ffffff;
	
	background: -moz-linear-gradient(top, #eeeecc, #ffffff);
	background: -webkit-gradient(linear, left top, left bottom, from(#eeeecc), to(#ffffff));
	
	filter: progid:DXImageTransform.Microsoft.gradient ( startColorstr ='#eeeecc', endColorstr = '#ffffff' ),
			progid:DXImageTransform.Microsoft.Shadow (color='#333333',Direction=135, Strength=7);
}
.newBeliefUnderDiv
{
	position: relative;
	display: inline;
	padding-left: 5px;
	padding-right: 5px;
}

#controlBar
{
	position: fixed;
	top:12px;
	left: 0px;
	margin-left: 20px;
	z-index: 50000;
	width: 95%
}

#beliefsMap
{
	margin-top: 20px;
}

.beliefSupportLinkingDiv
{
	padding: 10px;
}

.filterTextField
{
	width: 200px;
}


.BeliefCompleteNo
{
	color: #990000;
	font-style: italic;
}
A.BeliefCompleteNo
{
	color: #660000;
	font-style: italic;
}

.BeliefCompleteYes
{
	color: #000000;
}
A.BeliefCompleteYes
{
	color: #000000;
}

.topBeliefMessage{
	font-weight: bold;
	color: #009900;
}

.contradictedFont{
	text-decoration: line-through;
}
.vindicatedFont{
	text-decoration: underline;
}


</style>
