
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_58e5840f2c3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_385186a30487.woff")format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_e63f290de20d.woff")format("woff");}.ff3{font-family:ff3;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_8a686e4e8c64.woff")format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_449df528b617.woff")format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_8516b724fc27.woff")format("woff");}.ff6{font-family:ff6;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_dc95ed900b46.woff")format("woff");}.ff7{font-family:ff7;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_83bc73cc5ba9.woff")format("woff");}.ff8{font-family:ff8;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_bc3d9f1cfb8f.woff")format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_6ee15a822980.woff")format("woff");}.ffa{font-family:ffa;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_c664e119168e.woff")format("woff");}.ffb{font-family:ffb;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_00faeb844081.woff")format("woff");}.ffc{font-family:ffc;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_accfa4114497.woff")format("woff");}.ffd{font-family:ffd;line-height:0.670000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_00faeb844081.woff")format("woff");}.ffe{font-family:ffe;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_ff4d0d5d1ae1.woff")format("woff");}.fff{font-family:fff;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_00faeb844081.woff")format("woff");}.ff10{font-family:ff10;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_22cbd517473e.woff")format("woff");}.ff11{font-family:ff11;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_67b8cb7eeca4.woff")format("woff");}.ff12{font-family:ff12;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_134a73f92700.woff")format("woff");}.ff13{font-family:ff13;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_134a73f92700.woff")format("woff");}.ff14{font-family:ff14;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_134a73f92700.woff")format("woff");}.ff15{font-family:ff15;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_ac88f328ad21.woff")format("woff");}.ff16{font-family:ff16;line-height:0.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_2a8283e0cd16.woff")format("woff");}.ff17{font-family:ff17;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_ac88f328ad21.woff")format("woff");}.ff18{font-family:ff18;line-height:0.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_d74dbebc0300.woff")format("woff");}.ff19{font-family:ff19;line-height:0.662000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_90cc09683073.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.859000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_56ecfcb25c4f.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_783455a2ec5c.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_7ec3bcf1b3b0.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_b41e0bdddc74.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_da54754d13dc.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_fc55041bf2f4.woff")format("woff");}.ff20{font-family:ff20;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.218173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218173,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199982px;}
.v3{vertical-align:-15.011902px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls1c{letter-spacing:-0.840000px;}
.ls1d{letter-spacing:-0.672000px;}
.ls1b{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.300000px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000007px;}
.ls1{letter-spacing:0.000013px;}
.ls5{letter-spacing:0.000045px;}
.ls17{letter-spacing:0.000056px;}
.ls0{letter-spacing:0.000085px;}
.ls13{letter-spacing:0.015756px;}
.ls16{letter-spacing:0.015890px;}
.ls14{letter-spacing:0.015896px;}
.ls12{letter-spacing:0.015939px;}
.ls11{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.390000px;}
.lse{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.839905px;}
.ls7{letter-spacing:0.839996px;}
.ls6{letter-spacing:0.840000px;}
.ls8{letter-spacing:0.840088px;}
.lsc{letter-spacing:0.990000px;}
.ls4{letter-spacing:1.187880px;}
.ls2{letter-spacing:1.855783px;}
.ls19{letter-spacing:16.684130px;}
.ls15{letter-spacing:16.684176px;}
.ls18{letter-spacing:19.609707px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-25.187880px;}
.ws1c{word-spacing:-18.629760px;}
.ws7{word-spacing:-15.000000px;}
.ws1d{word-spacing:-14.245920px;}
.ws6{word-spacing:-13.332000px;}
.ws9e{word-spacing:-12.480000px;}
.ws2{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws3c{word-spacing:-12.000000px;}
.ws65{word-spacing:-11.340000px;}
.wsd7{word-spacing:-11.328000px;}
.wse3{word-spacing:-9.984000px;}
.ws1{word-spacing:-9.408000px;}
.wsc7{word-spacing:-9.216000px;}
.ws3{word-spacing:-8.694000px;}
.ws8{word-spacing:-8.400000px;}
.wsdc{word-spacing:-4.608000px;}
.wsd9{word-spacing:-3.407995px;}
.wsd8{word-spacing:-2.592000px;}
.wsda{word-spacing:-2.112000px;}
.ws1e{word-spacing:-1.890000px;}
.ws8b{word-spacing:-1.500000px;}
.wsde{word-spacing:-1.200000px;}
.ws69{word-spacing:-1.140000px;}
.ws8c{word-spacing:-1.020000px;}
.ws27{word-spacing:-0.840000px;}
.ws6e{word-spacing:-0.780000px;}
.ws8a{word-spacing:-0.720000px;}
.wsba{word-spacing:-0.660000px;}
.ws2a{word-spacing:-0.540000px;}
.wse2{word-spacing:-0.528000px;}
.wsdb{word-spacing:-0.480000px;}
.ws13{word-spacing:-0.420000px;}
.ws2c{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.300000px;}
.ws36{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.120000px;}
.ws4{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws95{word-spacing:-0.042010px;}
.wsa{word-spacing:0.000000px;}
.ws56{word-spacing:0.060000px;}
.ws54{word-spacing:0.120000px;}
.wsce{word-spacing:0.144000px;}
.ws8e{word-spacing:0.180000px;}
.wscf{word-spacing:0.192000px;}
.ws3d{word-spacing:0.300000px;}
.ws4f{word-spacing:0.336000px;}
.ws38{word-spacing:0.360000px;}
.ws5e{word-spacing:0.480000px;}
.wsec{word-spacing:0.528000px;}
.ws80{word-spacing:0.540000px;}
.ws82{word-spacing:0.600000px;}
.ws9d{word-spacing:0.660000px;}
.wsdd{word-spacing:0.672000px;}
.ws42{word-spacing:0.720000px;}
.ws4c{word-spacing:0.768000px;}
.ws83{word-spacing:0.780000px;}
.wsa3{word-spacing:0.816000px;}
.ws89{word-spacing:0.840000px;}
.ws6a{word-spacing:0.900000px;}
.wse0{word-spacing:0.912000px;}
.ws67{word-spacing:0.960000px;}
.wsa0{word-spacing:1.020000px;}
.wsa4{word-spacing:1.056000px;}
.ws2f{word-spacing:1.080000px;}
.ws58{word-spacing:1.140000px;}
.ws2e{word-spacing:1.200000px;}
.ws34{word-spacing:1.260000px;}
.ws5d{word-spacing:1.320000px;}
.wsb7{word-spacing:1.380000px;}
.wsc6{word-spacing:1.488000px;}
.ws62{word-spacing:1.500000px;}
.ws81{word-spacing:1.560000px;}
.wsa5{word-spacing:1.584000px;}
.wsb8{word-spacing:1.620000px;}
.ws97{word-spacing:1.680000px;}
.wsf1{word-spacing:1.683000px;}
.wscd{word-spacing:1.740000px;}
.ws4e{word-spacing:1.776000px;}
.ws29{word-spacing:1.800000px;}
.ws3e{word-spacing:1.860000px;}
.ws15{word-spacing:1.920000px;}
.ws19{word-spacing:2.040000px;}
.wsd5{word-spacing:2.064000px;}
.ws90{word-spacing:2.100000px;}
.wsf2{word-spacing:2.142000px;}
.ws25{word-spacing:2.160000px;}
.wsbf{word-spacing:2.220000px;}
.wsf0{word-spacing:2.256000px;}
.ws3a{word-spacing:2.280000px;}
.wsc4{word-spacing:2.304000px;}
.wsd{word-spacing:2.340000px;}
.ws99{word-spacing:2.400000px;}
.wsf{word-spacing:2.520000px;}
.wsbe{word-spacing:2.640000px;}
.ws50{word-spacing:2.700000px;}
.ws84{word-spacing:2.760000px;}
.wsc5{word-spacing:2.784000px;}
.ws5c{word-spacing:2.820000px;}
.ws6d{word-spacing:2.880000px;}
.wsd2{word-spacing:2.928000px;}
.ws74{word-spacing:2.940000px;}
.wsd0{word-spacing:2.976000px;}
.wsae{word-spacing:3.000000px;}
.ws79{word-spacing:3.059994px;}
.ws78{word-spacing:3.120000px;}
.wsef{word-spacing:3.168000px;}
.wsbc{word-spacing:3.180000px;}
.ws71{word-spacing:3.240000px;}
.wsd6{word-spacing:3.264000px;}
.ws3b{word-spacing:3.300000px;}
.ws46{word-spacing:3.312000px;}
.ws7c{word-spacing:3.420000px;}
.wsab{word-spacing:3.480000px;}
.ws60{word-spacing:3.540000px;}
.ws14{word-spacing:3.600000px;}
.ws11{word-spacing:3.660000px;}
.wsb5{word-spacing:3.720000px;}
.wse4{word-spacing:3.744000px;}
.ws5a{word-spacing:3.780000px;}
.ws47{word-spacing:3.792000px;}
.wsd3{word-spacing:3.840000px;}
.wse6{word-spacing:3.888000px;}
.ws55{word-spacing:3.900000px;}
.ws49{word-spacing:3.936000px;}
.ws85{word-spacing:3.960000px;}
.ws9b{word-spacing:4.020000px;}
.wsd4{word-spacing:4.032000px;}
.ws7f{word-spacing:4.080000px;}
.ws37{word-spacing:4.140000px;}
.wsed{word-spacing:4.176000px;}
.wsc9{word-spacing:4.200000px;}
.ws2d{word-spacing:4.259994px;}
.wseb{word-spacing:4.272000px;}
.wsc{word-spacing:4.320000px;}
.ws51{word-spacing:4.440000px;}
.ws1a{word-spacing:4.500000px;}
.ws75{word-spacing:4.560000px;}
.ws48{word-spacing:4.608000px;}
.ws96{word-spacing:4.620000px;}
.wse7{word-spacing:4.656000px;}
.ws7b{word-spacing:4.680000px;}
.wsac{word-spacing:4.740000px;}
.ws33{word-spacing:4.800000px;}
.ws64{word-spacing:4.860000px;}
.ws18{word-spacing:4.920000px;}
.ws7a{word-spacing:5.040000px;}
.ws40{word-spacing:5.100000px;}
.wsdf{word-spacing:5.136000px;}
.ws16{word-spacing:5.159994px;}
.wse8{word-spacing:5.184000px;}
.wscc{word-spacing:5.220000px;}
.wsb0{word-spacing:5.280000px;}
.ws86{word-spacing:5.328000px;}
.ws59{word-spacing:5.340000px;}
.ws6b{word-spacing:5.400000px;}
.ws24{word-spacing:5.520000px;}
.ws2b{word-spacing:5.640000px;}
.ws9c{word-spacing:5.700000px;}
.ws23{word-spacing:5.760000px;}
.wsb6{word-spacing:5.808000px;}
.ws61{word-spacing:5.880000px;}
.ws6c{word-spacing:6.000000px;}
.wse1{word-spacing:6.048000px;}
.ws57{word-spacing:6.060000px;}
.ws1f{word-spacing:6.180000px;}
.ws52{word-spacing:6.240000px;}
.wscb{word-spacing:6.300000px;}
.ws9a{word-spacing:6.360000px;}
.ws53{word-spacing:6.480000px;}
.ws22{word-spacing:6.540000px;}
.wsa2{word-spacing:6.576000px;}
.ws32{word-spacing:6.600000px;}
.ws7e{word-spacing:6.720000px;}
.wsee{word-spacing:6.768000px;}
.wsc8{word-spacing:6.780000px;}
.ws68{word-spacing:6.900000px;}
.ws35{word-spacing:6.960000px;}
.ws3f{word-spacing:7.020000px;}
.ws21{word-spacing:7.140000px;}
.wse5{word-spacing:7.152000px;}
.wsca{word-spacing:7.260000px;}
.ws87{word-spacing:7.320000px;}
.ws4a{word-spacing:7.344000px;}
.ws41{word-spacing:7.380000px;}
.ws4d{word-spacing:7.440000px;}
.ws30{word-spacing:7.500000px;}
.wsb1{word-spacing:7.620000px;}
.wsb9{word-spacing:7.680000px;}
.ws98{word-spacing:7.740000px;}
.ws20{word-spacing:7.800000px;}
.ws12{word-spacing:7.860000px;}
.ws63{word-spacing:7.920000px;}
.wsbd{word-spacing:7.980000px;}
.ws70{word-spacing:8.040000px;}
.ws31{word-spacing:8.220000px;}
.ws7d{word-spacing:8.400000px;}
.ws4b{word-spacing:8.448000px;}
.wse{word-spacing:8.460000px;}
.ws6f{word-spacing:8.520000px;}
.ws10{word-spacing:8.640000px;}
.wsaf{word-spacing:8.820000px;}
.ws26{word-spacing:8.880000px;}
.wsa1{word-spacing:9.000000px;}
.ws5f{word-spacing:9.060000px;}
.ws8f{word-spacing:9.120000px;}
.ws9f{word-spacing:9.360000px;}
.wsb3{word-spacing:9.420000px;}
.ws72{word-spacing:9.480000px;}
.ws5b{word-spacing:9.720000px;}
.wsbb{word-spacing:9.840000px;}
.ws77{word-spacing:9.960000px;}
.ws76{word-spacing:10.260000px;}
.ws91{word-spacing:10.320000px;}
.wsb2{word-spacing:10.560000px;}
.wse9{word-spacing:11.280000px;}
.ws73{word-spacing:11.520000px;}
.ws66{word-spacing:11.760000px;}
.ws44{word-spacing:12.240000px;}
.ws88{word-spacing:13.440000px;}
.wsd1{word-spacing:13.584000px;}
.ws17{word-spacing:13.680000px;}
.wsad{word-spacing:13.740000px;}
.wsaa{word-spacing:14.040000px;}
.ws43{word-spacing:14.400000px;}
.wsb4{word-spacing:17.040000px;}
.ws8d{word-spacing:17.280000px;}
.ws45{word-spacing:18.420000px;}
.ws93{word-spacing:19.580984px;}
.ws92{word-spacing:19.618744px;}
.ws94{word-spacing:20.348387px;}
.wsea{word-spacing:21.360000px;}
.ws1b{word-spacing:73.056000px;}
.wsc3{word-spacing:138.912048px;}
.wsa8{word-spacing:146.304016px;}
.wsa7{word-spacing:170.304016px;}
.wsa9{word-spacing:193.727966px;}
.wsc2{word-spacing:211.391968px;}
.wsc1{word-spacing:235.391968px;}
.wsa6{word-spacing:698.425832px;}
.wsc0{word-spacing:758.506207px;}
._28{margin-left:-18.804154px;}
._2c{margin-left:-16.752009px;}
._b{margin-left:-15.600014px;}
._16{margin-left:-13.332006px;}
._2a{margin-left:-11.904009px;}
._10{margin-left:-8.937533px;}
._1{margin-left:-5.382000px;}
._6{margin-left:-4.350000px;}
._3{margin-left:-2.899800px;}
._0{margin-left:-1.632000px;}
._2{width:1.170000px;}
._8{width:2.179800px;}
._14{width:3.618000px;}
._a{width:4.919986px;}
._13{width:5.931304px;}
._e{width:7.601362px;}
._7{width:8.820000px;}
._12{width:9.896653px;}
._19{width:11.820004px;}
._17{width:13.843065px;}
._f{width:15.466250px;}
._15{width:17.093997px;}
._9{width:19.667997px;}
._c{width:22.320005px;}
._11{width:24.177255px;}
._2b{width:26.195997px;}
._1a{width:28.200001px;}
._18{width:30.425997px;}
._1b{width:32.699977px;}
._29{width:34.453741px;}
._1c{width:36.239977px;}
._4{width:39.721800px;}
._5{width:40.996725px;}
._d{width:56.255991px;}
._21{width:61.632008px;}
._1d{width:117.552008px;}
._20{width:127.823914px;}
._26{width:150.912048px;}
._23{width:158.304085px;}
._24{width:171.456002px;}
._22{width:198.719925px;}
._1f{width:205.727966px;}
._1e{width:222.720016px;}
._27{width:247.392059px;}
._25{width:258.816010px;}
.fc3{color:rgb(19,20,19);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.010200px;}
.fs7{font-size:47.821678px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:60.014997px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:0.194687px;}
.yba{bottom:0.196198px;}
.ye9{bottom:3.794586px;}
.yee{bottom:3.944733px;}
.yeb{bottom:5.894531px;}
.ye7{bottom:6.044540px;}
.y29{bottom:49.625399px;}
.y3{bottom:49.625999px;}
.y1{bottom:50.758198px;}
.y25{bottom:90.006025px;}
.yf9{bottom:90.084000px;}
.y97{bottom:90.587997px;}
.y72{bottom:90.647999px;}
.y54{bottom:90.797550px;}
.yb0{bottom:91.139997px;}
.y7a{bottom:91.193836px;}
.y127{bottom:98.437180px;}
.y108{bottom:100.032749px;}
.y13c{bottom:102.626553px;}
.yf8{bottom:104.328003px;}
.y96{bottom:104.832000px;}
.y71{bottom:104.892002px;}
.ydc{bottom:107.297562px;}
.y194{bottom:107.297596px;}
.y53{bottom:108.797550px;}
.y24{bottom:109.050018px;}
.y79{bottom:109.193836px;}
.y15e{bottom:109.610699px;}
.y126{bottom:116.437180px;}
.y107{bottom:118.260750px;}
.yf7{bottom:118.571995px;}
.y95{bottom:119.076004px;}
.y70{bottom:119.136005px;}
.y13b{bottom:120.626553px;}
.y193{bottom:121.541599px;}
.y15d{bottom:123.854702px;}
.ydb{bottom:125.297562px;}
.y23{bottom:126.053272px;}
.y52{bottom:126.797550px;}
.y78{bottom:127.193836px;}
.yf6{bottom:132.815998px;}
.y94{bottom:133.319996px;}
.y6f{bottom:133.379997px;}
.y125{bottom:134.437180px;}
.y192{bottom:135.785591px;}
.y106{bottom:136.404750px;}
.y15c{bottom:138.098705px;}
.y13a{bottom:138.626553px;}
.yda{bottom:143.297562px;}
.y51{bottom:144.797550px;}
.y22{bottom:145.097271px;}
.yf5{bottom:147.060000px;}
.y8d{bottom:147.371990px;}
.y191{bottom:150.029594px;}
.y15b{bottom:152.342697px;}
.y124{bottom:152.437180px;}
.y105{bottom:154.548752px;}
.y139{bottom:156.626553px;}
.yd9{bottom:161.297562px;}
.y8c{bottom:161.615982px;}
.y50{bottom:162.797550px;}
.y77{bottom:163.193836px;}
.y190{bottom:164.273598px;}
.y15a{bottom:166.586700px;}
.y21{bottom:168.953270px;}
.y123{bottom:170.437180px;}
.y104{bottom:172.692753px;}
.y8b{bottom:175.859985px;}
.y18f{bottom:178.517590px;}
.yd8{bottom:179.297562px;}
.y159{bottom:180.830704px;}
.y20{bottom:183.197273px;}
.y122{bottom:188.437180px;}
.y8a{bottom:190.103989px;}
.y103{bottom:190.836754px;}
.y138{bottom:192.626541px;}
.y18e{bottom:192.761604px;}
.y158{bottom:195.074707px;}
.yd7{bottom:197.297562px;}
.y4f{bottom:198.797539px;}
.y89{bottom:204.347992px;}
.y121{bottom:206.437180px;}
.y18d{bottom:207.005585px;}
.y76{bottom:210.248840px;}
.yd6{bottom:215.297562px;}
.y88{bottom:218.591995px;}
.y100{bottom:218.832756px;}
.y18c{bottom:221.249588px;}
.y120{bottom:224.437180px;}
.y157{bottom:227.330704px;}
.y75{bottom:228.248840px;}
.y1f{bottom:230.567093px;}
.y87{bottom:232.835976px;}
.yff{bottom:233.076759px;}
.y102{bottom:233.088753px;}
.yd5{bottom:233.297562px;}
.y18b{bottom:235.493591px;}
.y11f{bottom:242.437180px;}
.y137{bottom:246.626541px;}
.y86{bottom:247.079979px;}
.yfe{bottom:247.320740px;}
.y101{bottom:247.332756px;}
.y1e{bottom:248.567093px;}
.y18a{bottom:249.737595px;}
.yd4{bottom:251.297562px;}
.y4e{bottom:252.797516px;}
.y156{bottom:259.580704px;}
.y11e{bottom:260.437180px;}
.y85{bottom:261.323982px;}
.y189{bottom:263.981598px;}
.y74{bottom:264.248840px;}
.y136{bottom:264.626541px;}
.y1d{bottom:266.567093px;}
.yd3{bottom:269.297562px;}
.y4d{bottom:270.797516px;}
.yfd{bottom:271.164757px;}
.y84{bottom:275.567986px;}
.y188{bottom:278.225601px;}
.y11d{bottom:278.437180px;}
.y135{bottom:282.626541px;}
.y1c{bottom:284.567093px;}
.yd2{bottom:287.297562px;}
.y4c{bottom:288.797516px;}
.y83{bottom:289.811989px;}
.y187{bottom:292.469604px;}
.y155{bottom:292.571571px;}
.yfc{bottom:293.303535px;}
.y11c{bottom:296.437180px;}
.y134{bottom:300.626541px;}
.y1b{bottom:302.567093px;}
.y82{bottom:304.055992px;}
.yd1{bottom:305.297562px;}
.y186{bottom:306.713585px;}
.y4b{bottom:306.797516px;}
.y154{bottom:306.815575px;}
.yfb{bottom:307.547539px;}
.y11b{bottom:314.437180px;}
.yac{bottom:315.187180px;}
.y81{bottom:318.299995px;}
.y1a{bottom:320.567093px;}
.y185{bottom:320.957588px;}
.yd0{bottom:323.297562px;}
.y4a{bottom:324.797516px;}
.y11a{bottom:332.437180px;}
.y80{bottom:332.543976px;}
.yab{bottom:333.187180px;}
.y184{bottom:335.201591px;}
.y153{bottom:336.071571px;}
.ycf{bottom:341.297562px;}
.y49{bottom:342.797516px;}
.y7f{bottom:346.787979px;}
.y183{bottom:349.445595px;}
.y152{bottom:350.315575px;}
.y119{bottom:350.437180px;}
.yaa{bottom:351.187180px;}
.y19{bottom:356.567093px;}
.yce{bottom:359.297562px;}
.y48{bottom:360.797516px;}
.y7e{bottom:361.031982px;}
.y14a{bottom:361.154217px;}
.y182{bottom:363.689598px;}
.y151{bottom:364.559555px;}
.y118{bottom:368.437180px;}
.ya9{bottom:369.187180px;}
.y93{bottom:374.297516px;}
.y7d{bottom:375.275986px;}
.y149{bottom:375.398220px;}
.y181{bottom:377.933601px;}
.y47{bottom:378.797516px;}
.yf4{bottom:378.797562px;}
.y65{bottom:385.687180px;}
.y117{bottom:386.437180px;}
.ya8{bottom:387.187180px;}
.y7c{bottom:389.519989px;}
.y180{bottom:392.177582px;}
.y92{bottom:392.297516px;}
.y148{bottom:393.626209px;}
.y150{bottom:393.815552px;}
.ycd{bottom:396.047562px;}
.y46{bottom:396.797516px;}
.yf3{bottom:396.797562px;}
.y64{bottom:403.687180px;}
.y116{bottom:404.437180px;}
.ya7{bottom:405.187180px;}
.y17f{bottom:406.421585px;}
.y147{bottom:407.870213px;}
.y14f{bottom:408.059555px;}
.y91{bottom:410.297516px;}
.y18{bottom:410.567093px;}
.ycc{bottom:414.047562px;}
.y45{bottom:414.797516px;}
.yf2{bottom:414.797562px;}
.y17e{bottom:420.665588px;}
.y63{bottom:421.687180px;}
.y14e{bottom:422.303558px;}
.y115{bottom:422.437180px;}
.ya6{bottom:423.187180px;}
.y146{bottom:426.026218px;}
.y90{bottom:428.297516px;}
.y17{bottom:428.567093px;}
.ycb{bottom:431.857498px;}
.yca{bottom:432.047562px;}
.y44{bottom:432.797516px;}
.yf1{bottom:432.797562px;}
.y17d{bottom:434.909592px;}
.y14d{bottom:436.547562px;}
.y62{bottom:439.687180px;}
.y145{bottom:440.270222px;}
.y114{bottom:440.437180px;}
.ya5{bottom:441.187180px;}
.y8f{bottom:446.297516px;}
.y16{bottom:446.567093px;}
.y17c{bottom:449.153595px;}
.yc9{bottom:450.047562px;}
.y43{bottom:450.797516px;}
.yf0{bottom:450.797562px;}
.y61{bottom:457.687180px;}
.y113{bottom:458.437180px;}
.ya4{bottom:459.187180px;}
.y17b{bottom:463.397598px;}
.y15{bottom:464.567093px;}
.yc8{bottom:468.047562px;}
.y144{bottom:468.266224px;}
.y42{bottom:468.797516px;}
.yef{bottom:468.797562px;}
.y60{bottom:475.687180px;}
.y112{bottom:476.437180px;}
.ya3{bottom:477.187180px;}
.y17a{bottom:477.641602px;}
.yea{bottom:480.912003px;}
.y8e{bottom:482.297516px;}
.y143{bottom:482.510227px;}
.y14{bottom:482.567093px;}
.yed{bottom:482.855988px;}
.yc7{bottom:486.047562px;}
.y41{bottom:486.797516px;}
.yec{bottom:486.797562px;}
.y179{bottom:491.885605px;}
.y5f{bottom:493.687180px;}
.y111{bottom:494.437180px;}
.ya2{bottom:495.187180px;}
.ye6{bottom:498.750000px;}
.y13{bottom:500.567093px;}
.ye8{bottom:500.990982px;}
.yc6{bottom:504.047562px;}
.y40{bottom:504.797516px;}
.ye5{bottom:504.797562px;}
.y178{bottom:506.129608px;}
.y142{bottom:506.354221px;}
.y5e{bottom:511.687180px;}
.y110{bottom:512.437180px;}
.ya1{bottom:513.187180px;}
.y12{bottom:518.567093px;}
.y177{bottom:520.373611px;}
.yc5{bottom:522.047562px;}
.y3f{bottom:522.797516px;}
.ye4{bottom:522.797562px;}
.y141{bottom:527.755050px;}
.y5d{bottom:529.687180px;}
.y10f{bottom:530.437180px;}
.ya0{bottom:531.187180px;}
.y176{bottom:534.617615px;}
.y11{bottom:536.567093px;}
.yc4{bottom:540.047562px;}
.y3e{bottom:540.797516px;}
.ye3{bottom:540.797562px;}
.y5c{bottom:547.687180px;}
.y10e{bottom:548.437180px;}
.y175{bottom:548.861572px;}
.y9f{bottom:549.187180px;}
.y10{bottom:554.567093px;}
.yc3{bottom:558.047562px;}
.y3d{bottom:558.797516px;}
.ye2{bottom:558.797562px;}
.y174{bottom:563.105576px;}
.y5b{bottom:565.687180px;}
.y10d{bottom:566.437180px;}
.y9e{bottom:567.187180px;}
.yf{bottom:572.567093px;}
.y140{bottom:572.947037px;}
.yc2{bottom:576.047562px;}
.y3c{bottom:576.797516px;}
.ye1{bottom:576.797562px;}
.y173{bottom:577.349579px;}
.y5a{bottom:583.687180px;}
.y10c{bottom:584.437180px;}
.y9d{bottom:585.187180px;}
.y13f{bottom:587.191040px;}
.ye{bottom:590.567093px;}
.y172{bottom:591.593582px;}
.yc1{bottom:593.857498px;}
.yc0{bottom:594.047562px;}
.y3b{bottom:594.797516px;}
.ye0{bottom:594.797562px;}
.y13e{bottom:601.435043px;}
.y59{bottom:601.687180px;}
.y10b{bottom:602.437180px;}
.y9c{bottom:603.187180px;}
.y171{bottom:605.837585px;}
.yd{bottom:608.567093px;}
.ybf{bottom:612.047562px;}
.y3a{bottom:612.797516px;}
.ydf{bottom:612.797562px;}
.y13d{bottom:615.679047px;}
.y58{bottom:619.687180px;}
.y170{bottom:620.081589px;}
.y10a{bottom:620.437180px;}
.y9b{bottom:621.187180px;}
.yc{bottom:626.567093px;}
.ybe{bottom:630.047562px;}
.y39{bottom:630.797516px;}
.yde{bottom:630.797562px;}
.y16f{bottom:634.325592px;}
.y109{bottom:638.437180px;}
.y9a{bottom:639.187180px;}
.yb{bottom:644.567093px;}
.ybd{bottom:648.047562px;}
.y16e{bottom:648.569595px;}
.y38{bottom:648.797516px;}
.y99{bottom:657.187180px;}
.y6e{bottom:662.287033px;}
.y16d{bottom:662.813599px;}
.ybc{bottom:666.047562px;}
.y37{bottom:666.797516px;}
.ydd{bottom:666.797562px;}
.y6d{bottom:676.531036px;}
.y16c{bottom:677.057602px;}
.ybb{bottom:684.047562px;}
.y36{bottom:684.797516px;}
.y6c{bottom:690.775040px;}
.y16b{bottom:691.301605px;}
.ya{bottom:693.059692px;}
.yb9{bottom:701.857498px;}
.yb8{bottom:702.047562px;}
.y35{bottom:702.797516px;}
.y6b{bottom:705.018997px;}
.y16a{bottom:705.545609px;}
.y28{bottom:706.994599px;}
.y9{bottom:707.303696px;}
.yaf{bottom:707.971024px;}
.y6a{bottom:719.263000px;}
.y169{bottom:719.789612px;}
.yb5{bottom:719.859009px;}
.yb4{bottom:720.047516px;}
.yb7{bottom:720.047562px;}
.y34{bottom:720.797516px;}
.yae{bottom:722.215027px;}
.y69{bottom:733.507004px;}
.y168{bottom:734.033615px;}
.yad{bottom:736.459030px;}
.yb3{bottom:738.047516px;}
.y33{bottom:738.797516px;}
.y8{bottom:745.152145px;}
.y133{bottom:746.363525px;}
.y68{bottom:747.751007px;}
.y167{bottom:748.277573px;}
.yb2{bottom:756.047516px;}
.y32{bottom:756.797516px;}
.y132{bottom:760.607529px;}
.y67{bottom:761.995010px;}
.y166{bottom:762.521576px;}
.y7{bottom:763.152191px;}
.y19d{bottom:773.204590px;}
.y31{bottom:774.797516px;}
.y131{bottom:774.851532px;}
.y66{bottom:776.239014px;}
.y165{bottom:776.765625px;}
.y6{bottom:781.152191px;}
.y19c{bottom:787.459076px;}
.y130{bottom:789.095490px;}
.y164{bottom:791.009583px;}
.y30{bottom:792.797516px;}
.y12f{bottom:803.339539px;}
.y163{bottom:805.253632px;}
.y2f{bottom:810.797516px;}
.y19b{bottom:817.579102px;}
.y12e{bottom:817.583496px;}
.y162{bottom:819.497589px;}
.y5{bottom:823.895508px;}
.y2e{bottom:828.797516px;}
.y19a{bottom:831.823059px;}
.y12d{bottom:831.827545px;}
.y199{bottom:846.067108px;}
.y12c{bottom:846.071503px;}
.y4{bottom:846.398529px;}
.y2d{bottom:846.797516px;}
.y161{bottom:852.047516px;}
.y198{bottom:860.311066px;}
.y12b{bottom:860.315552px;}
.y2c{bottom:864.797516px;}
.y197{bottom:874.555115px;}
.y12a{bottom:874.559509px;}
.y2b{bottom:882.797516px;}
.y196{bottom:888.799072px;}
.y129{bottom:888.803558px;}
.y2a{bottom:900.797516px;}
.y195{bottom:903.043121px;}
.y128{bottom:903.047516px;}
.y2{bottom:925.867035px;}
.yb1{bottom:939.009331px;}
.yfa{bottom:939.021286px;}
.y73{bottom:939.128881px;}
.y98{bottom:939.236581px;}
.y7b{bottom:939.248536px;}
.y14c{bottom:939.253379px;}
.y56{bottom:939.253390px;}
.y27{bottom:939.253413px;}
.y160{bottom:939.253418px;}
.y14b{bottom:939.253470px;}
.y55{bottom:939.253482px;}
.y26{bottom:939.253505px;}
.y15f{bottom:939.253510px;}
.y57{bottom:939.356131px;}
.h11{height:10.198500px;}
.h13{height:10.200000px;}
.h16{height:10.500000px;}
.h14{height:12.750000px;}
.h19{height:14.099999px;}
.h17{height:16.200000px;}
.hc{height:23.721600px;}
.he{height:31.562308px;}
.h1b{height:33.216000px;}
.hd{height:33.600000px;}
.h2{height:33.840000px;}
.hb{height:33.888000px;}
.ha{height:34.687500px;}
.h1e{height:36.006000px;}
.h15{height:39.729928px;}
.h12{height:40.090018px;}
.h1a{height:40.570138px;}
.h18{height:41.290318px;}
.h3{height:42.048000px;}
.h8{height:42.360000px;}
.hf{height:42.528000px;}
.h1d{height:45.186000px;}
.h1c{height:49.104000px;}
.h10{height:53.640000px;}
.h4{height:54.862258px;}
.h7{height:59.340000px;}
.h6{height:64.866000px;}
.h9{height:65.274000px;}
.h5{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w3{width:6.163500px;}
.w2{width:6.165000px;}
.w5{width:40.438499px;}
.w4{width:53.774998px;}
.w7{width:63.480000px;}
.w6{width:66.314999px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.xb{left:75.431580px;}
.x2{left:76.535402px;}
.x7{left:78.746400px;}
.x28{left:85.506448px;}
.x8{left:93.545403px;}
.x4{left:97.799380px;}
.xd{left:100.535397px;}
.x29{left:102.047400px;}
.x12{left:123.113995px;}
.x1f{left:127.267671px;}
.x13{left:129.286800px;}
.x1a{left:142.850395px;}
.x25{left:160.059923px;}
.x1b{left:181.053005px;}
.x1e{left:194.953215px;}
.xe{left:202.621490px;}
.xf{left:208.861794px;}
.x9{left:243.375635px;}
.x1c{left:244.532410px;}
.x20{left:267.523680px;}
.x6{left:322.587450px;}
.x21{left:339.955671px;}
.x26{left:375.330488px;}
.x16{left:385.406982px;}
.x5{left:387.493551px;}
.x22{left:392.911673px;}
.x17{left:439.181992px;}
.x27{left:458.178480px;}
.x14{left:463.618515px;}
.x23{left:465.487677px;}
.x15{left:469.881454px;}
.x18{left:478.136993px;}
.x1{left:485.858414px;}
.x10{left:505.644012px;}
.x11{left:511.883835px;}
.x19{left:518.575928px;}
.x3{left:521.631592px;}
.x24{left:537.919668px;}
.xa{left:553.569706px;}
.xc{left:560.326062px;}
.x1d{left:561.617232px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v3{vertical-align:-13.343913pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls1c{letter-spacing:-0.746667pt;}
.ls1d{letter-spacing:-0.597333pt;}
.ls1b{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000006pt;}
.ls1{letter-spacing:0.000011pt;}
.ls5{letter-spacing:0.000040pt;}
.ls17{letter-spacing:0.000050pt;}
.ls0{letter-spacing:0.000076pt;}
.ls13{letter-spacing:0.014005pt;}
.ls16{letter-spacing:0.014124pt;}
.ls14{letter-spacing:0.014130pt;}
.ls12{letter-spacing:0.014168pt;}
.ls11{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.346667pt;}
.lse{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.746582pt;}
.ls7{letter-spacing:0.746663pt;}
.ls6{letter-spacing:0.746667pt;}
.ls8{letter-spacing:0.746745pt;}
.lsc{letter-spacing:0.880000pt;}
.ls4{letter-spacing:1.055893pt;}
.ls2{letter-spacing:1.649585pt;}
.ls19{letter-spacing:14.830338pt;}
.ls15{letter-spacing:14.830378pt;}
.ls18{letter-spacing:17.430851pt;}
.ws9{word-spacing:-22.389227pt;}
.ws1c{word-spacing:-16.559787pt;}
.ws7{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-12.663040pt;}
.ws6{word-spacing:-11.850667pt;}
.ws9e{word-spacing:-11.093333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws3c{word-spacing:-10.666667pt;}
.ws65{word-spacing:-10.080000pt;}
.wsd7{word-spacing:-10.069333pt;}
.wse3{word-spacing:-8.874667pt;}
.ws1{word-spacing:-8.362667pt;}
.wsc7{word-spacing:-8.192000pt;}
.ws3{word-spacing:-7.728000pt;}
.ws8{word-spacing:-7.466667pt;}
.wsdc{word-spacing:-4.096000pt;}
.wsd9{word-spacing:-3.029329pt;}
.wsd8{word-spacing:-2.304000pt;}
.wsda{word-spacing:-1.877333pt;}
.ws1e{word-spacing:-1.680000pt;}
.ws8b{word-spacing:-1.333333pt;}
.wsde{word-spacing:-1.066667pt;}
.ws69{word-spacing:-1.013333pt;}
.ws8c{word-spacing:-0.906667pt;}
.ws27{word-spacing:-0.746667pt;}
.ws6e{word-spacing:-0.693333pt;}
.ws8a{word-spacing:-0.640000pt;}
.wsba{word-spacing:-0.586667pt;}
.ws2a{word-spacing:-0.480000pt;}
.wse2{word-spacing:-0.469333pt;}
.wsdb{word-spacing:-0.426667pt;}
.ws13{word-spacing:-0.373333pt;}
.ws2c{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.266667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.106667pt;}
.ws4{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws95{word-spacing:-0.037342pt;}
.wsa{word-spacing:0.000000pt;}
.ws56{word-spacing:0.053333pt;}
.ws54{word-spacing:0.106667pt;}
.wsce{word-spacing:0.128000pt;}
.ws8e{word-spacing:0.160000pt;}
.wscf{word-spacing:0.170667pt;}
.ws3d{word-spacing:0.266667pt;}
.ws4f{word-spacing:0.298667pt;}
.ws38{word-spacing:0.320000pt;}
.ws5e{word-spacing:0.426667pt;}
.wsec{word-spacing:0.469333pt;}
.ws80{word-spacing:0.480000pt;}
.ws82{word-spacing:0.533333pt;}
.ws9d{word-spacing:0.586667pt;}
.wsdd{word-spacing:0.597333pt;}
.ws42{word-spacing:0.640000pt;}
.ws4c{word-spacing:0.682667pt;}
.ws83{word-spacing:0.693333pt;}
.wsa3{word-spacing:0.725333pt;}
.ws89{word-spacing:0.746667pt;}
.ws6a{word-spacing:0.800000pt;}
.wse0{word-spacing:0.810667pt;}
.ws67{word-spacing:0.853333pt;}
.wsa0{word-spacing:0.906667pt;}
.wsa4{word-spacing:0.938667pt;}
.ws2f{word-spacing:0.960000pt;}
.ws58{word-spacing:1.013333pt;}
.ws2e{word-spacing:1.066667pt;}
.ws34{word-spacing:1.120000pt;}
.ws5d{word-spacing:1.173333pt;}
.wsb7{word-spacing:1.226667pt;}
.wsc6{word-spacing:1.322667pt;}
.ws62{word-spacing:1.333333pt;}
.ws81{word-spacing:1.386667pt;}
.wsa5{word-spacing:1.408000pt;}
.wsb8{word-spacing:1.440000pt;}
.ws97{word-spacing:1.493333pt;}
.wsf1{word-spacing:1.496000pt;}
.wscd{word-spacing:1.546667pt;}
.ws4e{word-spacing:1.578667pt;}
.ws29{word-spacing:1.600000pt;}
.ws3e{word-spacing:1.653333pt;}
.ws15{word-spacing:1.706667pt;}
.ws19{word-spacing:1.813333pt;}
.wsd5{word-spacing:1.834667pt;}
.ws90{word-spacing:1.866667pt;}
.wsf2{word-spacing:1.904000pt;}
.ws25{word-spacing:1.920000pt;}
.wsbf{word-spacing:1.973333pt;}
.wsf0{word-spacing:2.005333pt;}
.ws3a{word-spacing:2.026667pt;}
.wsc4{word-spacing:2.048000pt;}
.wsd{word-spacing:2.080000pt;}
.ws99{word-spacing:2.133333pt;}
.wsf{word-spacing:2.240000pt;}
.wsbe{word-spacing:2.346667pt;}
.ws50{word-spacing:2.400000pt;}
.ws84{word-spacing:2.453333pt;}
.wsc5{word-spacing:2.474667pt;}
.ws5c{word-spacing:2.506667pt;}
.ws6d{word-spacing:2.560000pt;}
.wsd2{word-spacing:2.602667pt;}
.ws74{word-spacing:2.613333pt;}
.wsd0{word-spacing:2.645333pt;}
.wsae{word-spacing:2.666667pt;}
.ws79{word-spacing:2.719995pt;}
.ws78{word-spacing:2.773333pt;}
.wsef{word-spacing:2.816000pt;}
.wsbc{word-spacing:2.826667pt;}
.ws71{word-spacing:2.880000pt;}
.wsd6{word-spacing:2.901333pt;}
.ws3b{word-spacing:2.933333pt;}
.ws46{word-spacing:2.944000pt;}
.ws7c{word-spacing:3.040000pt;}
.wsab{word-spacing:3.093333pt;}
.ws60{word-spacing:3.146667pt;}
.ws14{word-spacing:3.200000pt;}
.ws11{word-spacing:3.253333pt;}
.wsb5{word-spacing:3.306667pt;}
.wse4{word-spacing:3.328000pt;}
.ws5a{word-spacing:3.360000pt;}
.ws47{word-spacing:3.370667pt;}
.wsd3{word-spacing:3.413333pt;}
.wse6{word-spacing:3.456000pt;}
.ws55{word-spacing:3.466667pt;}
.ws49{word-spacing:3.498667pt;}
.ws85{word-spacing:3.520000pt;}
.ws9b{word-spacing:3.573333pt;}
.wsd4{word-spacing:3.584000pt;}
.ws7f{word-spacing:3.626667pt;}
.ws37{word-spacing:3.680000pt;}
.wsed{word-spacing:3.712000pt;}
.wsc9{word-spacing:3.733333pt;}
.ws2d{word-spacing:3.786661pt;}
.wseb{word-spacing:3.797333pt;}
.wsc{word-spacing:3.840000pt;}
.ws51{word-spacing:3.946667pt;}
.ws1a{word-spacing:4.000000pt;}
.ws75{word-spacing:4.053333pt;}
.ws48{word-spacing:4.096000pt;}
.ws96{word-spacing:4.106667pt;}
.wse7{word-spacing:4.138667pt;}
.ws7b{word-spacing:4.160000pt;}
.wsac{word-spacing:4.213333pt;}
.ws33{word-spacing:4.266667pt;}
.ws64{word-spacing:4.320000pt;}
.ws18{word-spacing:4.373333pt;}
.ws7a{word-spacing:4.480000pt;}
.ws40{word-spacing:4.533333pt;}
.wsdf{word-spacing:4.565333pt;}
.ws16{word-spacing:4.586661pt;}
.wse8{word-spacing:4.608000pt;}
.wscc{word-spacing:4.640000pt;}
.wsb0{word-spacing:4.693333pt;}
.ws86{word-spacing:4.736000pt;}
.ws59{word-spacing:4.746667pt;}
.ws6b{word-spacing:4.800000pt;}
.ws24{word-spacing:4.906667pt;}
.ws2b{word-spacing:5.013333pt;}
.ws9c{word-spacing:5.066667pt;}
.ws23{word-spacing:5.120000pt;}
.wsb6{word-spacing:5.162667pt;}
.ws61{word-spacing:5.226667pt;}
.ws6c{word-spacing:5.333333pt;}
.wse1{word-spacing:5.376000pt;}
.ws57{word-spacing:5.386667pt;}
.ws1f{word-spacing:5.493333pt;}
.ws52{word-spacing:5.546667pt;}
.wscb{word-spacing:5.600000pt;}
.ws9a{word-spacing:5.653333pt;}
.ws53{word-spacing:5.760000pt;}
.ws22{word-spacing:5.813333pt;}
.wsa2{word-spacing:5.845333pt;}
.ws32{word-spacing:5.866667pt;}
.ws7e{word-spacing:5.973333pt;}
.wsee{word-spacing:6.016000pt;}
.wsc8{word-spacing:6.026667pt;}
.ws68{word-spacing:6.133333pt;}
.ws35{word-spacing:6.186667pt;}
.ws3f{word-spacing:6.240000pt;}
.ws21{word-spacing:6.346667pt;}
.wse5{word-spacing:6.357333pt;}
.wsca{word-spacing:6.453333pt;}
.ws87{word-spacing:6.506667pt;}
.ws4a{word-spacing:6.528000pt;}
.ws41{word-spacing:6.560000pt;}
.ws4d{word-spacing:6.613333pt;}
.ws30{word-spacing:6.666667pt;}
.wsb1{word-spacing:6.773333pt;}
.wsb9{word-spacing:6.826667pt;}
.ws98{word-spacing:6.880000pt;}
.ws20{word-spacing:6.933333pt;}
.ws12{word-spacing:6.986667pt;}
.ws63{word-spacing:7.040000pt;}
.wsbd{word-spacing:7.093333pt;}
.ws70{word-spacing:7.146667pt;}
.ws31{word-spacing:7.306667pt;}
.ws7d{word-spacing:7.466667pt;}
.ws4b{word-spacing:7.509333pt;}
.wse{word-spacing:7.520000pt;}
.ws6f{word-spacing:7.573333pt;}
.ws10{word-spacing:7.680000pt;}
.wsaf{word-spacing:7.840000pt;}
.ws26{word-spacing:7.893333pt;}
.wsa1{word-spacing:8.000000pt;}
.ws5f{word-spacing:8.053333pt;}
.ws8f{word-spacing:8.106667pt;}
.ws9f{word-spacing:8.320000pt;}
.wsb3{word-spacing:8.373333pt;}
.ws72{word-spacing:8.426667pt;}
.ws5b{word-spacing:8.640000pt;}
.wsbb{word-spacing:8.746667pt;}
.ws77{word-spacing:8.853333pt;}
.ws76{word-spacing:9.120000pt;}
.ws91{word-spacing:9.173333pt;}
.wsb2{word-spacing:9.386667pt;}
.wse9{word-spacing:10.026667pt;}
.ws73{word-spacing:10.240000pt;}
.ws66{word-spacing:10.453333pt;}
.ws44{word-spacing:10.880000pt;}
.ws88{word-spacing:11.946667pt;}
.wsd1{word-spacing:12.074667pt;}
.ws17{word-spacing:12.160000pt;}
.wsad{word-spacing:12.213333pt;}
.wsaa{word-spacing:12.480000pt;}
.ws43{word-spacing:12.800000pt;}
.wsb4{word-spacing:15.146667pt;}
.ws8d{word-spacing:15.360000pt;}
.ws45{word-spacing:16.373333pt;}
.ws93{word-spacing:17.405319pt;}
.ws92{word-spacing:17.438884pt;}
.ws94{word-spacing:18.087455pt;}
.wsea{word-spacing:18.986667pt;}
.ws1b{word-spacing:64.938667pt;}
.wsc3{word-spacing:123.477376pt;}
.wsa8{word-spacing:130.048014pt;}
.wsa7{word-spacing:151.381348pt;}
.wsa9{word-spacing:172.202637pt;}
.wsc2{word-spacing:187.903971pt;}
.wsc1{word-spacing:209.237305pt;}
.wsa6{word-spacing:620.822962pt;}
.wsc0{word-spacing:674.227740pt;}
._28{margin-left:-16.714803pt;}
._2c{margin-left:-14.890675pt;}
._b{margin-left:-13.866679pt;}
._16{margin-left:-11.850672pt;}
._2a{margin-left:-10.581341pt;}
._10{margin-left:-7.944474pt;}
._1{margin-left:-4.784000pt;}
._6{margin-left:-3.866667pt;}
._3{margin-left:-2.577600pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.040000pt;}
._8{width:1.937600pt;}
._14{width:3.216000pt;}
._a{width:4.373321pt;}
._13{width:5.272271pt;}
._e{width:6.756766pt;}
._7{width:7.840000pt;}
._12{width:8.797025pt;}
._19{width:10.506670pt;}
._17{width:12.304947pt;}
._f{width:13.747778pt;}
._15{width:15.194664pt;}
._9{width:17.482664pt;}
._c{width:19.840004pt;}
._11{width:21.490893pt;}
._2b{width:23.285331pt;}
._1a{width:25.066667pt;}
._18{width:27.045331pt;}
._1b{width:29.066646pt;}
._29{width:30.625547pt;}
._1c{width:32.213313pt;}
._4{width:35.308266pt;}
._5{width:36.441534pt;}
._d{width:50.005325pt;}
._21{width:54.784007pt;}
._1d{width:104.490674pt;}
._20{width:113.621257pt;}
._26{width:134.144043pt;}
._23{width:140.714742pt;}
._24{width:152.405335pt;}
._22{width:176.639933pt;}
._1f{width:182.869303pt;}
._1e{width:197.973348pt;}
._27{width:219.904053pt;}
._25{width:230.058675pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.342400pt;}
.fs7{font-size:42.508158pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:53.346664pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:0.173055pt;}
.yba{bottom:0.174398pt;}
.ye9{bottom:3.372965pt;}
.yee{bottom:3.506429pt;}
.yeb{bottom:5.239583pt;}
.ye7{bottom:5.372925pt;}
.y29{bottom:44.111465pt;}
.y3{bottom:44.112000pt;}
.y1{bottom:45.118398pt;}
.y25{bottom:80.005356pt;}
.yf9{bottom:80.074666pt;}
.y97{bottom:80.522664pt;}
.y72{bottom:80.575999pt;}
.y54{bottom:80.708933pt;}
.yb0{bottom:81.013331pt;}
.y7a{bottom:81.061188pt;}
.y127{bottom:87.499715pt;}
.y108{bottom:88.917999pt;}
.y13c{bottom:91.223602pt;}
.yf8{bottom:92.736003pt;}
.y96{bottom:93.184000pt;}
.y71{bottom:93.237335pt;}
.ydc{bottom:95.375610pt;}
.y194{bottom:95.375641pt;}
.y53{bottom:96.708933pt;}
.y24{bottom:96.933350pt;}
.y79{bottom:97.061188pt;}
.y15e{bottom:97.431732pt;}
.y126{bottom:103.499715pt;}
.y107{bottom:105.120666pt;}
.yf7{bottom:105.397329pt;}
.y95{bottom:105.845337pt;}
.y70{bottom:105.898671pt;}
.y13b{bottom:107.223602pt;}
.y193{bottom:108.036977pt;}
.y15d{bottom:110.093068pt;}
.ydb{bottom:111.375610pt;}
.y23{bottom:112.047353pt;}
.y52{bottom:112.708933pt;}
.y78{bottom:113.061188pt;}
.yf6{bottom:118.058665pt;}
.y94{bottom:118.506663pt;}
.y6f{bottom:118.559998pt;}
.y125{bottom:119.499715pt;}
.y192{bottom:120.698303pt;}
.y106{bottom:121.248667pt;}
.y15c{bottom:122.754405pt;}
.y13a{bottom:123.223602pt;}
.yda{bottom:127.375610pt;}
.y51{bottom:128.708933pt;}
.y22{bottom:128.975352pt;}
.yf5{bottom:130.720000pt;}
.y8d{bottom:130.997325pt;}
.y191{bottom:133.359639pt;}
.y15b{bottom:135.415731pt;}
.y124{bottom:135.499715pt;}
.y105{bottom:137.376668pt;}
.y139{bottom:139.223602pt;}
.yd9{bottom:143.375610pt;}
.y8c{bottom:143.658651pt;}
.y50{bottom:144.708933pt;}
.y77{bottom:145.061188pt;}
.y190{bottom:146.020976pt;}
.y15a{bottom:148.077067pt;}
.y21{bottom:150.180684pt;}
.y123{bottom:151.499715pt;}
.y104{bottom:153.504669pt;}
.y8b{bottom:156.319987pt;}
.y18f{bottom:158.682302pt;}
.yd8{bottom:159.375610pt;}
.y159{bottom:160.738403pt;}
.y20{bottom:162.842020pt;}
.y122{bottom:167.499715pt;}
.y8a{bottom:168.981323pt;}
.y103{bottom:169.632670pt;}
.y138{bottom:171.223592pt;}
.y18e{bottom:171.343648pt;}
.y158{bottom:173.399740pt;}
.yd7{bottom:175.375610pt;}
.y4f{bottom:176.708923pt;}
.y89{bottom:181.642660pt;}
.y121{bottom:183.499715pt;}
.y18d{bottom:184.004964pt;}
.y76{bottom:186.887858pt;}
.yd6{bottom:191.375610pt;}
.y88{bottom:194.303996pt;}
.y100{bottom:194.518005pt;}
.y18c{bottom:196.666300pt;}
.y120{bottom:199.499715pt;}
.y157{bottom:202.071737pt;}
.y75{bottom:202.887858pt;}
.y1f{bottom:204.948527pt;}
.y87{bottom:206.965312pt;}
.yff{bottom:207.179342pt;}
.y102{bottom:207.190002pt;}
.yd5{bottom:207.375610pt;}
.y18b{bottom:209.327637pt;}
.y11f{bottom:215.499715pt;}
.y137{bottom:219.223592pt;}
.y86{bottom:219.626648pt;}
.yfe{bottom:219.840658pt;}
.y101{bottom:219.851339pt;}
.y1e{bottom:220.948527pt;}
.y18a{bottom:221.988973pt;}
.yd4{bottom:223.375610pt;}
.y4e{bottom:224.708903pt;}
.y156{bottom:230.738403pt;}
.y11e{bottom:231.499715pt;}
.y85{bottom:232.287984pt;}
.y189{bottom:234.650309pt;}
.y74{bottom:234.887858pt;}
.y136{bottom:235.223592pt;}
.y1d{bottom:236.948527pt;}
.yd3{bottom:239.375610pt;}
.y4d{bottom:240.708903pt;}
.yfd{bottom:241.035339pt;}
.y84{bottom:244.949320pt;}
.y188{bottom:247.311646pt;}
.y11d{bottom:247.499715pt;}
.y135{bottom:251.223592pt;}
.y1c{bottom:252.948527pt;}
.yd2{bottom:255.375610pt;}
.y4c{bottom:256.708903pt;}
.y83{bottom:257.610657pt;}
.y187{bottom:259.972982pt;}
.y155{bottom:260.063619pt;}
.yfc{bottom:260.714254pt;}
.y11c{bottom:263.499715pt;}
.y134{bottom:267.223592pt;}
.y1b{bottom:268.948527pt;}
.y82{bottom:270.271993pt;}
.yd1{bottom:271.375610pt;}
.y186{bottom:272.634298pt;}
.y4b{bottom:272.708903pt;}
.y154{bottom:272.724955pt;}
.yfb{bottom:273.375590pt;}
.y11b{bottom:279.499715pt;}
.yac{bottom:280.166382pt;}
.y81{bottom:282.933329pt;}
.y1a{bottom:284.948527pt;}
.y185{bottom:285.295634pt;}
.yd0{bottom:287.375610pt;}
.y4a{bottom:288.708903pt;}
.y11a{bottom:295.499715pt;}
.y80{bottom:295.594645pt;}
.yab{bottom:296.166382pt;}
.y184{bottom:297.956970pt;}
.y153{bottom:298.730286pt;}
.ycf{bottom:303.375610pt;}
.y49{bottom:304.708903pt;}
.y7f{bottom:308.255981pt;}
.y183{bottom:310.618306pt;}
.y152{bottom:311.391622pt;}
.y119{bottom:311.499715pt;}
.yaa{bottom:312.166382pt;}
.y19{bottom:316.948527pt;}
.yce{bottom:319.375610pt;}
.y48{bottom:320.708903pt;}
.y7e{bottom:320.917318pt;}
.y14a{bottom:321.025970pt;}
.y182{bottom:323.279643pt;}
.y151{bottom:324.052938pt;}
.y118{bottom:327.499715pt;}
.ya9{bottom:328.166382pt;}
.y93{bottom:332.708903pt;}
.y7d{bottom:333.578654pt;}
.y149{bottom:333.687307pt;}
.y181{bottom:335.940979pt;}
.y47{bottom:336.708903pt;}
.yf4{bottom:336.708944pt;}
.y65{bottom:342.833049pt;}
.y117{bottom:343.499715pt;}
.ya8{bottom:344.166382pt;}
.y7c{bottom:346.239990pt;}
.y180{bottom:348.602295pt;}
.y92{bottom:348.708903pt;}
.y148{bottom:349.889964pt;}
.y150{bottom:350.058268pt;}
.ycd{bottom:352.042277pt;}
.y46{bottom:352.708903pt;}
.yf3{bottom:352.708944pt;}
.y64{bottom:358.833049pt;}
.y116{bottom:359.499715pt;}
.ya7{bottom:360.166382pt;}
.y17f{bottom:361.263631pt;}
.y147{bottom:362.551300pt;}
.y14f{bottom:362.719604pt;}
.y91{bottom:364.708903pt;}
.y18{bottom:364.948527pt;}
.ycc{bottom:368.042277pt;}
.y45{bottom:368.708903pt;}
.yf2{bottom:368.708944pt;}
.y17e{bottom:373.924967pt;}
.y63{bottom:374.833049pt;}
.y14e{bottom:375.380941pt;}
.y115{bottom:375.499715pt;}
.ya6{bottom:376.166382pt;}
.y146{bottom:378.689972pt;}
.y90{bottom:380.708903pt;}
.y17{bottom:380.948527pt;}
.ycb{bottom:383.873332pt;}
.yca{bottom:384.042277pt;}
.y44{bottom:384.708903pt;}
.yf1{bottom:384.708944pt;}
.y17d{bottom:386.586304pt;}
.y14d{bottom:388.042277pt;}
.y62{bottom:390.833049pt;}
.y145{bottom:391.351308pt;}
.y114{bottom:391.499715pt;}
.ya5{bottom:392.166382pt;}
.y8f{bottom:396.708903pt;}
.y16{bottom:396.948527pt;}
.y17c{bottom:399.247640pt;}
.yc9{bottom:400.042277pt;}
.y43{bottom:400.708903pt;}
.yf0{bottom:400.708944pt;}
.y61{bottom:406.833049pt;}
.y113{bottom:407.499715pt;}
.ya4{bottom:408.166382pt;}
.y17b{bottom:411.908976pt;}
.y15{bottom:412.948527pt;}
.yc8{bottom:416.042277pt;}
.y144{bottom:416.236643pt;}
.y42{bottom:416.708903pt;}
.yef{bottom:416.708944pt;}
.y60{bottom:422.833049pt;}
.y112{bottom:423.499715pt;}
.ya3{bottom:424.166382pt;}
.y17a{bottom:424.570312pt;}
.yea{bottom:427.477336pt;}
.y8e{bottom:428.708903pt;}
.y143{bottom:428.897980pt;}
.y14{bottom:428.948527pt;}
.yed{bottom:429.205322pt;}
.yc7{bottom:432.042277pt;}
.y41{bottom:432.708903pt;}
.yec{bottom:432.708944pt;}
.y179{bottom:437.231649pt;}
.y5f{bottom:438.833049pt;}
.y111{bottom:439.499715pt;}
.ya2{bottom:440.166382pt;}
.ye6{bottom:443.333333pt;}
.y13{bottom:444.948527pt;}
.ye8{bottom:445.325317pt;}
.yc6{bottom:448.042277pt;}
.y40{bottom:448.708903pt;}
.ye5{bottom:448.708944pt;}
.y178{bottom:449.892985pt;}
.y142{bottom:450.092641pt;}
.y5e{bottom:454.833049pt;}
.y110{bottom:455.499715pt;}
.ya1{bottom:456.166382pt;}
.y12{bottom:460.948527pt;}
.y177{bottom:462.554321pt;}
.yc5{bottom:464.042277pt;}
.y3f{bottom:464.708903pt;}
.ye4{bottom:464.708944pt;}
.y141{bottom:469.115600pt;}
.y5d{bottom:470.833049pt;}
.y10f{bottom:471.499715pt;}
.ya0{bottom:472.166382pt;}
.y176{bottom:475.215658pt;}
.y11{bottom:476.948527pt;}
.yc4{bottom:480.042277pt;}
.y3e{bottom:480.708903pt;}
.ye3{bottom:480.708944pt;}
.y5c{bottom:486.833049pt;}
.y10e{bottom:487.499715pt;}
.y175{bottom:487.876953pt;}
.y9f{bottom:488.166382pt;}
.y10{bottom:492.948527pt;}
.yc3{bottom:496.042277pt;}
.y3d{bottom:496.708903pt;}
.ye2{bottom:496.708944pt;}
.y174{bottom:500.538289pt;}
.y5b{bottom:502.833049pt;}
.y10d{bottom:503.499715pt;}
.y9e{bottom:504.166382pt;}
.yf{bottom:508.948527pt;}
.y140{bottom:509.286255pt;}
.yc2{bottom:512.042277pt;}
.y3c{bottom:512.708903pt;}
.ye1{bottom:512.708944pt;}
.y173{bottom:513.199626pt;}
.y5a{bottom:518.833049pt;}
.y10c{bottom:519.499715pt;}
.y9d{bottom:520.166382pt;}
.y13f{bottom:521.947591pt;}
.ye{bottom:524.948527pt;}
.y172{bottom:525.860962pt;}
.yc1{bottom:527.873332pt;}
.yc0{bottom:528.042277pt;}
.y3b{bottom:528.708903pt;}
.ye0{bottom:528.708944pt;}
.y13e{bottom:534.608927pt;}
.y59{bottom:534.833049pt;}
.y10b{bottom:535.499715pt;}
.y9c{bottom:536.166382pt;}
.y171{bottom:538.522298pt;}
.yd{bottom:540.948527pt;}
.ybf{bottom:544.042277pt;}
.y3a{bottom:544.708903pt;}
.ydf{bottom:544.708944pt;}
.y13d{bottom:547.270264pt;}
.y58{bottom:550.833049pt;}
.y170{bottom:551.183634pt;}
.y10a{bottom:551.499715pt;}
.y9b{bottom:552.166382pt;}
.yc{bottom:556.948527pt;}
.ybe{bottom:560.042277pt;}
.y39{bottom:560.708903pt;}
.yde{bottom:560.708944pt;}
.y16f{bottom:563.844971pt;}
.y109{bottom:567.499715pt;}
.y9a{bottom:568.166382pt;}
.yb{bottom:572.948527pt;}
.ybd{bottom:576.042277pt;}
.y16e{bottom:576.506307pt;}
.y38{bottom:576.708903pt;}
.y99{bottom:584.166382pt;}
.y6e{bottom:588.699585pt;}
.y16d{bottom:589.167643pt;}
.ybc{bottom:592.042277pt;}
.y37{bottom:592.708903pt;}
.ydd{bottom:592.708944pt;}
.y6d{bottom:601.360921pt;}
.y16c{bottom:601.828979pt;}
.ybb{bottom:608.042277pt;}
.y36{bottom:608.708903pt;}
.y6c{bottom:614.022257pt;}
.y16b{bottom:614.490316pt;}
.ya{bottom:616.053060pt;}
.yb9{bottom:623.873332pt;}
.yb8{bottom:624.042277pt;}
.y35{bottom:624.708903pt;}
.y6b{bottom:626.683553pt;}
.y16a{bottom:627.151652pt;}
.y28{bottom:628.439643pt;}
.y9{bottom:628.714396pt;}
.yaf{bottom:629.307576pt;}
.y6a{bottom:639.344889pt;}
.y169{bottom:639.812988pt;}
.yb5{bottom:639.874674pt;}
.yb4{bottom:640.042236pt;}
.yb7{bottom:640.042277pt;}
.y34{bottom:640.708903pt;}
.yae{bottom:641.968913pt;}
.y69{bottom:652.006226pt;}
.y168{bottom:652.474325pt;}
.yad{bottom:654.630249pt;}
.yb3{bottom:656.042236pt;}
.y33{bottom:656.708903pt;}
.y8{bottom:662.357463pt;}
.y133{bottom:663.434245pt;}
.y68{bottom:664.667562pt;}
.y167{bottom:665.135620pt;}
.yb2{bottom:672.042236pt;}
.y32{bottom:672.708903pt;}
.y132{bottom:676.095581pt;}
.y67{bottom:677.328898pt;}
.y166{bottom:677.796956pt;}
.y7{bottom:678.357503pt;}
.y19d{bottom:687.292969pt;}
.y31{bottom:688.708903pt;}
.y131{bottom:688.756917pt;}
.y66{bottom:689.990234pt;}
.y165{bottom:690.458333pt;}
.y6{bottom:694.357503pt;}
.y19c{bottom:699.963623pt;}
.y130{bottom:701.418213pt;}
.y164{bottom:703.119629pt;}
.y30{bottom:704.708903pt;}
.y12f{bottom:714.079590pt;}
.y163{bottom:715.781006pt;}
.y2f{bottom:720.708903pt;}
.y19b{bottom:726.736979pt;}
.y12e{bottom:726.740885pt;}
.y162{bottom:728.442301pt;}
.y5{bottom:732.351562pt;}
.y2e{bottom:736.708903pt;}
.y19a{bottom:739.398275pt;}
.y12d{bottom:739.402262pt;}
.y199{bottom:752.059652pt;}
.y12c{bottom:752.063558pt;}
.y4{bottom:752.354248pt;}
.y2d{bottom:752.708903pt;}
.y161{bottom:757.375570pt;}
.y198{bottom:764.720947pt;}
.y12b{bottom:764.724935pt;}
.y2c{bottom:768.708903pt;}
.y197{bottom:777.382324pt;}
.y12a{bottom:777.386230pt;}
.y2b{bottom:784.708903pt;}
.y196{bottom:790.043620pt;}
.y129{bottom:790.047607pt;}
.y2a{bottom:800.708903pt;}
.y195{bottom:802.704997pt;}
.y128{bottom:802.708903pt;}
.y2{bottom:822.992920pt;}
.yb1{bottom:834.674961pt;}
.yfa{bottom:834.685588pt;}
.y73{bottom:834.781228pt;}
.y98{bottom:834.876961pt;}
.y7b{bottom:834.887588pt;}
.y14c{bottom:834.891892pt;}
.y56{bottom:834.891902pt;}
.y27{bottom:834.891923pt;}
.y160{bottom:834.891927pt;}
.y14b{bottom:834.891974pt;}
.y55{bottom:834.891984pt;}
.y26{bottom:834.892004pt;}
.y15f{bottom:834.892008pt;}
.y57{bottom:834.983228pt;}
.h11{height:9.065333pt;}
.h13{height:9.066667pt;}
.h16{height:9.333333pt;}
.h14{height:11.333333pt;}
.h19{height:12.533333pt;}
.h17{height:14.400000pt;}
.hc{height:21.085867pt;}
.he{height:28.055385pt;}
.h1b{height:29.525333pt;}
.hd{height:29.866667pt;}
.h2{height:30.080000pt;}
.hb{height:30.122667pt;}
.ha{height:30.833333pt;}
.h1e{height:32.005333pt;}
.h15{height:35.315492pt;}
.h12{height:35.635572pt;}
.h1a{height:36.062345pt;}
.h18{height:36.702505pt;}
.h3{height:37.376000pt;}
.h8{height:37.653333pt;}
.hf{height:37.802667pt;}
.h1d{height:40.165333pt;}
.h1c{height:43.648000pt;}
.h10{height:47.680000pt;}
.h4{height:48.766452pt;}
.h7{height:52.746667pt;}
.h6{height:57.658667pt;}
.h9{height:58.021333pt;}
.h5{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w3{width:5.478667pt;}
.w2{width:5.480000pt;}
.w5{width:35.945333pt;}
.w4{width:47.799998pt;}
.w7{width:56.426666pt;}
.w6{width:58.946665pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.xb{left:67.050293pt;}
.x2{left:68.031469pt;}
.x7{left:69.996800pt;}
.x28{left:76.005732pt;}
.x8{left:83.151469pt;}
.x4{left:86.932782pt;}
.xd{left:89.364797pt;}
.x29{left:90.708800pt;}
.x12{left:109.434662pt;}
.x1f{left:113.126819pt;}
.x13{left:114.921600pt;}
.x1a{left:126.978129pt;}
.x25{left:142.275487pt;}
.x1b{left:160.936005pt;}
.x1e{left:173.291746pt;}
.xe{left:180.107992pt;}
.xf{left:185.654928pt;}
.x9{left:216.333898pt;}
.x1c{left:217.362142pt;}
.x20{left:237.798826pt;}
.x6{left:286.744400pt;}
.x21{left:302.182819pt;}
.x26{left:333.627100pt;}
.x16{left:342.583984pt;}
.x5{left:344.438712pt;}
.x22{left:349.254820pt;}
.x17{left:390.383993pt;}
.x27{left:407.269760pt;}
.x14{left:412.105347pt;}
.x23{left:413.766824pt;}
.x15{left:417.672404pt;}
.x18{left:425.010661pt;}
.x1{left:431.874146pt;}
.x10{left:449.461344pt;}
.x11{left:455.007853pt;}
.x19{left:460.956380pt;}
.x3{left:463.672526pt;}
.x24{left:478.150816pt;}
.xa{left:492.061961pt;}
.xc{left:498.067610pt;}
.x1d{left:499.215317pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
