.jumbotron{
    background-color: transparent;
    text-align: center;
}

.inverse{
    background-color: #333333;
    color: #ffffff;
    border: 0;
}

.fullwidth{
    width: 100%;
    padding: 0;
    margin: 0;
}

.mainrow{
    margin-bottom: 60px;
}

.biglink{
    font-size: +1.2em;
}

.circle{
    margin-left: 30px;
    background-color: #000;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}
.help-tip{
    position: relative;
    margin-left: 30px;
    text-align: center;
    vertical-align: midle;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid rgb(0,0,0);
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    cursor: default;
}
.help-tip:before{
    content:'?';
    font-weight: bold;
    color:#000;
}
.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}
.help-tip p{	/* The tooltip */
    display: none;
    text-align: left;
    background-color: #ccc;
    padding: 10px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: 24px;
    top: 26px;
    color: #000;
    font-size: 16px;
    line-height: 1.4;
}
.help-tip p:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#ccc;
    left:10px;
    top: -12px;
}
.help-tip p:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top: -20px;
    left: 0;
}
.clear {
    clear: both;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion0 {
  background-color: #003366;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 50%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
}
.accordion1 {
  background-color: #004c99;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 50%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
}
.accordion2 {
  background-color: #0066cc;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 50%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
}
.accordion3 {
  background-color: #0080ff;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 50%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion0:hover {
  background-color: #ccc;
  color: #000000;
}
.accordion1:hover {
  background-color: #ccc;
  color: #000000;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion2:hover {
  background-color: #ccc;
  color: #000000;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion3:hover {
  background-color: #ccc;
  color: #000000;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  align: center;
}