@charset "UTF-8";

/*******************************************************************************
 * Set the item style (table layout)
 *******************************************************************************/
.AccTable-Base {
	display: table;
}

.AccTable-Base div.AccTable-Row {
	display: table-row;
}

.AccTable-Base div.AccTable-Cell {
	font-size: 1.4rem;
	display: table-cell;
	border: none;
}

.AccTable-HeadBase {
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
}

.AccTable-HeadBase div.AccTable-HeadRow {
	display: table-row;
}

.AccTable-HeadBase div.AccTable-HeadCell {
	font-size: 1.4rem;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	color: #fff;
	padding: 1px 1px 1px 1px;
	background-color: #205081;
	border-left: solid 1px #fff;
	border-right: solid 1px #fff;
}

.AccTable-HeadBase div.AccTable-HeadCell:first-child {
	border-left: solid 1px #205081;
}

.AccTable-HeadBase div.AccTable-HeadCell:last-child {
	border-right: solid 1px #205081;
}

.AccTable-DataBase {
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
}

.AccTable-DataBase div.AccTable-DataRow {
	display: table-row;
}

.AccTable-DataBase div.AccTable-DataRow:hover div.AccTable-DataCell {
	background-color: #fff8b0;
}

.AccTable-DataBase div.AccTable-DataCell {
	font-size: 1.4rem;
	display: table-cell;
	padding: 1px 3px 1px 3px;
	border-left: solid 1px #205081;
	border-right: solid 1px #205081;
	border-bottom: solid 1px #205081;
}

.AccTable-Norm {
	width: 100%;
}

.AccTable-NormSep {
	background: #205081;
	border: none;
	width: 100%;
	height: 4px;
	margin-top: -1px;
}

.AccTable-Scroll {
	overflow-y: scroll;
	width: 100%;
}

.AccTable-ScrollNone {
	overflow-y: hidden;
	width: calc(100% - 17px)
}

.AccTable-ScrollSep {
	background: #205081;
	border: none;
	width: calc(100% - 17px);
	height: 3px
}

/*******************************************************************************
 * Set the item style (table fields)
 *******************************************************************************/
.AccTable-InputBox {
	width: 100%;
	border: solid 1px #205081;
	border-radius: 2px;
}

.AccTable-InputBase {
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
}

.AccTable-InputBase div.AccTable-InputRow {
	display: table-row;
}

.AccTable-InputBase div.AccTable-InputCell {
	font-size: 1.4rem;
	display: table-cell;
	padding: 5px 5px 5px 10px;
	border-bottom: solid 1px #205081;
}

.AccTable-InputBase div.AccTable-InputRow>div.AccTable-InputCell:first-child
	{
	border-right: solid 1px #205081;
}

.AccTable-InputBase div.AccTable-InputRow>div.AccTable-InputCell:last-child
	{
	border-right: none;
}

.AccTable-InputBase div.AccTable-InputRow:first-child>div.AccTable-InputCell:first-child
	{
	border-top-left-radius: 2px;
}

.AccTable-InputBase div.AccTable-InputRow:first-child>div.AccTable-InputCell:last-child
	{
	border-top-right-radius: 2px;
}

.AccTable-InputBase div.AccTable-InputRow:last-child>div.AccTable-InputCell:first-child
	{
	border-bottom-left-radius: 2px;
}

.AccTable-InputBase div.AccTable-InputRow:last-child>div.AccTable-InputCell:last-child
	{
	border-bottom-right-radius: 2px;
}

.AccTable-InputBase div.AccTable-InputRow:last-child>div.AccTable-InputCell
	{
	border-bottom: none;
}

.AccTable-InputRow-LastChild {

}

.AccTable-InputBase div.AccTable-InputRow[class~="AccTable-InputRow-LastChild"]>div.AccTable-InputCell
	{
	border-bottom: none;
}

/*******************************************************************************
 * Set the item style (button)
 *******************************************************************************/
.AccItem-Button {
	font-size: 1.4rem;
	cursor: pointer;
	border-radius: 2px;
}

.AccItem-Button-a01 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 2px 10px;
	border-radius: 2px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Button-a02 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 4px 15px;
	border-radius: 2px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Button-a03 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 6px 20px;
	border-radius: 2px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Button-a04 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 2px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Button-a05 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 12px 30px;
	border-radius: 2px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Button-a01:hover, .AccItem-Button-a02:hover,
	.AccItem-Button-a03:hover, .AccItem-Button-a04:hover,
	.AccItem-Button-a05:hover {
	color: #333;
	background-color: #c7c7c7;
	border-color: #adadad;
}

.AccItem-Button-b01 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 2px 10px;
	border-radius: 2px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Button-b02 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 4px 15px;
	border-radius: 2px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Button-b03 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 6px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Button-b04 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Button-b05 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 12px 30px;
	border-radius: 2px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Button-b01:hover, .AccItem-Button-b02:hover,
	.AccItem-Button-b03:hover, .AccItem-Button-b04:hover,
	.AccItem-Button-b05:hover {
	color: #fff;
	background-color: #696969;
	border-color: #5e5e5e;
}

.AccItem-Button-c01 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 2px 10px;
	border-radius: 2px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Button-c02 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 4px 15px;
	border-radius: 2px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Button-c03 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 6px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Button-c04 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Button-c05 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 12px 30px;
	border-radius: 2px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Button-c01:hover, .AccItem-Button-c02:hover,
	.AccItem-Button-c03:hover, .AccItem-Button-c04:hover,
	.AccItem-Button-c05:hover {
	color: #fff;
	background-color: #449d44;
	border-color: #398439;
}

.AccItem-Button-d01 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 2px 10px;
	border-radius: 2px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Button-d02 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 4px 15px;
	border-radius: 2px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Button-d03 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 6px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Button-d04 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Button-d05 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 12px 30px;
	border-radius: 2px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Button-d01:hover, .AccItem-Button-d02:hover,
	.AccItem-Button-d03:hover, .AccItem-Button-d04:hover,
	.AccItem-Button-d05:hover {
	color: #fff;
	background-color: #286090;
	border-color: #204d74;
}

.AccItem-Button-e01 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 2px 10px;
	border-radius: 2px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Button-e02 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 4px 15px;
	border-radius: 2px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Button-e03 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 6px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Button-e04 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Button-e05 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 12px 30px;
	border-radius: 2px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Button-e01:hover, .AccItem-Button-e02:hover,
	.AccItem-Button-e03:hover, .AccItem-Button-e04:hover,
	.AccItem-Button-e05:hover {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512;
}

