/*******************************************************************************
 *                                                                             *
 * Colors                                                                      *
 *                                                                             *
 ******************************************************************************/

/*header-background-grey:rgb(82,81,81)*/

.main-anchor-pane {
	-fx-background-color: #E0AE77;
}
.data-label {
	-fx-font-size:16px;
	-fx-fill:#E0AE77;
}
/*******************************************************************************
 *                                                                             *
 * TitledPane                                                                  *
 *                                                                             *
 ******************************************************************************/
.titled-pane {
	-fx-border-color: rgb(76,60,11);
	-fx-border-width: 3px 3px 0 3px;
}
.titled-pane, .accordion {
	-fx-background-radius: 2;
}
.titled-pane > .title {
    -fx-background-color: #7d4609;
    -fx-alignment: CENTER;
    -fx-padding: 0;
    -fx-background-radius: 0;
    -fx-border-color: rgb(76,60,11);
    -fx-border-width: 0 0 2px 0;
}
.titled-pane > .title > .text {
	-fx-fill: #E0AE77;
	-fx-font-size:20px;
	-fx-font-weight: Bold;
}
.titled-pane > .content {
	-fx-background-color: #E09C51;
}

/*******************************************************************************
 *                                                                             *
 * TabbedPane                                                                  *
 *                                                                             *
 ******************************************************************************/
 
.tab-pane:top > .tab-header-area > .headers-region > .tab {
	-fx-pref-width:130px;
	-fx-background-color: rgb(82,81,81);
	-fx-background-radius: 0 0 0 0;
 }
 
.tab-pane:top .tab-label .text {
 	-fx-fill: WHITE;
	-fx-font-size:15px;
	-fx-font-weight: Bold;
 }
 
.tab-pane:top > .tab-header-area > .headers-region > .tab:selected {
	-fx-pref-width:130px;
	-fx-background-color: rgb(60,60,60);
	-fx-background-radius: 5 5 0 0;
 }
 
 /*******************************************************************************
 *                                                                             *
 * Button                                                                      *
 *                                                                             *
 ******************************************************************************/
 
 .button {
 	-fx-background-color: rgb(82,81,81);
 	-fx-alignment:CENTER;
 	-fx-background-radius: 0 0 0 0;
 }
 
 .button:hover {
 	-fx-background-color: rgb(100,100,81);
 	-fx-background-radius: 0 3 0 3;
 }
 
 .button > .text {
 	-fx-fill: WHITE;
	-fx-font-size:16px;
	-fx-font-weight: Bold;
 }
 
 /******************************************************************************
 *                                                                             *
 * TableView                                                                   *
 *                                                                             *
 ******************************************************************************/
 .table-view {
 	
 }
 .table-row-cell {
 	-fx-background-color: rgb(60,60,60);
 	-fx-border-color: WHITE;
    -fx-border-width: 0 0 2px 0;
 }
 .table-row-cell:selected {
 	-fx-border-color: BLACK;
 	-fx-border-width: 2px;
 }
 .table-row-cell:hover {
 	-fx-background-color: rgb(80,80,80);
 }
 .table-row-cell .text{
 	-fx-fill: WHITE;
 }
 .equipped {
 	-fx-border-color: YELLOW;
 	-fx-border-width:2px;
 	-fx-background-color: BLUE;
 }