
html {
    /* zoom: 1; edge default 75% zoom ignores this setting */
    /* -moz-transform: scale(1); edge default 75% zoom ignores this setting */
    /* -webkit-transform: scale(1); edge default 75% zoom ignores this setting */
    /* transform: scale(1); edge default 75% zoom ignores this setting */
    width:100%;
    height:100vh;
    margin-right:auto;
    margin-left:auto;
    padding:0;
    line-height: 135%;

    /* BACKGROUND IMAGE IS DEFINED IN HTML SELECTOR IN ORDER TO BE COMPATIBLE WITH EDGE AND FIREFOX WHEN USING FIXED, NO REPEAT AND COVER */
    background-image:url('https://thenileeugene.com/assets_club/7/photo_club_gallery/6/club_photo_image_63044615b19c3.png'); 
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	-webkit-font-smoothing: antialiased;

    /* do not use overflow:hidden because of apple ios */
}


@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}

	100% {
		opacity: 1;
		left: 0;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}

	100% {
		opacity: 1;
		left: 0;
	}
}

.fa {
	color: #000 !important;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
	z-index: 9999 !important;
			/* Hamburger Menu Above Mobile-Nav */
    /* visibility: hidden;  Not Consistent/Not Reliable - scotchPanelsVisible.js */;
}

.fa.fa-bars {
	color: #000 !important;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    /* visibility: hidden;  Not Consistent/Not Reliable - scotchPanelsVisible.js */;
}

.fa.fa-bars:hover {
	color: #3b55a4 !important;
   	text-shadow: 2px 2px 6px rgba(59, 85, 164, 0.6);
					/* CHANGE BOX SHADOW RGBA COLOR TO MATCH STANDARD HOVER */
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.fa-times {
	color: #fff !important;
}

.standard-page-header {
    background-color: rgba(245, 245, 245, 0.8);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 13px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 100%;
    border: 2px solid #000;
    box-shadow: 9px 9px 9px rgba(0, 0, 0, 0.25);
}

.standard-page-header-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem !important;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    color: #000 !important;
	text-shadow: 3px 2px 0 #cccfd3;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: table;
    table-layout: fixed;
    width: 95%;					/* THIS INSURES TEXT DOESN'T RUB UP AGAINST CONTAINER WIDTH */
    word-wrap: break-word;
}

.standard-page-header-h1-margin-top-none {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem !important;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    color: #4a7bbe !important;
	text-shadow: 3px 2px 0 #cccfd3;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: table;
    table-layout: fixed;
    width: 95%;					/* THIS INSURES TEXT DOESN'T RUB UP AGAINST CONTAINER WIDTH */
    word-wrap: break-word;
}

.standard-page-header-h2-margin-top-none {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem !important;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    color: #4a7bbe !important;
	text-shadow: 3px 2px 0 #cccfd3;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: table;
    table-layout: fixed;
    width: 95%;					/* THIS INSURES TEXT DOESN'T RUB UP AGAINST CONTAINER WIDTH */
    word-wrap: break-word;
}