.AccItem-Button-f01 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 2px 10px;
	border-radius: 2px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Button-f02 {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 4px 15px;
	border-radius: 2px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Button-f03 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 6px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Button-f04 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 2px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Button-f05 {
	font-size: 1.4rem;
	cursor: pointer;
	padding: 12px 30px;
	border-radius: 2px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Button-f01:hover, .AccItem-Button-f02:hover,
	.AccItem-Button-f03:hover, .AccItem-Button-f04:hover,
	.AccItem-Button-f05:hover {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925;
}

/*******************************************************************************
 * Set the item style (toggle)
 *******************************************************************************/
.AccItem-Toggle-Base {

}

.AccItem-Toggle-Base button.AccItem-Toggle-a01 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 2px 10px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a02 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 4px 15px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a03 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 6px 20px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a04 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 10px 20px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a05 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 12px 30px;
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a01:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a02:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a03:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a04:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a05:first-child {
	margin-left: 0;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a01:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a02:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a03:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a04:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-a05:last-child {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a01:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-a02:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-a03:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-a04:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-a05:hover {
	color: #333;
	background-color: #c7c7c7;
	border-color: #adadad;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a01.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-a02.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-a03.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-a04.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-a05.active {
	color: #333;
	background-color: #c7c7c7;
	border-color: #adadad;
}

.AccItem-Toggle-Base button.AccItem-Toggle-a01.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-a02.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-a03.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-a04.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-a05.inactive {
	color: #333;
	background-color: #dedede;
	border: solid 1px #b7b7b7;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b01 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 2px 10px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b02 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 4px 15px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b03 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 6px 20px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b04 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 10px 20px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b05 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 12px 30px;
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b01:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b02:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b03:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b04:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b05:first-child {
	margin-left: 0;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b01:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b02:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b03:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b04:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-b05:last-child {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b01:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-b02:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-b03:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-b04:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-b05:hover {
	color: #fff;
	background-color: #696969;
	border-color: #5e5e5e;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b01.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-b02.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-b03.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-b04.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-b05.active {
	color: #fff;
	background-color: #696969;
	border-color: #5e5e5e;
}

.AccItem-Toggle-Base button.AccItem-Toggle-b01.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-b02.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-b03.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-b04.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-b05.inactive {
	color: #fff;
	background-color: #828282;
	border: solid 1px #757575;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c01 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 2px 10px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c02 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 4px 15px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c03 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 6px 20px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c04 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 10px 20px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c05 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 12px 30px;
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c01:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c02:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c03:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c04:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c05:first-child {
	margin-left: 0;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c01:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c02:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c03:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c04:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-c05:last-child {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c01:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-c02:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-c03:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-c04:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-c05:hover {
	color: #fff;
	background-color: #449d44;
	border-color: #398439;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c01.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-c02.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-c03.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-c04.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-c05.active {
	color: #fff;
	background-color: #449d44;
	border-color: #398439;
}

.AccItem-Toggle-Base button.AccItem-Toggle-c01.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-c02.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-c03.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-c04.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-c05.inactive {
	color: #fff;
	background-color: #5cb85c;
	border: solid 1px #4cae4c;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d01 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 2px 10px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d02 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 4px 15px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d03 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 6px 20px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d04 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 10px 20px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d05 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 12px 30px;
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d01:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d02:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d03:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d04:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d05:first-child {
	margin-left: 0;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d01:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d02:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d03:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d04:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-d05:last-child {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d01:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-d02:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-d03:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-d04:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-d05:hover {
	color: #fff;
	background-color: #286090;
	border-color: #204d74;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d01.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-d02.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-d03.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-d04.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-d05.active {
	color: #fff;
	background-color: #286090;
	border-color: #204d74;
}

.AccItem-Toggle-Base button.AccItem-Toggle-d01.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-d02.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-d03.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-d04.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-d05.inactive {
	color: #fff;
	background-color: #337ab7;
	border: solid 1px #2e6da4;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e01 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 2px 10px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e02 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 4px 15px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e03 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 6px 20px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e04 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 10px 20px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e05 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 12px 30px;
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e01:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e02:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e03:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e04:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e05:first-child {
	margin-left: 0;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e01:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e02:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e03:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e04:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-e05:last-child {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e01:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-e02:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-e03:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-e04:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-e05:hover {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e01.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-e02.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-e03.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-e04.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-e05.active {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512;
}

.AccItem-Toggle-Base button.AccItem-Toggle-e01.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-e02.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-e03.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-e04.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-e05.inactive {
	color: #fff;
	background-color: #f0ad4e;
	border: solid 1px #eea236;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f01 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 2px 10px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f02 {
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 4px 15px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f03 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 6px 20px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f04 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 10px 20px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f05 {
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: -6px;
	padding: 12px 30px;
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f01:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f02:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f03:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f04:first-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f05:first-child {
	margin-left: 0;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f01:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f02:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f03:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f04:last-child,
	.AccItem-Toggle-Base button.AccItem-Toggle-f05:last-child {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f01:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-f02:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-f03:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-f04:hover,
	.AccItem-Toggle-Base button.AccItem-Toggle-f05:hover {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f01.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-f02.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-f03.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-f04.active,
	.AccItem-Toggle-Base button.AccItem-Toggle-f05.active {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925;
}

.AccItem-Toggle-Base button.AccItem-Toggle-f01.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-f02.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-f03.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-f04.inactive,
	.AccItem-Toggle-Base button.AccItem-Toggle-f05.inactive {
	color: #fff;
	background-color: #d9534f;
	border: solid 1px #d43f3a;
}

/*******************************************************************************
 * Set the item style (link)
 *******************************************************************************/
.AccItem-Link-a01 a {
	color: inherit;
	text-decoration: underline;
}

.AccItem-Link-a01 a:link {
	color: inherit;
	text-decoration: underline;
}

.AccItem-Link-a01 a:visited {
	color: inherit;
	text-decoration: underline;
}

.AccItem-Link-a01 a:hover {
	color: inherit;
	text-decoration: none;
}

/*******************************************************************************
 * Set the item style (input)
 *******************************************************************************/
.AccItem-Input-a01 {
	font-size: 1.4rem;
	padding: 5px 5px 5px 5px;
	border-radius: 2px;
}

.AccItem-Input-b01 {
	font-size: 1.4rem;
	padding: 5px 5px 5px 5px;
	background: #f0f0f0;
	border-radius: 2px;
}

/*******************************************************************************
 * Set the item style (file)
 *******************************************************************************/
.AccItem-File {
	display: none;
}

/*******************************************************************************
 * Set the item style (text)
 *******************************************************************************/
.AccItem-Text-a01 {
	font-family: inherit;
	font-size: 1.4rem;
	line-height: 1.4;
	padding: 5px 5px 5px 5px;
	border-radius: 2px;
}

.AccItem-Text-a02 {
	font-family: inherit;
	font-size: 1.2rem;
	line-height: 1.4;
	padding: 5px 5px 5px 5px;
	border-radius: 2px;
}

.AccItem-Text-b01 {
	font-family: inherit;
	font-size: 1.4rem;
	line-height: 1.4;
	padding: 5px 5px 5px 5px;
	background: #f0f0f0;
	border-radius: 2px;
}

/*******************************************************************************
 * Set the item style (checkbox)
 *******************************************************************************/
.AccItem-CheckBox input[type="checkbox"] {
	vertical-align: middle;
	margin: 8px 5px 8px 0px;
}

.AccItem-CheckBox label {
	font-size: 1.4rem;
	vertical-align: middle;
	cursor: pointer;
}

.AccItem-CheckListBox {
	padding: 3px 5px 3px 5px;
	border: solid 1px #a9a9a9;
}

.AccItem-CheckListBox .AccItem-CheckListBox-a01 {
	border-bottom: solid 1px #a9a9a9;
}

.AccItem-CheckListBox .AccItem-CheckListBox-a01:last-child {
	border-bottom: none;
}

.AccItem-CheckListBox-a01 input[type="checkbox"] {
	vertical-align: middle;
	margin: 0px 2px 2px 2px;
}

.AccItem-CheckListBox-a01 label {
	font-size: 1.4rem;
	vertical-align: middle;
	cursor: pointer;
}

/*******************************************************************************
 * Set the item style (radio)
 *******************************************************************************/
.AccItem-Radio input[type="radio"] {
	vertical-align: middle;
	margin: 8px 5px 8px 0px;
}

.AccItem-Radio label {
	font-size: 1.4rem;
	vertical-align: middle;
	cursor: pointer;
}

/*******************************************************************************
 * Set the item style (select)
 *******************************************************************************/
.AccItem-Select {
	font-family: inherit;
	font-size: 1.4rem;
	line-height: 1.4;
	padding: 1px 2px;
	border-radius: 2px;
	cursor: pointer;
}

/*******************************************************************************
 * Set the item style (box)
 *******************************************************************************/
.AccItem-Box {
	font-size: 1.4rem;
	padding: 4px 4px;
}

.AccItem-Box-a01 {
	font-size: 1.4rem;
	padding: 4px 4px;
	background: #fff;
	border: 1px solid #205081;
	border-radius: 2px;
}

.AccItem-Box-b01 {
	font-size: 1.4rem;
	padding: 4px 4px;
	background: #fff8b0;
	border: 1px solid #205081;
	border-radius: 2px;
}

.AccItem-Box-c01 {
	font-size: 1.4rem;
	padding: 4px 4px;
	background: #fdfdfd;
	border: 1px solid #205081;
	border-radius: 2px;
}

.AccItem-ActionBox-a01 {
	font-size: 1.4rem;
	padding: 10px 10px 10px 10px;
	background: #f0f0f0;
	border: none;
	border-radius: 2px;
}

.AccItem-ActionBox-b01 {
	font-size: 1.4rem;
	padding: 10px 10px 10px 10px;
	background: #e6e6e6;
	border: none;
	border-radius: 2px;
}

.AccItem-InfoBoxLeft-a01 {
	font-size: 1.4rem;
	padding: 4px 4px;
	background: #205081;
	border: 1px solid #205081;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	color: #fff;
	text-align: center;
	width: 200px;
}

.AccItem-InfoBoxRight-a01 {
	font-size: 1.4rem;
	padding: 4px 4px 4px 10px;
	background: #fff;
	border-top: 1px solid #205081;
	border-right: 1px solid #205081;
	border-bottom: 1px solid #205081;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	width: calc(100% - 200px);
}

.AccItem-InfoBoxTop-a01 {
	font-size: 1.4rem;
	padding: 4px 4px 4px 4px;
	background: #205081;
	border: 1px solid #205081;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	color: #fff;
}

.AccItem-InfoBoxBottom-a01 {
	font-size: 1.4rem;
	padding: 4px 4px 4px 4px;
	background: #fff;
	border-left: 1px solid #205081;
	border-right: 1px solid #205081;
	border-bottom: 1px solid #205081;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.AccItem-MsgBox-a01 {
	font-size: 1.4rem;
	padding: 10px 10px 10px 10px;
	color: #3c763d;
	background: #dff0d8;
	border: solid 1px #d6e9c6;
	border-radius: 2px;
}

.AccItem-MsgBox-a01 a {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-a01 a:link {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-a01 a:visited {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-a01 a:hover {
	color: inherit;
	text-decoration: none;
}

.AccItem-MsgBox-b01 {
	font-size: 1.4rem;
	padding: 10px 10px 10px 10px;
	color: #31708f;
	background: #d9edf7;
	border: solid 1px #bce8f1;
	border-radius: 2px;
}

.AccItem-MsgBox-b01 a {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-b01 a:link {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-b01 a:visited {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-b01 a:hover {
	color: inherit;
	text-decoration: none;
}

.AccItem-MsgBox-c01 {
	font-size: 1.4rem;
	padding: 10px 10px 10px 10px;
	color: #8a6d3b;
	background: #fcf8e3;
	border: solid 1px #faebcc;
	border-radius: 2px;
}

.AccItem-MsgBox-c01 a {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-c01 a:link {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-c01 a:visited {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-c01 a:hover {
	color: inherit;
	text-decoration: none;
}

.AccItem-MsgBox-d01 {
	font-size: 1.4rem;
	padding: 10px 10px 10px 10px;
	color: #a94442;
	background: #f2dede;
	border: solid 1px #ebccd1;
	border-radius: 2px;
}

.AccItem-MsgBox-d01 a {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-d01 a:link {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-d01 a:visited {
	color: inherit;
	text-decoration: underline;
}

.AccItem-MsgBox-d01 a:hover {
	color: inherit;
	text-decoration: none;
}

/*******************************************************************************
 * Set the item style (line)
 *******************************************************************************/
.AccItem-Line-a01 {
	border-bottom: 1px solid #205081;
}

.AccItem-Line-b01 {
	border-bottom: 1px dotted #a9a9a9
}

/*******************************************************************************
 * Set the item style (label)
 *******************************************************************************/
.AccItem-InfoLabel-a01 {
	font-size: 1.0rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #828282;
}

.AccItem-InfoLabel-a02 {
	font-size: 1.2rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #828282;
}

.AccItem-InfoLabel-a03 {
	font-size: 1.4rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #828282;
}

.AccItem-InfoLabel-b01 {
	font-size: 1.0rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #00984F;
}

.AccItem-InfoLabel-b02 {
	font-size: 1.2rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #00984F;
}

.AccItem-InfoLabel-b03 {
	font-size: 1.4rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #00984F;
}

.AccItem-InfoLabel-c01 {
	font-size: 1.0rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #337ab7;
}

.AccItem-InfoLabel-c02 {
	font-size: 1.2rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #337ab7;
}

.AccItem-InfoLabel-c03 {
	font-size: 1.4rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #337ab7;
}

.AccItem-InfoLabel-d01 {
	font-size: 1.0rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #f0ad4e;
}

.AccItem-InfoLabel-d02 {
	font-size: 1.2rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #f0ad4e;
}

.AccItem-InfoLabel-d03 {
	font-size: 1.4rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #f0ad4e;
}

.AccItem-InfoLabel-e01 {
	font-size: 1.0rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #d9534f;
}

.AccItem-InfoLabel-e02 {
	font-size: 1.2rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #d9534f;
}

.AccItem-InfoLabel-e03 {
	font-size: 1.4rem;
	padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	border-radius: 15px;
	color: #fff;
	background-color: #d9534f;
}

/*******************************************************************************
 * Set the item style (pre)
 *******************************************************************************/
.AccPreFmt-a01 {
	margin: 2px 0px 2px 0px;
	font-family: inherit;
	font-size: 1.2rem;
	word-wrap: break-word;
	white-space: pre-wrap;
}

.AccPreFmt-a02 {
	margin: 2px 0px 2px 0px;
	font-family: inherit;
	font-size: 1.4rem;
	word-wrap: break-word;
	white-space: pre-wrap;
}

.AccPreFmt-a03 {
	margin: 2px 0px 2px 0px;
	font-family: inherit;
	font-size: 1.6rem;
	word-wrap: break-word;
	white-space: pre-wrap;
}

/*******************************************************************************
 * Set the custom style (color)
 *******************************************************************************/
.AccFColor-Black {
	color: #000;
}

.AccFColor-White {
	color: #fff;
}

.AccFColor-Gray {
	color: #a9a9a9;
}

.AccFColor-DarkGrey {
	color: #707070;
}

.AccFColor-Green {
	color: #008000;
}

.AccFColor-Orange {
	color: #ff5722;
}

.AccFColor-Red {
	color: #ff0000;
}

.AccFColor-Blue {
	color: #0000ff;
}

.AccFColor-MsgGreen {
	color: #3c763d;
}

.AccFColor-MsgOrange {
	color: #8a6d3b;
}

.AccFColor-MsgRed {
	color: #a94442;
}

.AccFColor-MsgBlue {
	color: #31708f;
}

.AccBGColor-Black {
	background-color: #000;
}

.AccBGColor-White {
	background-color: #fff;
}

.AccBGColor-Green {
	background-color: #dff0d8;
}

.AccBGColor-LightGreen {
	background-color: #fafff6;
}

.AccBGColor-DarkGreen {
	background-color: #3d6e00;
}

.AccBGColor-Orange {
	background-color: #fcf8e3;
}

.AccBGColor-Red {
	background-color: #f2dede;
}

.AccBGColor-Blue {
	background-color: #d9edf7;
}

.AccBGColor-LightBlue {
	background-color: #fbfdfe;
}

.AccBGColor-DarkBlue {
	background-color: #205081;
}

.AccBGColor-Yellow {
	background-color: #fff8b0;
}

.AccBGColor-LightYellow {
	background-color: #fff8c4;
}

.AccBGColor-Gray {
	background-color: #e6e6e6;
}

.AccBGColor-LightGray {
	background-color: #f0f0f0;
}

/*******************************************************************************
 * Set the custom style (align, float, display)
 *******************************************************************************/
.AccAlign-Right {
	text-align: right;
}

.AccAlign-Left {
	text-align: left;
}

.AccAlign-Center {
	text-align: center;
}

.AccVAlign-Top {
	vertical-align: top;
}

.AccVAlign-Bottom {
	vertical-align: bottom;
}

.AccVAlign-Middle {
	vertical-align: middle;
}

.AccFloat-None {
	float: none;
}

.AccFloat-Right {
	float: right;
}

.AccFloat-Left {
	float: left;
}

.AccDisp-Inline {
	display: inline;
}

.AccDisp-Block {
	display: block;
}

.AccDisp-Flex {
	display: flex;
}

.AccDisp-InBlock {
	display: inline-block;
}

.AccDisp-InFlex {
	display: inline-flex;
}

/*******************************************************************************
 * Set the custom style (padding)
 *******************************************************************************/
.AccPad-0px {
	padding: 0px;
}

.AccPad-1px {
	padding: 1px;
}

.AccPad-2px {
	padding: 2px;
}

.AccPad-3px {
	padding: 3px;
}

.AccPad-4px {
	padding: 4px;
}

.AccPad-5px {
	padding: 5px;
}

.AccPad-6px {
	padding: 6px;
}

.AccPad-7px {
	padding: 7px;
}

.AccPad-8px {
	padding: 8px;
}

.AccPad-9px {
	padding: 9px;
}

.AccPad-10px {
	padding: 10px;
}

.AccPad-15px {
	padding: 15px;
}

.AccPad-20px {
	padding: 20px;
}

.AccPad-25px {
	padding: 25px;
}

.AccPad-30px {
	padding: 30px;
}

.AccPad-35px {
	padding: 35px;
}

.AccPad-40px {
	padding: 40px;
}

.AccPad-45px {
	padding: 45px;
}

.AccPad-50px {
	padding: 50px;
}

.AccPad-55px {
	padding: 55px;
}

.AccPad-60px {
	padding: 60px;
}

.AccPad-65px {
	padding: 65px;
}

.AccPad-70px {
	padding: 70px;
}

.AccPad-75px {
	padding: 75px;
}

.AccPad-80px {
	padding: 80px;
}

.AccPad-85px {
	padding: 85px;
}

.AccPad-90px {
	padding: 90px;
}

.AccPad-95px {
	padding: 95px;
}

.AccPad-100px {
	padding: 100px;
}

.AccPad-Top-0px {
	padding-top: 0px;
}

.AccPad-Top-1px {
	padding-top: 1px;
}

.AccPad-Top-2px {
	padding-top: 2px;
}

.AccPad-Top-3px {
	padding-top: 3px;
}

.AccPad-Top-4px {
	padding-top: 4px;
}

.AccPad-Top-5px {
	padding-top: 5px;
}

.AccPad-Top-6px {
	padding-top: 6px;
}

.AccPad-Top-7px {
	padding-top: 7px;
}

.AccPad-Top-8px {
	padding-top: 8px;
}

.AccPad-Top-9px {
	padding-top: 9px;
}

.AccPad-Top-10px {
	padding-top: 10px;
}

.AccPad-Top-15px {
	padding-top: 15px;
}

.AccPad-Top-20px {
	padding-top: 20px;
}

.AccPad-Top-25px {
	padding-top: 25px;
}

.AccPad-Top-30px {
	padding-top: 30px;
}

.AccPad-Top-35px {
	padding-top: 35px;
}

.AccPad-Top-40px {
	padding-top: 40px;
}

.AccPad-Top-45px {
	padding-top: 45px;
}

.AccPad-Top-50px {
	padding-top: 50px;
}

.AccPad-Top-55px {
	padding-top: 55px;
}

.AccPad-Top-60px {
	padding-top: 60px;
}

.AccPad-Top-65px {
	padding-top: 65px;
}

.AccPad-Top-70px {
	padding-top: 70px;
}

.AccPad-Top-75px {
	padding-top: 75px;
}

.AccPad-Top-80px {
	padding-top: 80px;
}

.AccPad-Top-85px {
	padding-top: 85px;
}

.AccPad-Top-90px {
	padding-top: 90px;
}

.AccPad-Top-95px {
	padding-top: 95px;
}

.AccPad-Top-100px {
	padding-top: 100px;
}

.AccPad-Right-0px {
	padding-right: 0px;
}

.AccPad-Right-1px {
	padding-right: 1px;
}

.AccPad-Right-2px {
	padding-right: 2px;
}

.AccPad-Right-3px {
	padding-right: 3px;
}

.AccPad-Right-4px {
	padding-right: 4px;
}

.AccPad-Right-5px {
	padding-right: 5px;
}

.AccPad-Right-6px {
	padding-right: 6px;
}

.AccPad-Right-7px {
	padding-right: 7px;
}

.AccPad-Right-8px {
	padding-right: 8px;
}

.AccPad-Right-9px {
	padding-right: 9px;
}

.AccPad-Right-10px {
	padding-right: 10px;
}

.AccPad-Right-15px {
	padding-right: 15px;
}

.AccPad-Right-20px {
	padding-right: 20px;
}

.AccPad-Right-25px {
	padding-right: 25px;
}

.AccPad-Right-30px {
	padding-right: 30px;
}

.AccPad-Right-35px {
	padding-right: 35px;
}

.AccPad-Right-40px {
	padding-right: 40px;
}

.AccPad-Right-45px {
	padding-right: 45px;
}

.AccPad-Right-50px {
	padding-right: 50px;
}

.AccPad-Right-55px {
	padding-right: 55px;
}

.AccPad-Right-60px {
	padding-right: 60px;
}

.AccPad-Right-65px {
	padding-right: 65px;
}

.AccPad-Right-70px {
	padding-right: 70px;
}

.AccPad-Right-75px {
	padding-right: 75px;
}

.AccPad-Right-80px {
	padding-right: 80px;
}

.AccPad-Right-85px {
	padding-right: 85px;
}

.AccPad-Right-90px {
	padding-right: 90px;
}

.AccPad-Right-95px {
	padding-right: 95px;
}

.AccPad-Right-100px {
	padding-right: 100px;
}

.AccPad-Bottom-0px {
	padding-bottom: 0px;
}

.AccPad-Bottom-1px {
	padding-bottom: 1px;
}

.AccPad-Bottom-2px {
	padding-bottom: 2px;
}

.AccPad-Bottom-3px {
	padding-bottom: 3px;
}

.AccPad-Bottom-4px {
	padding-bottom: 4px;
}

.AccPad-Bottom-5px {
	padding-bottom: 5px;
}

.AccPad-Bottom-6px {
	padding-bottom: 6px;
}

.AccPad-Bottom-7px {
	padding-bottom: 7px;
}

.AccPad-Bottom-8px {
	padding-bottom: 8px;
}

.AccPad-Bottom-9px {
	padding-bottom: 9px;
}

.AccPad-Bottom-10px {
	padding-bottom: 10px;
}

.AccPad-Bottom-15px {
	padding-bottom: 15px;
}

.AccPad-Bottom-20px {
	padding-bottom: 20px;
}

.AccPad-Bottom-25px {
	padding-bottom: 25px;
}

.AccPad-Bottom-30px {
	padding-bottom: 30px;
}

.AccPad-Bottom-35px {
	padding-bottom: 35px;
}

.AccPad-Bottom-40px {
	padding-bottom: 40px;
}

.AccPad-Bottom-45px {
	padding-bottom: 45px;
}

.AccPad-Bottom-50px {
	padding-bottom: 50px;
}

.AccPad-Bottom-55px {
	padding-bottom: 55px;
}

.AccPad-Bottom-60px {
	padding-bottom: 60px;
}

.AccPad-Bottom-65px {
	padding-bottom: 65px;
}

.AccPad-Bottom-70px {
	padding-bottom: 70px;
}

.AccPad-Bottom-75px {
	padding-bottom: 75px;
}

.AccPad-Bottom-80px {
	padding-bottom: 80px;
}

.AccPad-Bottom-85px {
	padding-bottom: 85px;
}

.AccPad-Bottom-90px {
	padding-bottom: 90px;
}

.AccPad-Bottom-95px {
	padding-bottom: 95px;
}

.AccPad-Bottom-100px {
	padding-bottom: 100px;
}

.AccPad-Left-0px {
	padding-left: 0px;
}

.AccPad-Left-1px {
	padding-left: 1px;
}

.AccPad-Left-2px {
	padding-left: 2px;
}

.AccPad-Left-3px {
	padding-left: 3px;
}

.AccPad-Left-4px {
	padding-left: 4px;
}

.AccPad-Left-5px {
	padding-left: 5px;
}

.AccPad-Left-6px {
	padding-left: 6px;
}

.AccPad-Left-7px {
	padding-left: 7px;
}

.AccPad-Left-8px {
	padding-left: 8px;
}

.AccPad-Left-9px {
	padding-left: 9px;
}

.AccPad-Left-10px {
	padding-left: 10px;
}

.AccPad-Left-15px {
	padding-left: 15px;
}

.AccPad-Left-20px {
	padding-left: 20px;
}

.AccPad-Left-25px {
	padding-left: 25px;
}

.AccPad-Left-30px {
	padding-left: 30px;
}

.AccPad-Left-35px {
	padding-left: 35px;
}

.AccPad-Left-40px {
	padding-left: 40px;
}

.AccPad-Left-45px {
	padding-left: 45px;
}

.AccPad-Left-50px {
	padding-left: 50px;
}

.AccPad-Left-55px {
	padding-left: 55px;
}

.AccPad-Left-60px {
	padding-left: 60px;
}

.AccPad-Left-65px {
	padding-left: 65px;
}

.AccPad-Left-70px {
	padding-left: 70px;
}

.AccPad-Left-75px {
	padding-left: 75px;
}

.AccPad-Left-80px {
	padding-left: 80px;
}

.AccPad-Left-85px {
	padding-left: 85px;
}

.AccPad-Left-90px {
	padding-left: 90px;
}

.AccPad-Left-95px {
	padding-left: 95px;
}

.AccPad-Left-100px {
	padding-left: 100px;
}

/*******************************************************************************
 * Set the custom style (margin)
 *******************************************************************************/
.AccMargin-0px {
	margin: 0px;
}

.AccMargin-1px {
	margin: 1px;
}

.AccMargin-2px {
	margin: 2px;
}

.AccMargin-3px {
	margin: 3px;
}

.AccMargin-4px {
	margin: 4px;
}

.AccMargin-5px {
	margin: 5px;
}

.AccMargin-6px {
	margin: 6px;
}

.AccMargin-7px {
	margin: 7px;
}

.AccMargin-8px {
	margin: 8px;
}

.AccMargin-9px {
	margin: 9px;
}

.AccMargin-10px {
	margin: 10px;
}

.AccMargin-15px {
	margin: 15px;
}

.AccMargin-20px {
	margin: 20px;
}

.AccMargin-25px {
	margin: 25px;
}

.AccMargin-30px {
	margin: 30px;
}

.AccMargin-35px {
	margin: 35px;
}

.AccMargin-40px {
	margin: 40px;
}

.AccMargin-45px {
	margin: 45px;
}

.AccMargin-50px {
	margin: 50px;
}

.AccMargin-55px {
	margin: 55px;
}

.AccMargin-60px {
	margin: 60px;
}

.AccMargin-65px {
	margin: 65px;
}

.AccMargin-70px {
	margin: 70px;
}

.AccMargin-75px {
	margin: 75px;
}

.AccMargin-80px {
	margin: 80px;
}

.AccMargin-85px {
	margin: 85px;
}

.AccMargin-90px {
	margin: 90px;
}

.AccMargin-95px {
	margin: 95px;
}

.AccMargin-100px {
	margin: 100px;
}

.AccMargin-Top-M1px {
	margin-top: -1px;
}

.AccMargin-Top-M2px {
	margin-top: -2px;
}

.AccMargin-Top-M3px {
	margin-top: -3px;
}

.AccMargin-Top-M4px {
	margin-top: -4px;
}

.AccMargin-Top-M5px {
	margin-top: -5px;
}

.AccMargin-Top-M6px {
	margin-top: -6px;
}

.AccMargin-Top-M7px {
	margin-top: -7px;
}

.AccMargin-Top-M8px {
	margin-top: -8px;
}

.AccMargin-Top-M9px {
	margin-top: -9px;
}

.AccMargin-Top-M10px {
	margin-top: -10px;
}

.AccMargin-Top-0px {
	margin-top: 0px;
}

.AccMargin-Top-1px {
	margin-top: 1px;
}

.AccMargin-Top-2px {
	margin-top: 2px;
}

.AccMargin-Top-3px {
	margin-top: 3px;
}

.AccMargin-Top-4px {
	margin-top: 4px;
}

.AccMargin-Top-5px {
	margin-top: 5px;
}

.AccMargin-Top-6px {
	margin-top: 6px;
}

.AccMargin-Top-7px {
	margin-top: 7px;
}

.AccMargin-Top-8px {
	margin-top: 8px;
}

.AccMargin-Top-9px {
	margin-top: 9px;
}

.AccMargin-Top-10px {
	margin-top: 10px;
}

.AccMargin-Top-15px {
	margin-top: 15px;
}

.AccMargin-Top-20px {
	margin-top: 20px;
}

.AccMargin-Top-25px {
	margin-top: 25px;
}

.AccMargin-Top-30px {
	margin-top: 30px;
}

.AccMargin-Top-35px {
	margin-top: 35px;
}

.AccMargin-Top-40px {
	margin-top: 40px;
}

.AccMargin-Top-45px {
	margin-top: 45px;
}

.AccMargin-Top-50px {
	margin-top: 50px;
}

.AccMargin-Top-55px {
	margin-top: 55px;
}

.AccMargin-Top-60px {
	margin-top: 60px;
}

.AccMargin-Top-65px {
	margin-top: 65px;
}

.AccMargin-Top-70px {
	margin-top: 70px;
}

.AccMargin-Top-75px {
	margin-top: 75px;
}

.AccMargin-Top-80px {
	margin-top: 80px;
}

.AccMargin-Top-85px {
	margin-top: 85px;
}

.AccMargin-Top-90px {
	margin-top: 90px;
}

.AccMargin-Top-95px {
	margin-top: 95px;
}

.AccMargin-Top-100px {
	margin-top: 100px;
}

.AccMargin-Right-M1px {
	margin-right: -1px;
}

.AccMargin-Right-M2px {
	margin-right: -2px;
}

.AccMargin-Right-M3px {
	margin-right: -3px;
}

.AccMargin-Right-M4px {
	margin-right: -4px;
}

.AccMargin-Right-M5px {
	margin-right: -5px;
}

.AccMargin-Right-M6px {
	margin-right: -6px;
}

.AccMargin-Right-M7px {
	margin-right: -7px;
}

.AccMargin-Right-M8px {
	margin-right: -8px;
}

.AccMargin-Right-M9px {
	margin-right: -9px;
}

.AccMargin-Right-M10px {
	margin-right: -10px;
}

.AccMargin-Right-0px {
	margin-right: 0px;
}

.AccMargin-Right-1px {
	margin-right: 1px;
}

.AccMargin-Right-2px {
	margin-right: 2px;
}

.AccMargin-Right-3px {
	margin-right: 3px;
}

.AccMargin-Right-4px {
	margin-right: 4px;
}

.AccMargin-Right-5px {
	margin-right: 5px;
}

.AccMargin-Right-6px {
	margin-right: 6px;
}

.AccMargin-Right-7px {
	margin-right: 7px;
}

.AccMargin-Right-8px {
	margin-right: 8px;
}

.AccMargin-Right-9px {
	margin-right: 9px;
}

.AccMargin-Right-10px {
	margin-right: 10px;
}

.AccMargin-Right-15px {
	margin-right: 15px;
}

.AccMargin-Right-20px {
	margin-right: 20px;
}

.AccMargin-Right-25px {
	margin-right: 25px;
}

.AccMargin-Right-30px {
	margin-right: 30px;
}

.AccMargin-Right-35px {
	margin-right: 35px;
}

.AccMargin-Right-40px {
	margin-right: 40px;
}

.AccMargin-Right-45px {
	margin-right: 45px;
}

.AccMargin-Right-50px {
	margin-right: 50px;
}

.AccMargin-Right-55px {
	margin-right: 55px;
}

.AccMargin-Right-60px {
	margin-right: 60px;
}

.AccMargin-Right-65px {
	margin-right: 65px;
}

.AccMargin-Right-70px {
	margin-right: 70px;
}

.AccMargin-Right-75px {
	margin-right: 75px;
}

.AccMargin-Right-80px {
	margin-right: 80px;
}

.AccMargin-Right-85px {
	margin-right: 85px;
}

.AccMargin-Right-90px {
	margin-right: 90px;
}

.AccMargin-Right-95px {
	margin-right: 95px;
}

.AccMargin-Right-100px {
	margin-right: 100px;
}

.AccMargin-Bottom-M1px {
	margin-bottom: -1px;
}

.AccMargin-Bottom-M2px {
	margin-bottom: -2px;
}

.AccMargin-Bottom-M3px {
	margin-bottom: -3px;
}

.AccMargin-Bottom-M4px {
	margin-bottom: -4px;
}

.AccMargin-Bottom-M5px {
	margin-bottom: -5px;
}

.AccMargin-Bottom-M6px {
	margin-bottom: -6px;
}

.AccMargin-Bottom-M7px {
	margin-bottom: -7px;
}

.AccMargin-Bottom-M8px {
	margin-bottom: -8px;
}

.AccMargin-Bottom-M9px {
	margin-bottom: -9px;
}

.AccMargin-Bottom-M10px {
	margin-bottom: -10px;
}

.AccMargin-Bottom-0px {
	margin-bottom: 0px;
}

.AccMargin-Bottom-1px {
	margin-bottom: 1px;
}

.AccMargin-Bottom-2px {
	margin-bottom: 2px;
}

.AccMargin-Bottom-3px {
	margin-bottom: 3px;
}

.AccMargin-Bottom-4px {
	margin-bottom: 4px;
}

.AccMargin-Bottom-5px {
	margin-bottom: 5px;
}

.AccMargin-Bottom-6px {
	margin-bottom: 6px;
}

.AccMargin-Bottom-7px {
	margin-bottom: 7px;
}

.AccMargin-Bottom-8px {
	margin-bottom: 8px;
}

.AccMargin-Bottom-9px {
	margin-bottom: 9px;
}

.AccMargin-Bottom-10px {
	margin-bottom: 10px;
}

.AccMargin-Bottom-15px {
	margin-bottom: 15px;
}

.AccMargin-Bottom-20px {
	margin-bottom: 20px;
}

.AccMargin-Bottom-25px {
	margin-bottom: 25px;
}

.AccMargin-Bottom-30px {
	margin-bottom: 30px;
}

.AccMargin-Bottom-35px {
	margin-bottom: 35px;
}

.AccMargin-Bottom-40px {
	margin-bottom: 40px;
}

.AccMargin-Bottom-45px {
	margin-bottom: 45px;
}

.AccMargin-Bottom-50px {
	margin-bottom: 50px;
}

.AccMargin-Bottom-55px {
	margin-bottom: 55px;
}

.AccMargin-Bottom-60px {
	margin-bottom: 60px;
}

.AccMargin-Bottom-65px {
	margin-bottom: 65px;
}

.AccMargin-Bottom-70px {
	margin-bottom: 70px;
}

.AccMargin-Bottom-75px {
	margin-bottom: 75px;
}

.AccMargin-Bottom-80px {
	margin-bottom: 80px;
}

.AccMargin-Bottom-85px {
	margin-bottom: 85px;
}

.AccMargin-Bottom-90px {
	margin-bottom: 90px;
}

.AccMargin-Bottom-95px {
	margin-bottom: 95px;
}

.AccMargin-Bottom-100px {
	margin-bottom: 100px;
}

.AccMargin-Left-M1px {
	margin-left: -1px;
}

.AccMargin-Left-M2px {
	margin-left: -2px;
}

.AccMargin-Left-M3px {
	margin-left: -3px;
}

.AccMargin-Left-M4px {
	margin-left: -4px;
}

.AccMargin-Left-M5px {
	margin-left: -5px;
}

.AccMargin-Left-M6px {
	margin-left: -6px;
}

.AccMargin-Left-M7px {
	margin-left: -7px;
}

.AccMargin-Left-M8px {
	margin-left: -8px;
}

.AccMargin-Left-M9px {
	margin-left: -9px;
}

.AccMargin-Left-M10px {
	margin-left: -10px;
}

.AccMargin-Left-0px {
	margin-left: 0px;
}

.AccMargin-Left-1px {
	margin-left: 1px;
}

.AccMargin-Left-2px {
	margin-left: 2px;
}

.AccMargin-Left-3px {
	margin-left: 3px;
}

.AccMargin-Left-4px {
	margin-left: 4px;
}

.AccMargin-Left-5px {
	margin-left: 5px;
}

.AccMargin-Left-6px {
	margin-left: 6px;
}

.AccMargin-Left-7px {
	margin-left: 7px;
}

.AccMargin-Left-8px {
	margin-left: 8px;
}

.AccMargin-Left-9px {
	margin-left: 9px;
}

.AccMargin-Left-10px {
	margin-left: 10px;
}

.AccMargin-Left-15px {
	margin-left: 15px;
}

.AccMargin-Left-20px {
	margin-left: 20px;
}

.AccMargin-Left-25px {
	margin-left: 25px;
}

.AccMargin-Left-30px {
	margin-left: 30px;
}

.AccMargin-Left-35px {
	margin-left: 35px;
}

.AccMargin-Left-40px {
	margin-left: 40px;
}

.AccMargin-Left-45px {
	margin-left: 45px;
}

.AccMargin-Left-50px {
	margin-left: 50px;
}

.AccMargin-Left-55px {
	margin-left: 55px;
}

.AccMargin-Left-60px {
	margin-left: 60px;
}

.AccMargin-Left-65px {
	margin-left: 65px;
}

.AccMargin-Left-70px {
	margin-left: 70px;
}

.AccMargin-Left-75px {
	margin-left: 75px;
}

.AccMargin-Left-80px {
	margin-left: 80px;
}

.AccMargin-Left-85px {
	margin-left: 85px;
}

.AccMargin-Left-90px {
	margin-left: 90px;
}

.AccMargin-Left-95px {
	margin-left: 95px;
}

.AccMargin-Left-100px {
	margin-left: 100px;
}

/*******************************************************************************
 * Set the custom style (width)
 *******************************************************************************/
.AccWidth-Auto {
	width: auto;
}

.AccWidth-0per {
	width: 0%;
}

.AccWidth-5per {
	width: 5%;
}

.AccWidth-10per {
	width: 10%;
}

.AccWidth-15per {
	width: 15%;
}

.AccWidth-20per {
	width: 20%;
}

.AccWidth-25per {
	width: 25%;
}

.AccWidth-30per {
	width: 30%;
}

.AccWidth-35per {
	width: 35%;
}

.AccWidth-40per {
	width: 40%;
}

.AccWidth-45per {
	width: 45%;
}

.AccWidth-50per {
	width: 50%;
}

.AccWidth-55per {
	width: 55%;
}

.AccWidth-60per {
	width: 60%;
}

.AccWidth-65per {
	width: 65%;
}

.AccWidth-70per {
	width: 70%;
}

.AccWidth-75per {
	width: 75%;
}

.AccWidth-80per {
	width: 80%;
}

.AccWidth-85per {
	width: 85%;
}

.AccWidth-90per {
	width: 90%;
}

.AccWidth-95per {
	width: 95%;
}

.AccWidth-100per {
	width: 100%;
}

.AccWidth-0px {
	width: 0px;
}

.AccWidth-5px {
	width: 5px;
}

.AccWidth-10px {
	width: 10px;
}

.AccWidth-15px {
	width: 15px;
}

.AccWidth-20px {
	width: 20px;
}

.AccWidth-25px {
	width: 25px;
}

.AccWidth-30px {
	width: 30px;
}

.AccWidth-35px {
	width: 35px;
}

.AccWidth-40px {
	width: 40px;
}

.AccWidth-45px {
	width: 45px;
}

.AccWidth-50px {
	width: 50px;
}

.AccWidth-55px {
	width: 55px;
}

.AccWidth-60px {
	width: 60px;
}

.AccWidth-65px {
	width: 65px;
}

.AccWidth-70px {
	width: 70px;
}

.AccWidth-75px {
	width: 75px;
}

.AccWidth-80px {
	width: 80px;
}

.AccWidth-85px {
	width: 85px;
}

.AccWidth-90px {
	width: 90px;
}

.AccWidth-95px {
	width: 95px;
}

.AccWidth-100px {
	width: 100px;
}

.AccWidth-105px {
	width: 105px;
}

.AccWidth-110px {
	width: 110px;
}

.AccWidth-115px {
	width: 115px;
}

.AccWidth-120px {
	width: 120px;
}

.AccWidth-125px {
	width: 125px;
}

.AccWidth-130px {
	width: 130px;
}

.AccWidth-135px {
	width: 135px;
}

.AccWidth-140px {
	width: 140px;
}

.AccWidth-145px {
	width: 145px;
}

.AccWidth-150px {
	width: 150px;
}

.AccWidth-155px {
	width: 155px;
}

.AccWidth-160px {
	width: 160px;
}

.AccWidth-165px {
	width: 165px;
}

.AccWidth-170px {
	width: 170px;
}

.AccWidth-175px {
	width: 175px;
}

.AccWidth-180px {
	width: 180px;
}

.AccWidth-185px {
	width: 185px;
}

.AccWidth-190px {
	width: 190px;
}

.AccWidth-195px {
	width: 195px;
}

.AccWidth-200px {
	width: 200px;
}

.AccWidth-205px {
	width: 205px;
}

.AccWidth-210px {
	width: 210px;
}

.AccWidth-215px {
	width: 215px;
}

.AccWidth-220px {
	width: 220px;
}

.AccWidth-225px {
	width: 225px;
}

.AccWidth-230px {
	width: 230px;
}

.AccWidth-235px {
	width: 235px;
}

.AccWidth-240px {
	width: 240px;
}

.AccWidth-245px {
	width: 245px;
}

.AccWidth-250px {
	width: 250px;
}

.AccWidth-255px {
	width: 255px;
}

.AccWidth-260px {
	width: 260px;
}

.AccWidth-265px {
	width: 265px;
}

.AccWidth-270px {
	width: 270px;
}

.AccWidth-275px {
	width: 275px;
}

.AccWidth-280px {
	width: 280px;
}

.AccWidth-285px {
	width: 285px;
}

.AccWidth-290px {
	width: 290px;
}

.AccWidth-295px {
	width: 295px;
}

.AccWidth-300px {
	width: 300px;
}

.AccWidth-305px {
	width: 305px;
}

.AccWidth-310px {
	width: 310px;
}

.AccWidth-315px {
	width: 315px;
}

.AccWidth-320px {
	width: 320px;
}

.AccWidth-325px {
	width: 325px;
}

.AccWidth-330px {
	width: 330px;
}

.AccWidth-335px {
	width: 335px;
}

.AccWidth-340px {
	width: 340px;
}

.AccWidth-345px {
	width: 345px;
}

.AccWidth-350px {
	width: 350px;
}

.AccWidth-355px {
	width: 355px;
}

.AccWidth-360px {
	width: 360px;
}

.AccWidth-365px {
	width: 365px;
}

.AccWidth-370px {
	width: 370px;
}

.AccWidth-375px {
	width: 375px;
}

.AccWidth-380px {
	width: 380px;
}

.AccWidth-385px {
	width: 385px;
}

.AccWidth-390px {
	width: 390px;
}

.AccWidth-395px {
	width: 395px;
}

.AccWidth-400px {
	width: 400px;
}

.AccWidth-405px {
	width: 405px;
}

.AccWidth-410px {
	width: 410px;
}

.AccWidth-415px {
	width: 415px;
}

.AccWidth-420px {
	width: 420px;
}

.AccWidth-425px {
	width: 425px;
}

.AccWidth-430px {
	width: 430px;
}

.AccWidth-435px {
	width: 435px;
}

.AccWidth-440px {
	width: 440px;
}

.AccWidth-445px {
	width: 445px;
}

.AccWidth-450px {
	width: 450px;
}

.AccWidth-455px {
	width: 455px;
}

.AccWidth-460px {
	width: 460px;
}

.AccWidth-465px {
	width: 465px;
}

.AccWidth-470px {
	width: 470px;
}

.AccWidth-475px {
	width: 475px;
}

.AccWidth-480px {
	width: 480px;
}

.AccWidth-485px {
	width: 485px;
}

.AccWidth-490px {
	width: 490px;
}

.AccWidth-495px {
	width: 495px;
}

.AccWidth-500px {
	width: 500px;
}

/*******************************************************************************
 * Set the custom style (height)
 *******************************************************************************/
.AccHeight-Auto {
	height: auto;
}

.AccHeight-0px {
	height: 0px;
}

.AccHeight-5px {
	height: 5px;
}

.AccHeight-10px {
	height: 10px;
}

.AccHeight-15px {
	height: 15px;
}

.AccHeight-20px {
	height: 20px;
}

.AccHeight-25px {
	height: 25px;
}

.AccHeight-28px {
	height: 28px;
}

.AccHeight-30px {
	height: 30px;
}

.AccHeight-35px {
	height: 35px;
}

.AccHeight-40px {
	height: 40px;
}

.AccHeight-45px {
	height: 45px;
}

.AccHeight-50px {
	height: 50px;
}

.AccHeight-55px {
	height: 55px;
}

.AccHeight-60px {
	height: 60px;
}

.AccHeight-65px {
	height: 65px;
}

.AccHeight-70px {
	height: 70px;
}

.AccHeight-75px {
	height: 75px;
}

.AccHeight-80px {
	height: 80px;
}

.AccHeight-85px {
	height: 85px;
}

.AccHeight-90px {
	height: 90px;
}

.AccHeight-95px {
	height: 95px;
}

.AccHeight-100px {
	height: 100px;
}

.AccHeight-105px {
	height: 105px;
}

.AccHeight-110px {
	height: 110px;
}

.AccHeight-115px {
	height: 115px;
}

.AccHeight-120px {
	height: 120px;
}

.AccHeight-125px {
	height: 125px;
}

.AccHeight-130px {
	height: 130px;
}

.AccHeight-135px {
	height: 135px;
}

.AccHeight-140px {
	height: 140px;
}

.AccHeight-145px {
	height: 145px;
}

.AccHeight-150px {
	height: 150px;
}

.AccHeight-155px {
	height: 155px;
}

.AccHeight-160px {
	height: 160px;
}

.AccHeight-165px {
	height: 165px;
}

.AccHeight-170px {
	height: 170px;
}

.AccHeight-175px {
	height: 175px;
}

.AccHeight-180px {
	height: 180px;
}

.AccHeight-185px {
	height: 185px;
}

.AccHeight-190px {
	height: 190px;
}

.AccHeight-195px {
	height: 195px;
}

.AccHeight-200px {
	height: 200px;
}

.AccHeight-205px {
	height: 205px;
}

.AccHeight-210px {
	height: 210px;
}

.AccHeight-215px {
	height: 215px;
}

.AccHeight-220px {
	height: 220px;
}

.AccHeight-225px {
	height: 225px;
}

.AccHeight-230px {
	height: 230px;
}

.AccHeight-235px {
	height: 235px;
}

.AccHeight-240px {
	height: 240px;
}

.AccHeight-245px {
	height: 245px;
}

.AccHeight-250px {
	height: 250px;
}

.AccHeight-255px {
	height: 255px;
}

.AccHeight-260px {
	height: 260px;
}

.AccHeight-265px {
	height: 265px;
}

.AccHeight-270px {
	height: 270px;
}

.AccHeight-275px {
	height: 275px;
}

.AccHeight-280px {
	height: 280px;
}

.AccHeight-285px {
	height: 285px;
}

.AccHeight-290px {
	height: 290px;
}

.AccHeight-295px {
	height: 295px;
}

.AccHeight-300px {
	height: 300px;
}

.AccHeight-305px {
	height: 305px;
}

.AccHeight-310px {
	height: 310px;
}

.AccHeight-315px {
	height: 315px;
}

.AccHeight-320px {
	height: 320px;
}

.AccHeight-325px {
	height: 325px;
}

.AccHeight-330px {
	height: 330px;
}

.AccHeight-335px {
	height: 335px;
}

.AccHeight-340px {
	height: 340px;
}

.AccHeight-345px {
	height: 345px;
}

.AccHeight-350px {
	height: 350px;
}

.AccHeight-355px {
	height: 355px;
}

.AccHeight-360px {
	height: 360px;
}

.AccHeight-365px {
	height: 365px;
}

.AccHeight-370px {
	height: 370px;
}

.AccHeight-375px {
	height: 375px;
}

.AccHeight-380px {
	height: 380px;
}

.AccHeight-385px {
	height: 385px;
}

.AccHeight-390px {
	height: 390px;
}

.AccHeight-395px {
	height: 395px;
}

.AccHeight-400px {
	height: 400px;
}

.AccHeight-405px {
	height: 405px;
}

.AccHeight-410px {
	height: 410px;
}

.AccHeight-415px {
	height: 415px;
}

.AccHeight-420px {
	height: 420px;
}

.AccHeight-425px {
	height: 425px;
}

.AccHeight-430px {
	height: 430px;
}

.AccHeight-435px {
	height: 435px;
}

.AccHeight-440px {
	height: 440px;
}

.AccHeight-445px {
	height: 445px;
}

.AccHeight-450px {
	height: 450px;
}

.AccHeight-455px {
	height: 455px;
}

.AccHeight-460px {
	height: 460px;
}

.AccHeight-465px {
	height: 465px;
}

.AccHeight-470px {
	height: 470px;
}

.AccHeight-475px {
	height: 475px;
}

.AccHeight-480px {
	height: 480px;
}

.AccHeight-485px {
	height: 485px;
}

.AccHeight-490px {
	height: 490px;
}

.AccHeight-495px {
	height: 495px;
}

.AccHeight-500px {
	height: 500px;
}