button.button-standard {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard a:link,
button.button-standard a:visited,
button.button-standard a:hover,
button.button-standard a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-standard-red {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:2px solid #000;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#ca382e;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard-red:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard-red a:link,
button.button-standard-red a:visited,
button.button-standard-red a:hover,
button.button-standard-red a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-standard-red-cancel {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:2px solid #000;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#ca382e;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard-red-cancel:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard-red-cancel a:link,
button.button-standard-red-cancel a:visited,
button.button-standard-red-cancel a:hover,
button.button-standard-red-cancel a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-standard-green {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:2px solid #000;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#00A800;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard-green:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard-green a:link,
button.button-standard-green a:visited,
button.button-standard-green a:hover,
button.button-standard-green a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-standard-green-save {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:2px solid #000;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#00A800;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard-green-save:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard-green-save a:link,
button.button-standard-green-save a:visited,
button.button-standard-green-save a:hover,
button.button-standard-green-save a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-standard-green-save-confirm {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:2px solid #000;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#00A800;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard-green-save-confirm:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard-green-save-confirm a:link,
button.button-standard-green-save-confirm a:visited,
button.button-standard-green-save-confirm a:hover,
button.button-standard-green-save-confirm a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-standard-blue {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:2px solid #000;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#3b55a4;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard-blue:hover {
  background-color:#3366ff;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard-blue a:link,
button.button-standard-blue a:visited,
button.button-standard-blue a:hover,
button.button-standard-blue a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-schedule-blue {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:2px solid #000;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:left;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#3b55a4;
  white-space:pre;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-schedule-blue:hover {
  background-color:#3366ff;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-schedule--blue a:link,
button.button-schedule--blue a:visited,
button.button-schedule--blue a:hover,
button.button-schedule--blue a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-min-width-fourteen-percent {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  min-width:14%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-min-width-fourteen-percent:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-min-width-fourteen-percent a:link,
button.button-min-width-fourteen-percent a:visited,
button.button-min-width-fourteen-percent a:hover,
button.button-min-width-fourteen-percent a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-min-width-thirty-percent {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  min-width:30%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-min-width-thirty-percent:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-min-width-thirty-percent a:link,
button.button-min-width-thirty-percent a:visited,
button.button-min-width-thirty-percent a:hover,
button.button-min-width-thirty-percent a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-min-width-sixty-percent {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  min-width:60%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-min-width-sixty-percent:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-min-width-sixty-percent a:link,
button.button-min-width-sixty-percent a:visited,
button.button-min-width-sixty-percent a:hover,
button.button-min-width-sixty-percent a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-standard-width-hundred-percent {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:100%;
  margin-right:4px;
  margin-top:8px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard-width-hundred-percent:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard-width-hundred-percent a:link,
button.button-standard-width-hundred-percent a:visited,
button.button-standard-width-hundred-percent a:hover,
button.button-standard-width-hundred-percent a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.social-media-button {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  background: transparent !important;
  border: none !important;
}

button.social-media-button:active {
	top: 4px;													/* Required for Button Click Effect */
}

button.button-sitemap {
  display:inline-block;
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
  background-color:#000;
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:40%;
  cursor: pointer;
  margin-left:4px;
  margin-bottom:4px;
}

button.button-sitemap:hover {
  background-color:#3b55a4;
}

button.button-sitemap a:link,
button.button-sitemap a:visited,
button.button-sitemap a:hover,
button.button-sitemap a:active {
  color: #fff !important;
  text-decoration: none !important;
}

button.button-map-it {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px !important;
  line-height: 40px !important;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:100%;
  margin-right:4px;
  margin-bottom:4px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-map-it:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-map-it a:link,
button.button-map-it a:visited,
button.button-map-it a:hover,
button.button-map-it a:active {
  color: #fff !important;
  text-decoration: none !important;
}

input.button-mobile {
  -webkit-appearance:none;
  background-color:#D4D8DE;
  border: 1px solid #000;
  color:#4e4f51;
  cursor:pointer;
  display:inline-block;
  font-family:Roboto, sans-serif;
  font-size:21px;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:32px;
  line-height:32px;
  margin-top:0;
  text-align:center;
  text-decoration:none;
  width:100%;
}

button.button-mobile {
  -webkit-appearance:none;
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  background-color:#000;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255,255,255, 0.9);
  color: #fff !important;
  cursor:pointer;
  display:inline-block;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:39px;
  line-height:normal;
  margin-top:0;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:100%;
}

button.button-mobile:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-mobile a:link,
button.button-mobile a:visited,
button.button-mobile a:hover,
button.button-mobile a:active {
  color: #fff !important;
  text-decoration: none !important;
}

input.button-search {
  -webkit-appearance: none;
  background-color:#000;
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#F2F1F1;
  display:inline-block;
  font-family:'Poppins', sans-serif;
  font-size:21px;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:40px;
  margin-top:0;
  text-align:center;
  text-decoration:none;
  width:192px;
  cursor: pointer;
}

.button-search:hover {
  color:#000;
  font-weight:normal;
  text-shadow: none;
  background:-moz-linear-gradient( center top, #d1d1d1 5%, #ffffff 100% );
  background:-ms-linear-gradient( top, #d1d1d1 5%, #ffffff 100% );
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d1d1d1', endColorstr='#ffffff');
  background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #d1d1d1), color-stop(100%, #ffffff) );
  background-color:#d1d1d1;
}

button.button-demo {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:40px;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  min-width:95%;
  margin-right:auto;
  margin-left:auto;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-demo:hover {
  background-color:#3b55a4;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-demo a:link,
button.button-demo a:visited,
button.button-demo a:hover,
button.button-demo a:active {
  color: #fff !important;
  text-decoration: none !important;
}

.button-nav-icon {
  vertical-align: middle;
  padding-bottom: 3px;
  width:24px;
  height:24px;
}

.body-background-center {
  padding-top:2rem;
  padding-bottom:2rem;
  padding-right:1rem;
  padding-left:1rem;
  margin-bottom:15px;
  background-color: rgba(255, 255, 255, 0.8);  /* TRANSPARENT PAGE BACKGROUND #FFF */
  border: 2px solid #000;
  box-shadow: 9px 9px 9px rgba(0, 0, 0, 0.25);
}

h1 {
	font-family: 'Poppins', sans-serif;
    font-size:1.2rem;
    font-weight:700;
    line-height:1.06;
	text-align:left;
	margin-right:auto;
	margin-left:auto;
	margin-top:9px;
	margin-bottom:9px;
    color: #000;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.footer-background-center-margin-top {
	background-color: rgba(245, 245, 245, 0.8);
    padding-top:20px;
    padding-bottom:20px;
    margin-right:auto;
    margin-left:auto;
    margin-top:10px;
    margin-bottom:15px;
    border: 2px solid #000;
    box-shadow: 9px 9px 9px rgba(0, 0, 0, 0.25);
}

#file-upload-button-1 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-1 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-2 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-2 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-3 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-3 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-4 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-4 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-5 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-5 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-6 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-6 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-7 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-7 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-8 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-8 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-9 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-9 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-10 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-10 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-11 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-11 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-12 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-12 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-13 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-13 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-14 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-14 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-15 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-15 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-16 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-16 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-17 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-17 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-18 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-18 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-19 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-19 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-20 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-20 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-21 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-21 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-22 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-22 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-23 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-23 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-24 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-24 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-upload-button-25 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#file-remove-input-field-25 {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color: #fff !important;
  font-family:'Poppins', sans-serif;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:95%;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#000;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

a#file-upload-button-1.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-1.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-1.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-1.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-1.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-1 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-2.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-2.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-2.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-2.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-2.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-2 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-3.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-3.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-3.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-3.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-3.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-3 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-4.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-4.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-4.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-4.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-4.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-4 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-5.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-5.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-5.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-5.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-5.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-5 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-6.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-6.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-6.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-6.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-6.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-6 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-7.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-7.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-7.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-7.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-7.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-7 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-8.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-8.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-8.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-8.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-8.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-8 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-9.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-9.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-9.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-9.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-9.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-9 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-10.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-10.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-10.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-10.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-10.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-10 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-11.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-11.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-11.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-11.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-11.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-11 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-12.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-12.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-12.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-12.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-12.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-12 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-13.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-13.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-13.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-13.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-13.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-13 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-14.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-14.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-14.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-14.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-14.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-14 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-15.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-15.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-15.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-15.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-15.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-15 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-16.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-16.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-16.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-16.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-16.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-16 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-17.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-17.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-17.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-17.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-17.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-17 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-18.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-18.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-18.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-18.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-18.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-18 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-19.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-19.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-19.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-19.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-19.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-19 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-20.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-20.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-20.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-20.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-20.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-20 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-21.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-21.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-21.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-21.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-21.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-21 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-22.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-22.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-22.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-22.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-22.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-22 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-23.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-23.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-23.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-23.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-23.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-23 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-24.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-24.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-24.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-24.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-24.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-24 {
	display: none;
	overflow: hidden;
}

a#file-upload-button-25.input-file-button {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-25.input-file-button:active {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-25.input-file-button:hover {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-25.input-file-button:link {
	color: #000000;
	text-decoration: none;
}

a#file-upload-button-25.input-file-button:visited {
	color: #000000;
	text-decoration: none;
}

#file-add-input-field-25 {
	display: none;
	overflow: hidden;
}

a#file-remove-input-field-1.file-remove-input-field1:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-1.file-remove-input-field1:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-1.file-remove-input-field1:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-1.file-remove-input-field1:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-2.file-remove-input-field2:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-2.file-remove-input-field2:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-2.file-remove-input-field2:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-2.file-remove-input-field2:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-3.file-remove-input-field3:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-3.file-remove-input-field3:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-3.file-remove-input-field3:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-3.file-remove-input-field3:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-4.file-remove-input-field4:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-4.file-remove-input-field4:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-4.file-remove-input-field4:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-4.file-remove-input-field4:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-5.file-remove-input-field5:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-5.file-remove-input-field5:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-5.file-remove-input-field5:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-5.file-remove-input-field5:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-6.file-remove-input-field6:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-6.file-remove-input-field6:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-6.file-remove-input-field6:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-6.file-remove-input-field6:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-7.file-remove-input-field7:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-7.file-remove-input-field7:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-7.file-remove-input-field7:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-7.file-remove-input-field7:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-8.file-remove-input-field8:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-8.file-remove-input-field8:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-8.file-remove-input-field8:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-8.file-remove-input-field8:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-9.file-remove-input-field9:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-9.file-remove-input-field9:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-9.file-remove-input-field9:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-9.file-remove-input-field9:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-10.file-remove-input-field10:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-10.file-remove-input-field10:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-10.file-remove-input-field10:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-10.file-remove-input-field10:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-11.file-remove-input-field11:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-11.file-remove-input-field11:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-11.file-remove-input-field11:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-11.file-remove-input-field11:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-12.file-remove-input-field12:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-12.file-remove-input-field12:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-12.file-remove-input-field12:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-12.file-remove-input-field12:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-13.file-remove-input-field13:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-13.file-remove-input-field13:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-13.file-remove-input-field13:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-13.file-remove-input-field13:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-14.file-remove-input-field14:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-14.file-remove-input-field14:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-14.file-remove-input-field14:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-14.file-remove-input-field14:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-15.file-remove-input-field15:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-15.file-remove-input-field15:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-15.file-remove-input-field15:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-15.file-remove-input-field15:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-16.file-remove-input-field16:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-16.file-remove-input-field16:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-16.file-remove-input-field16:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-16.file-remove-input-field16:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-17.file-remove-input-field17:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-17.file-remove-input-field17:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-17.file-remove-input-field17:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-17.file-remove-input-field17:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-18.file-remove-input-field18:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-18.file-remove-input-field18:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-18.file-remove-input-field18:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-18.file-remove-input-field18:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-19.file-remove-input-field19:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-19.file-remove-input-field19:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-19.file-remove-input-field19:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-19.file-remove-input-field19:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-20.file-remove-input-field20:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-20.file-remove-input-field20:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-20.file-remove-input-field20:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-20.file-remove-input-field20:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-21.file-remove-input-field21:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-21.file-remove-input-field21:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-21.file-remove-input-field21:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-21.file-remove-input-field21:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-22.file-remove-input-field22:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-22.file-remove-input-field22:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-22.file-remove-input-field22:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-22.file-remove-input-field22:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-23.file-remove-input-field23:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-23.file-remove-input-field23:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-23.file-remove-input-field23:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-23.file-remove-input-field23:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-24.file-remove-input-field24:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-24.file-remove-input-field24:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-24.file-remove-input-field24:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-24.file-remove-input-field24:visited {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-25.file-remove-input-field25:active {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-25.file-remove-input-field25:hover {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-25.file-remove-input-field25:link {
	color: #000000;
	text-decoration: none;
}

a#file-remove-input-field-25.file-remove-input-field25:visited {
	color: #000000;
	text-decoration: none;
}