
/* 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_bdfdcd4e1a66.woff")format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_865c31bf1305.woff")format("woff");}.ff2{font-family:ff2;line-height:0.747000;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_06d265a923ee.woff")format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_625e79359e6b.woff")format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_b76e174d6978.woff")format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_a5b54d7178c6.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_b641ab6714fe.woff")format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_fe02fd9158c5.woff")format("woff");}.ff8{font-family:ff8;line-height:1.575000;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_0e73759bc5bb.woff")format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_8b4601701f74.woff")format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_70b1390d564e.woff")format("woff");}.ffb{font-family:ffb;line-height:1.575000;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;}
.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);}
.v2{vertical-align:-88.560000px;}
.v4{vertical-align:-64.080000px;}
.v8{vertical-align:-27.721200px;}
.va{vertical-align:-12.240600px;}
.v9{vertical-align:-4.322400px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.880000px;}
.v1{vertical-align:30.240000px;}
.v5{vertical-align:41.400000px;}
.v6{vertical-align:68.759400px;}
.v3{vertical-align:75.959640px;}
.ls3{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.144288px;}
.ls5{letter-spacing:-0.144000px;}
.ls44{letter-spacing:-0.119448px;}
.ls61{letter-spacing:-0.114228px;}
.ls5f{letter-spacing:-0.108216px;}
.ls8{letter-spacing:-0.108000px;}
.ls62{letter-spacing:-0.096192px;}
.ls20{letter-spacing:-0.093600px;}
.ls60{letter-spacing:-0.090180px;}
.ls59{letter-spacing:-0.084168px;}
.ls1c{letter-spacing:-0.079200px;}
.ls57{letter-spacing:-0.078156px;}
.ls54{letter-spacing:-0.072144px;}
.ls1e{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.070308px;}
.ls55{letter-spacing:-0.066132px;}
.ls1a{letter-spacing:-0.064800px;}
.ls51{letter-spacing:-0.060120px;}
.ls26{letter-spacing:-0.057600px;}
.ls19{letter-spacing:-0.054684px;}
.ls50{letter-spacing:-0.054108px;}
.ls1d{letter-spacing:-0.050400px;}
.ls4f{letter-spacing:-0.048096px;}
.ls16{letter-spacing:-0.043200px;}
.ls53{letter-spacing:-0.042084px;}
.ls3b{letter-spacing:-0.039060px;}
.ls56{letter-spacing:-0.036072px;}
.ls14{letter-spacing:-0.036000px;}
.ls45{letter-spacing:-0.034128px;}
.ls3d{letter-spacing:-0.031248px;}
.ls5b{letter-spacing:-0.030060px;}
.ls15{letter-spacing:-0.028800px;}
.ls43{letter-spacing:-0.025164px;}
.ls58{letter-spacing:-0.024048px;}
.ls38{letter-spacing:-0.023436px;}
.ls17{letter-spacing:-0.021600px;}
.ls46{letter-spacing:-0.018036px;}
.ls35{letter-spacing:-0.016776px;}
.ls18{letter-spacing:-0.014400px;}
.ls52{letter-spacing:-0.012024px;}
.ls36{letter-spacing:-0.008388px;}
.ls27{letter-spacing:-0.007812px;}
.ls1f{letter-spacing:-0.007200px;}
.ls47{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.006012px;}
.ls1b{letter-spacing:0.007200px;}
.ls5d{letter-spacing:0.012024px;}
.lsc{letter-spacing:0.014400px;}
.ls42{letter-spacing:0.018036px;}
.ls29{letter-spacing:0.021600px;}
.ls41{letter-spacing:0.024048px;}
.ls37{letter-spacing:0.028800px;}
.ls48{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.031248px;}
.ls32{letter-spacing:0.036000px;}
.ls4a{letter-spacing:0.036072px;}
.lsa{letter-spacing:0.039060px;}
.ls2e{letter-spacing:0.039528px;}
.ls33{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.046116px;}
.ls21{letter-spacing:0.046872px;}
.ls4d{letter-spacing:0.048096px;}
.ls24{letter-spacing:0.050328px;}
.ls2b{letter-spacing:0.052704px;}
.ls4e{letter-spacing:0.054108px;}
.ls3e{letter-spacing:0.057600px;}
.ls3c{letter-spacing:0.058716px;}
.ls2c{letter-spacing:0.059292px;}
.ls22{letter-spacing:0.062496px;}
.ls2f{letter-spacing:0.065880px;}
.ls23{letter-spacing:0.067104px;}
.lsb{letter-spacing:0.070308px;}
.ls4{letter-spacing:0.072000px;}
.ls5c{letter-spacing:0.072144px;}
.ls30{letter-spacing:0.072468px;}
.ls34{letter-spacing:0.075492px;}
.ls5e{letter-spacing:0.078156px;}
.ls2a{letter-spacing:0.085932px;}
.ls11{letter-spacing:0.086400px;}
.ls49{letter-spacing:0.096192px;}
.ls1{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.114228px;}
.ls25{letter-spacing:0.117180px;}
.ls3f{letter-spacing:0.122400px;}
.ls10{letter-spacing:0.136800px;}
.lsf{letter-spacing:0.144000px;}
.lse{letter-spacing:0.151200px;}
.ls39{letter-spacing:0.158400px;}
.ls6{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.324000px;}
.ls3a{letter-spacing:50.904000px;}
.ls31{letter-spacing:54.864000px;}
.ls4b{letter-spacing:59.639040px;}
.ls5a{letter-spacing:59.939640px;}
.ls4c{letter-spacing:63.186120px;}
.lsd{letter-spacing:950.544000px;}
.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;}
}
.wse0{word-spacing:-60.120000px;}
.ws3{word-spacing:-26.892000px;}
.ws2{word-spacing:-26.676000px;}
.wsa5{word-spacing:-20.008800px;}
.wsc{word-spacing:-19.972800px;}
.wsd{word-spacing:-19.944000px;}
.wse{word-spacing:-19.922400px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws11a{word-spacing:-13.689324px;}
.ws11b{word-spacing:-13.611168px;}
.wsd0{word-spacing:-12.934512px;}
.wscf{word-spacing:-12.849192px;}
.wsb{word-spacing:-1.260000px;}
.ws34{word-spacing:-0.523404px;}
.ws10{word-spacing:-0.460908px;}
.wsa{word-spacing:-0.432000px;}
.wsbf{word-spacing:-0.429660px;}
.wse4{word-spacing:-0.420840px;}
.wse9{word-spacing:-0.384768px;}
.ws12{word-spacing:-0.374976px;}
.ws13{word-spacing:-0.351540px;}
.ws11{word-spacing:-0.312480px;}
.ws9b{word-spacing:-0.257796px;}
.ws2a{word-spacing:-0.218736px;}
.ws8{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.203112px;}
.wsde{word-spacing:-0.168336px;}
.wsdf{word-spacing:-0.162324px;}
.wsda{word-spacing:-0.150300px;}
.ws2b{word-spacing:-0.148428px;}
.wsdc{word-spacing:-0.138276px;}
.ws8a{word-spacing:-0.132804px;}
.wsdb{word-spacing:-0.126252px;}
.ws9{word-spacing:-0.108000px;}
.wsaa{word-spacing:-0.101556px;}
.ws5{word-spacing:-0.072000px;}
.wsb7{word-spacing:-0.062496px;}
.wsfc{word-spacing:-0.048096px;}
.wsfa{word-spacing:-0.036072px;}
.ws7c{word-spacing:-0.031248px;}
.ws11c{word-spacing:-0.024048px;}
.wse1{word-spacing:-0.012024px;}
.ws6f{word-spacing:-0.006588px;}
.wsf3{word-spacing:-0.006012px;}
.ws4{word-spacing:0.000000px;}
.wseb{word-spacing:0.006012px;}
.ws6a{word-spacing:0.006588px;}
.wse6{word-spacing:0.012024px;}
.ws6d{word-spacing:0.013176px;}
.ws88{word-spacing:0.016776px;}
.wse3{word-spacing:0.018036px;}
.ws70{word-spacing:0.019764px;}
.wse5{word-spacing:0.024048px;}
.ws29{word-spacing:0.025164px;}
.wse2{word-spacing:0.030060px;}
.wsea{word-spacing:0.036072px;}
.wse7{word-spacing:0.042084px;}
.wsce{word-spacing:0.043200px;}
.wsec{word-spacing:0.048096px;}
.wsf5{word-spacing:0.054108px;}
.wsa4{word-spacing:0.057600px;}
.wsa9{word-spacing:0.072000px;}
.ws114{word-spacing:0.078156px;}
.ws116{word-spacing:0.084168px;}
.ws9f{word-spacing:0.122400px;}
.wsa8{word-spacing:0.129600px;}
.wsd7{word-spacing:0.136800px;}
.ws6{word-spacing:0.144000px;}
.ws55{word-spacing:0.151200px;}
.ws2f{word-spacing:0.158400px;}
.ws27{word-spacing:0.165600px;}
.ws22{word-spacing:0.172800px;}
.ws1a{word-spacing:0.180000px;}
.ws50{word-spacing:0.187200px;}
.ws1c{word-spacing:0.194400px;}
.ws26{word-spacing:0.201600px;}
.ws4d{word-spacing:0.208800px;}
.ws7{word-spacing:0.216000px;}
.ws1b{word-spacing:0.223200px;}
.ws25{word-spacing:0.237600px;}
.ws9a{word-spacing:0.259200px;}
.ws89{word-spacing:0.285192px;}
.ws47{word-spacing:0.302400px;}
.wsaf{word-spacing:0.338400px;}
.ws115{word-spacing:0.420840px;}
.ws5b{word-spacing:0.540000px;}
.ws69{word-spacing:0.554400px;}
.ws7d{word-spacing:0.878400px;}
.ws53{word-spacing:0.900000px;}
.ws7e{word-spacing:0.993600px;}
.ws54{word-spacing:1.015200px;}
.ws17{word-spacing:1.598400px;}
.ws16{word-spacing:1.728000px;}
.ws3b{word-spacing:1.965600px;}
.wsb6{word-spacing:1.994400px;}
.ws35{word-spacing:2.001600px;}
.ws14{word-spacing:2.030400px;}
.ws36{word-spacing:2.080800px;}
.ws15{word-spacing:2.102400px;}
.ws2c{word-spacing:2.448000px;}
.ws2e{word-spacing:2.455200px;}
.ws2d{word-spacing:2.606400px;}
.wscb{word-spacing:2.692800px;}
.wscc{word-spacing:2.736000px;}
.ws7b{word-spacing:3.045600px;}
.ws49{word-spacing:3.067200px;}
.ws48{word-spacing:3.139200px;}
.ws109{word-spacing:3.258504px;}
.ws108{word-spacing:3.270528px;}
.ws7a{word-spacing:3.276000px;}
.ws96{word-spacing:3.369600px;}
.ws94{word-spacing:3.391200px;}
.wsc9{word-spacing:3.405600px;}
.wsca{word-spacing:3.420000px;}
.wsbc{word-spacing:3.434400px;}
.ws95{word-spacing:3.585600px;}
.ws42{word-spacing:3.751200px;}
.ws57{word-spacing:3.787200px;}
.ws56{word-spacing:3.794400px;}
.wsa0{word-spacing:3.816000px;}
.ws41{word-spacing:3.888000px;}
.ws118{word-spacing:3.973932px;}
.wsff{word-spacing:3.985956px;}
.ws117{word-spacing:3.991968px;}
.ws18{word-spacing:4.010400px;}
.ws19{word-spacing:4.089600px;}
.ws43{word-spacing:4.154400px;}
.ws112{word-spacing:4.328640px;}
.ws111{word-spacing:4.340664px;}
.ws110{word-spacing:4.352688px;}
.ws30{word-spacing:4.478400px;}
.ws31{word-spacing:4.485600px;}
.wsad{word-spacing:4.831200px;}
.wsae{word-spacing:4.852800px;}
.wsf9{word-spacing:5.050080px;}
.wsf8{word-spacing:5.056092px;}
.wsf7{word-spacing:5.062104px;}
.ws11e{word-spacing:5.422824px;}
.ws11d{word-spacing:5.440860px;}
.wsbd{word-spacing:5.551200px;}
.wsbe{word-spacing:5.688000px;}
.ws81{word-spacing:5.940000px;}
.ws92{word-spacing:5.954400px;}
.ws93{word-spacing:5.968800px;}
.ws80{word-spacing:6.127200px;}
.ws8b{word-spacing:6.264000px;}
.wscd{word-spacing:6.278400px;}
.ws3a{word-spacing:6.285600px;}
.ws4c{word-spacing:6.292800px;}
.ws8c{word-spacing:6.357600px;}
.ws4a{word-spacing:6.386400px;}
.ws39{word-spacing:6.429600px;}
.ws4b{word-spacing:6.458400px;}
.ws5e{word-spacing:6.616800px;}
.wsb9{word-spacing:6.638400px;}
.ws72{word-spacing:6.667200px;}
.wsb8{word-spacing:6.717600px;}
.ws73{word-spacing:6.724800px;}
.ws5d{word-spacing:6.739200px;}
.wsa3{word-spacing:7.696800px;}
.wsa1{word-spacing:7.812000px;}
.wsa2{word-spacing:7.869600px;}
.ws10a{word-spacing:9.739440px;}
.ws10b{word-spacing:9.757476px;}
.ws82{word-spacing:9.900000px;}
.ws84{word-spacing:9.907200px;}
.ws83{word-spacing:9.914400px;}
.ws76{word-spacing:9.921600px;}
.ws77{word-spacing:10.000800px;}
.ws119{word-spacing:10.112184px;}
.ws113{word-spacing:10.472904px;}
.ws68{word-spacing:10.958400px;}
.ws67{word-spacing:11.073600px;}
.ws101{word-spacing:11.176308px;}
.ws100{word-spacing:11.182320px;}
.wsef{word-spacing:11.537028px;}
.wsfb{word-spacing:11.549052px;}
.wsf0{word-spacing:11.561076px;}
.ws28{word-spacing:12.038400px;}
.ws24{word-spacing:12.074400px;}
.ws1e{word-spacing:12.081600px;}
.ws20{word-spacing:12.088800px;}
.ws1f{word-spacing:12.103200px;}
.ws21{word-spacing:12.110400px;}
.ws1d{word-spacing:12.117600px;}
.ws52{word-spacing:12.391200px;}
.ws51{word-spacing:12.405600px;}
.ws4f{word-spacing:12.420000px;}
.ws4e{word-spacing:12.441600px;}
.wsb0{word-spacing:12.456000px;}
.ws8e{word-spacing:12.787200px;}
.ws8d{word-spacing:12.873600px;}
.ws8f{word-spacing:12.924000px;}
.ws46{word-spacing:13.867200px;}
.ws44{word-spacing:13.874400px;}
.ws45{word-spacing:14.220000px;}
.wsc8{word-spacing:14.565600px;}
.wsc7{word-spacing:14.688000px;}
.ws5f{word-spacing:14.940000px;}
.ws60{word-spacing:15.069600px;}
.ws32{word-spacing:15.645600px;}
.ws66{word-spacing:15.681600px;}
.ws33{word-spacing:15.739200px;}
.wsee{word-spacing:16.214364px;}
.wsed{word-spacing:16.244424px;}
.ws5c{word-spacing:16.387200px;}
.ws75{word-spacing:16.711200px;}
.ws74{word-spacing:16.804800px;}
.ws79{word-spacing:17.100000px;}
.ws78{word-spacing:17.114400px;}
.ws40{word-spacing:17.812800px;}
.ws3f{word-spacing:17.841600px;}
.ws23{word-spacing:18.072000px;}
.ws91{word-spacing:18.180000px;}
.ws90{word-spacing:18.194400px;}
.wsdd{word-spacing:18.913752px;}
.ws97{word-spacing:21.045600px;}
.ws98{word-spacing:21.074400px;}
.ws99{word-spacing:21.232800px;}
.ws64{word-spacing:22.507200px;}
.ws63{word-spacing:22.579200px;}
.ws65{word-spacing:22.824000px;}
.ws86{word-spacing:23.918400px;}
.ws87{word-spacing:23.925600px;}
.ws85{word-spacing:24.069600px;}
.wsb1{word-spacing:26.452800px;}
.wsb2{word-spacing:26.467200px;}
.ws62{word-spacing:26.474400px;}
.ws7f{word-spacing:26.834400px;}
.ws9c{word-spacing:28.584000px;}
.ws9d{word-spacing:28.648800px;}
.wsb3{word-spacing:30.045600px;}
.wsb5{word-spacing:30.052800px;}
.wsb4{word-spacing:30.088800px;}
.ws58{word-spacing:30.398400px;}
.ws59{word-spacing:30.542400px;}
.ws5a{word-spacing:30.571200px;}
.ws3d{word-spacing:43.754400px;}
.ws3c{word-spacing:43.855200px;}
.ws3e{word-spacing:43.912800px;}
.wsab{word-spacing:44.517600px;}
.wsac{word-spacing:44.690400px;}
.wsa6{word-spacing:48.420000px;}
.wsa7{word-spacing:48.484800px;}
.wsc6{word-spacing:48.765600px;}
.wsc5{word-spacing:49.053600px;}
.wsba{word-spacing:50.918400px;}
.wsbb{word-spacing:50.925600px;}
.wsc4{word-spacing:53.820000px;}
.wsc3{word-spacing:54.165600px;}
.wsd1{word-spacing:56.685600px;}
.wsc0{word-spacing:62.460000px;}
.ws61{word-spacing:62.467200px;}
.ws37{word-spacing:65.325600px;}
.ws38{word-spacing:65.332800px;}
.wsc2{word-spacing:87.602400px;}
.wsc1{word-spacing:87.868800px;}
.wsf6{word-spacing:96.396408px;}
.wsf2{word-spacing:96.402420px;}
.wse8{word-spacing:96.426468px;}
.wsf4{word-spacing:96.444504px;}
.wsf1{word-spacing:96.456528px;}
.ws9e{word-spacing:111.405600px;}
.ws105{word-spacing:141.396228px;}
.ws103{word-spacing:141.402240px;}
.wsfd{word-spacing:141.426288px;}
.ws104{word-spacing:141.444324px;}
.ws102{word-spacing:141.456348px;}
.wsfe{word-spacing:141.462360px;}
.ws10f{word-spacing:141.756948px;}
.ws10d{word-spacing:141.762960px;}
.ws106{word-spacing:141.787008px;}
.ws10e{word-spacing:141.805044px;}
.ws10c{word-spacing:141.817068px;}
.ws107{word-spacing:141.823080px;}
.wsd4{word-spacing:145.166400px;}
.wsd9{word-spacing:178.063200px;}
.wsd3{word-spacing:200.023200px;}
.wsd8{word-spacing:205.063200px;}
.wsd5{word-spacing:281.872800px;}
.wsd6{word-spacing:332.301600px;}
.wsd2{word-spacing:482.212800px;}
.ws6e{word-spacing:768.239856px;}
.ws71{word-spacing:1281.596580px;}
.ws6b{word-spacing:1475.995284px;}
.ws6c{word-spacing:1895.413716px;}
._1c{margin-left:-1869.474888px;}
._1a{margin-left:-1475.632944px;}
._24{margin-left:-1281.161772px;}
._20{margin-left:-767.488824px;}
._18{margin-left:-35.640000px;}
._31{margin-left:-33.419976px;}
._7{margin-left:-11.880000px;}
._12{margin-left:-10.440000px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.513600px;}
._9{width:4.924800px;}
._10{width:6.732000px;}
._6{width:8.899200px;}
._b{width:10.641600px;}
._3{width:11.880000px;}
._c{width:12.960000px;}
._e{width:15.926400px;}
._30{width:21.600864px;}
._17{width:24.480000px;}
._27{width:25.560000px;}
._2d{width:34.099200px;}
._11{width:38.880000px;}
._19{width:39.888000px;}
._13{width:41.040000px;}
._16{width:42.480000px;}
._14{width:48.528000px;}
._15{width:50.040000px;}
._8{width:51.120000px;}
._26{width:52.560000px;}
._d{width:59.040000px;}
._4{width:63.000000px;}
._28{width:65.664000px;}
._5{width:71.280000px;}
._25{width:74.160000px;}
._2{width:79.200000px;}
._f{width:83.160000px;}
._1f{width:88.198980px;}
._35{width:92.296800px;}
._3c{width:96.516960px;}
._32{width:101.728800px;}
._41{width:114.121188px;}
._1d{width:118.792140px;}
._39{width:120.240000px;}
._37{width:125.280000px;}
._22{width:137.153928px;}
._2f{width:140.270400px;}
._3f{width:141.516360px;}
._2c{width:145.310400px;}
._21{width:151.266732px;}
._1b{width:162.710268px;}
._3e{width:163.839360px;}
._34{width:165.088800px;}
._42{width:166.358160px;}
._44{width:172.117560px;}
._3b{width:188.307600px;}
._29{width:192.240000px;}
._46{width:200.157252px;}
._43{width:202.682052px;}
._2e{width:205.084800px;}
._3d{width:206.638452px;}
._40{width:209.163852px;}
._3a{width:267.894672px;}
._33{width:422.539200px;}
._45{width:430.603932px;}
._2b{width:609.343200px;}
._36{width:619.200000px;}
._38{width:635.400000px;}
._2a{width:711.618480px;}
._1e{width:1279.066356px;}
._23{width:1649.876532px;}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(13,27,67);}
.fc3{color:rgb(154,154,154);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.y1bd{bottom:69.691200px;}
.y103{bottom:70.589700px;}
.y1d{bottom:86.580000px;}
.y93{bottom:91.380450px;}
.y1c{bottom:106.920000px;}
.y6a{bottom:114.060450px;}
.yba{bottom:120.000450px;}
.y92{bottom:121.440450px;}
.y1b{bottom:127.260000px;}
.y69{bottom:135.030450px;}
.yb9{bottom:141.060450px;}
.y1a{bottom:147.600000px;}
.y91{bottom:151.410450px;}
.yb8{bottom:162.030450px;}
.y68{bottom:165.000450px;}
.y19{bottom:168.120000px;}
.y90{bottom:172.380450px;}
.y1bb{bottom:175.620000px;}
.yb7{bottom:182.910450px;}
.y67{bottom:186.060450px;}
.y18{bottom:188.460000px;}
.y8f{bottom:193.440450px;}
.y1ba{bottom:193.890450px;}
.y66{bottom:207.030450px;}
.y17{bottom:208.800000px;}
.yb6{bottom:213.060450px;}
.y1b9{bottom:214.856430px;}
.y8e{bottom:223.860450px;}
.y16{bottom:229.140000px;}
.y1e8{bottom:230.160450px;}
.y1b8{bottom:232.050750px;}
.yb5{bottom:234.030450px;}
.y65{bottom:237.000450px;}
.y8d{bottom:247.980540px;}
.y1b7{bottom:249.240600px;}
.y15{bottom:249.660000px;}
.y1e7{bottom:253.379850px;}
.yb4{bottom:255.000450px;}
.y134{bottom:255.900450px;}
.y64{bottom:258.060450px;}
.y1b6{bottom:263.460450px;}
.y162{bottom:265.080450px;}
.y8c{bottom:266.970450px;}
.y14{bottom:270.000000px;}
.y1e6{bottom:271.740450px;}
.y133{bottom:273.180450px;}
.yb3{bottom:275.970450px;}
.y63{bottom:288.030450px;}
.y13{bottom:290.340000px;}
.y1b5{bottom:290.546280px;}
.y8b{bottom:291.270450px;}
.y1e5{bottom:292.616280px;}
.y132{bottom:297.116580px;}
.y161{bottom:298.380450px;}
.yb2{bottom:306.030450px;}
.y1b4{bottom:307.740600px;}
.y62{bottom:309.000450px;}
.y1e4{bottom:309.810600px;}
.y12{bottom:310.860000px;}
.y192{bottom:312.960450px;}
.y131{bottom:314.310900px;}
.y160{bottom:315.660450px;}
.yb1{bottom:327.000450px;}
.y1e3{bottom:327.090600px;}
.y1b3{bottom:327.990450px;}
.y8a{bottom:328.980450px;}
.y191{bottom:330.240450px;}
.y11{bottom:331.200000px;}
.y130{bottom:334.470600px;}
.y61{bottom:339.060450px;}
.y15f{bottom:339.596430px;}
.y42{bottom:340.230450px;}
.y1e2{bottom:341.310450px;}
.yb0{bottom:348.060450px;}
.y10{bottom:351.540000px;}
.y12f{bottom:351.750600px;}
.y1b2{bottom:353.010000px;}
.y89{bottom:353.100540px;}
.y190{bottom:354.176430px;}
.y15e{bottom:356.790750px;}
.y60{bottom:360.030450px;}
.y41{bottom:361.200450px;}
.y1e1{bottom:366.331350px;}
.y1b1{bottom:371.280450px;}
.y18f{bottom:371.370750px;}
.yf{bottom:371.880000px;}
.y88{bottom:372.090450px;}
.y12e{bottom:375.686130px;}
.y15d{bottom:377.040600px;}
.yaf{bottom:378.219690px;}
.y5f{bottom:381.000450px;}
.y1e0{bottom:384.690450px;}
.y40{bottom:391.260450px;}
.ye{bottom:391.500000px;}
.y18e{bottom:391.530450px;}
.y12d{bottom:392.880450px;}
.y15c{bottom:394.230450px;}
.y1b0{bottom:396.300000px;}
.y87{bottom:396.390450px;}
.yae{bottom:400.620600px;}
.y18d{bottom:408.810450px;}
.y1df{bottom:409.710000px;}
.y12c{bottom:410.160450px;}
.y5e{bottom:411.060450px;}
.y3f{bottom:412.230450px;}
.yd{bottom:412.560000px;}
.y1af{bottom:414.570450px;}
.y15b{bottom:418.170600px;}
.y1de{bottom:427.980450px;}
.y5d{bottom:432.030450px;}
.y18c{bottom:432.746130px;}
.y3e{bottom:433.200450px;}
.y12b{bottom:434.100750px;}
.y86{bottom:434.190450px;}
.y15a{bottom:435.450600px;}
.y1ae{bottom:439.500000px;}
.yad{bottom:440.850450px;}
.yc{bottom:441.540000px;}
.y18b{bottom:449.940450px;}
.y12a{bottom:451.290600px;}
.y1dd{bottom:453.000150px;}
.y3d{bottom:454.260450px;}
.y1ad{bottom:457.860600px;}
.y85{bottom:458.310540px;}
.y159{bottom:459.390600px;}
.yac{bottom:461.910450px;}
.y5c{bottom:462.000450px;}
.y18a{bottom:467.220450px;}
.yd6{bottom:468.210450px;}
.y1dc{bottom:471.270600px;}
.y129{bottom:475.230450px;}
.y158{bottom:476.580450px;}
.y84{bottom:477.300450px;}
.yb{bottom:479.340000px;}
.y1ac{bottom:482.790000px;}
.yab{bottom:482.880450px;}
.y5b{bottom:483.060450px;}
.y3c{bottom:484.230450px;}
.y189{bottom:491.160600px;}
.y128{bottom:492.510450px;}
.yee{bottom:494.760450px;}
.y1db{bottom:496.290000px;}
.yd5{bottom:498.180450px;}
.y157{bottom:500.520450px;}
.y1ab{bottom:501.060450px;}
.y83{bottom:501.600450px;}
.yaa{bottom:503.850450px;}
.y5a{bottom:504.030450px;}
.y3b{bottom:505.200450px;}
.y188{bottom:508.350450px;}
.y1da{bottom:514.560450px;}
.y127{bottom:516.450600px;}
.ya{bottom:517.140000px;}
.y156{bottom:517.800450px;}
.yd4{bottom:519.240450px;}
.yed{bottom:524.730450px;}
.ya9{bottom:524.910450px;}
.y1aa{bottom:526.080000px;}
.y3a{bottom:526.260450px;}
.y187{bottom:532.290450px;}
.y126{bottom:533.640450px;}
.y59{bottom:534.000450px;}
.y82{bottom:539.310450px;}
.y1d9{bottom:539.580000px;}
.yd3{bottom:540.210450px;}
.y155{bottom:541.740600px;}
.y1a9{bottom:544.350450px;}
.ya8{bottom:545.880450px;}
.y39{bottom:547.230450px;}
.y186{bottom:549.570450px;}
.yec{bottom:554.790450px;}
.y9{bottom:554.940000px;}
.y58{bottom:555.060450px;}
.y125{bottom:557.580450px;}
.y1d8{bottom:557.850450px;}
.y154{bottom:558.930450px;}
.yd2{bottom:561.180450px;}
.y81{bottom:563.430540px;}
.ya7{bottom:566.850450px;}
.y38{bottom:568.200450px;}
.y1a8{bottom:568.293750px;}
.y185{bottom:573.510600px;}
.y124{bottom:574.860450px;}
.y57{bottom:576.030450px;}
.yd1{bottom:582.240450px;}
.y80{bottom:582.420450px;}
.y153{bottom:582.870450px;}
.yeb{bottom:584.760450px;}
.y1d7{bottom:584.846280px;}
.y1a7{bottom:585.483600px;}
.y37{bottom:589.260450px;}
.y184{bottom:590.700450px;}
.y8{bottom:592.740000px;}
.y56{bottom:597.000450px;}
.ya6{bottom:597.001890px;}
.y152{bottom:600.150450px;}
.y1d6{bottom:602.040600px;}
.y1a6{bottom:602.763600px;}
.y7f{bottom:606.720450px;}
.y36{bottom:610.230450px;}
.y123{bottom:611.751330px;}
.yd0{bottom:612.399540px;}
.y183{bottom:614.640450px;}
.yea{bottom:614.730450px;}
.y55{bottom:618.060450px;}
.ya5{bottom:619.500450px;}
.y1a5{bottom:619.953450px;}
.y1d5{bottom:622.290450px;}
.y7{bottom:626.580000px;}
.y122{bottom:628.945650px;}
.y151{bottom:630.021780px;}
.y182{bottom:631.920450px;}
.ycf{bottom:634.800450px;}
.y1a4{bottom:637.143150px;}
.y35{bottom:640.200450px;}
.y7e{bottom:644.430450px;}
.ye9{bottom:644.790450px;}
.y121{bottom:646.230150px;}
.y1d4{bottom:646.233150px;}
.y150{bottom:647.306280px;}
.y54{bottom:648.030450px;}
.y6{bottom:651.780000px;}
.y1a3{bottom:654.333000px;}
.ya4{bottom:660.270450px;}
.y34{bottom:661.260450px;}
.y181{bottom:661.791780px;}
.y1d3{bottom:663.513150px;}
.y14f{bottom:664.500600px;}
.y7d{bottom:668.550540px;}
.y53{bottom:669.000450px;}
.y120{bottom:673.410450px;}
.ye8{bottom:674.760450px;}
.yce{bottom:675.030450px;}
.y1a2{bottom:676.113000px;}
.y5{bottom:676.980000px;}
.y180{bottom:679.076280px;}
.y1d2{bottom:680.703000px;}
.y33{bottom:682.230450px;}
.y14e{bottom:684.750450px;}
.y7c{bottom:687.540450px;}
.y1a1{bottom:693.302850px;}
.ya3{bottom:693.390450px;}
.ycd{bottom:696.090450px;}
.y17f{bottom:696.270600px;}
.y11f{bottom:697.352400px;}
.y1d1{bottom:697.892850px;}
.y52{bottom:699.249540px;}
.y4{bottom:702.180000px;}
.y32{bottom:703.200450px;}
.ye7{bottom:704.730450px;}
.y101{bottom:708.150450px;}
.y14d{bottom:708.692400px;}
.y1a0{bottom:710.488080px;}
.y7b{bottom:711.840450px;}
.y11e{bottom:714.542250px;}
.y1d0{bottom:715.082700px;}
.y17e{bottom:716.520450px;}
.ycc{bottom:717.060450px;}
.y51{bottom:721.650450px;}
.y31{bottom:724.260450px;}
.y14c{bottom:725.882250px;}
.ya2{bottom:726.060450px;}
.y3{bottom:727.380000px;}
.y19f{bottom:727.682400px;}
.y11d{bottom:731.732100px;}
.ye6{bottom:734.790450px;}
.y1cf{bottom:736.862550px;}
.ycb{bottom:738.030450px;}
.y100{bottom:738.840450px;}
.y17d{bottom:740.462400px;}
.y14b{bottom:743.072100px;}
.y19e{bottom:744.953460px;}
.y30{bottom:745.230450px;}
.y11c{bottom:748.921800px;}
.y1ce{bottom:754.052400px;}
.ya1{bottom:756.030450px;}
.y2{bottom:756.540000px;}
.y17c{bottom:757.652250px;}
.y7a{bottom:758.910450px;}
.yca{bottom:759.090450px;}
.yff{bottom:759.176400px;}
.y14a{bottom:760.261800px;}
.y50{bottom:761.880450px;}
.y19d{bottom:762.147780px;}
.ye5{bottom:764.760450px;}
.y2f{bottom:766.200450px;}
.y11b{bottom:770.611650px;}
.y1cd{bottom:771.233280px;}
.y17b{bottom:774.842100px;}
.yfe{bottom:776.460900px;}
.y19c{bottom:779.342100px;}
.y79{bottom:779.880450px;}
.yc9{bottom:780.060450px;}
.y149{bottom:782.041800px;}
.y4f{bottom:782.850450px;}
.ye4{bottom:785.730450px;}
.ya0{bottom:786.000450px;}
.y2e{bottom:787.260450px;}
.y11a{bottom:787.891650px;}
.y1cc{bottom:788.427600px;}
.y17a{bottom:792.031950px;}
.yfd{bottom:793.650600px;}
.y19b{bottom:796.518360px;}
.y148{bottom:799.231650px;}
.yc8{bottom:801.030450px;}
.y4e{bottom:803.910450px;}
.y119{bottom:805.081500px;}
.y1cb{bottom:805.712100px;}
.ye3{bottom:806.790450px;}
.y9f{bottom:807.060450px;}
.y2d{bottom:808.230450px;}
.y78{bottom:809.850450px;}
.yfc{bottom:810.930600px;}
.y19a{bottom:813.802860px;}
.y179{bottom:813.811800px;}
.y147{bottom:816.421500px;}
.yc7{bottom:822.090450px;}
.y118{bottom:822.271200px;}
.y1ca{bottom:822.892860px;}
.ye2{bottom:827.760450px;}
.y9e{bottom:828.030450px;}
.yfb{bottom:828.210600px;}
.y2c{bottom:829.200450px;}
.y77{bottom:830.910450px;}
.y199{bottom:830.997180px;}
.y178{bottom:831.001650px;}
.y146{bottom:833.611200px;}
.y4d{bottom:834.069540px;}
.y117{bottom:839.456550px;}
.y1c9{bottom:840.087180px;}
.yfa{bottom:845.400450px;}
.y177{bottom:848.191500px;}
.ye1{bottom:848.730450px;}
.y9d{bottom:849.000450px;}
.y145{bottom:850.886730px;}
.y76{bottom:851.880450px;}
.yc6{bottom:852.249540px;}
.y4c{bottom:856.470450px;}
.y116{bottom:856.741050px;}
.y1c8{bottom:857.281500px;}
.y2b{bottom:859.260450px;}
.y198{bottom:865.367760px;}
.y176{bottom:865.381350px;}
.y144{bottom:868.081050px;}
.y115{bottom:873.930900px;}
.y1c7{bottom:874.552410px;}
.yc5{bottom:874.650450px;}
.ye0{bottom:878.790450px;}
.y9c{bottom:879.151890px;}
.y75{bottom:881.850450px;}
.y197{bottom:882.652260px;}
.y175{bottom:882.656730px;}
.y143{bottom:885.270900px;}
.yf9{bottom:887.880450px;}
.y114{bottom:891.120750px;}
.y1c6{bottom:891.746730px;}
.y4b{bottom:896.700450px;}
.ydf{bottom:899.760450px;}
.y196{bottom:899.846580px;}
.y174{bottom:899.851050px;}
.y9b{bottom:901.650450px;}
.y142{bottom:902.460750px;}
.y74{bottom:902.910450px;}
.y1c5{bottom:908.941050px;}
.y113{bottom:912.810450px;}
.yc4{bottom:914.880450px;}
.y173{bottom:917.040900px;}
.yf8{bottom:919.920450px;}
.y2a{bottom:920.640450px;}
.y141{bottom:924.240600px;}
.y1c4{bottom:926.126400px;}
.y4a{bottom:926.851890px;}
.yde{bottom:929.730450px;}
.y73{bottom:933.069540px;}
.y172{bottom:934.230750px;}
.yc3{bottom:935.940450px;}
.y112{bottom:939.090450px;}
.y9a{bottom:941.880450px;}
.y1c3{bottom:943.410900px;}
.y49{bottom:949.350450px;}
.yf7{bottom:950.430450px;}
.y29{bottom:950.610450px;}
.ydd{bottom:950.790450px;}
.y72{bottom:955.470450px;}
.y171{bottom:956.010750px;}
.yc2{bottom:956.910450px;}
.y110{bottom:960.051960px;}
.y1c2{bottom:960.600750px;}
.y99{bottom:962.850450px;}
.y13f{bottom:971.391960px;}
.ydc{bottom:971.760450px;}
.y10f{bottom:977.246280px;}
.yc1{bottom:977.790450px;}
.y28{bottom:980.670450px;}
.yf6{bottom:981.030450px;}
.y170{bottom:982.200450px;}
.y1c1{bottom:982.290450px;}
.y98{bottom:983.910450px;}
.y13e{bottom:988.586280px;}
.y48{bottom:989.580450px;}
.y10e{bottom:994.440600px;}
.y71{bottom:995.700450px;}
.y27{bottom:1001.370450px;}
.ydb{bottom:1001.919540px;}
.y16e{bottom:1003.161960px;}
.y13d{bottom:1005.780600px;}
.yf5{bottom:1006.950450px;}
.yc0{bottom:1007.940450px;}
.y1c0{bottom:1008.570450px;}
.y10d{bottom:1008.660450px;}
.y47{bottom:1010.550450px;}
.y111{bottom:1011.630450px;}
.y195{bottom:1011.811650px;}
.y97{bottom:1014.069540px;}
.y70{bottom:1016.670450px;}
.yf4{bottom:1017.300450px;}
.y13c{bottom:1020.000450px;}
.y16d{bottom:1020.356280px;}
.y26{bottom:1022.070450px;}
.y140{bottom:1022.970450px;}
.yda{bottom:1024.320450px;}
.ybf{bottom:1028.820450px;}
.y194{bottom:1029.001500px;}
.y10a{bottom:1029.631650px;}
.y1bf{bottom:1033.500000px;}
.y96{bottom:1036.470450px;}
.y16c{bottom:1037.550600px;}
.y6f{bottom:1037.730450px;}
.y107{bottom:1038.180600px;}
.y10c{bottom:1038.182100px;}
.y46{bottom:1040.701890px;}
.y13b{bottom:1040.969850px;}
.y25{bottom:1042.770450px;}
.y193{bottom:1046.191350px;}
.y109{bottom:1046.816880px;}
.y138{bottom:1049.520450px;}
.yf2{bottom:1050.510450px;}
.y16b{bottom:1051.770450px;}
.y16f{bottom:1054.740300px;}
.y106{bottom:1055.370450px;}
.y10b{bottom:1055.371950px;}
.y13a{bottom:1058.155200px;}
.ybe{bottom:1058.880450px;}
.yf1{bottom:1060.860450px;}
.y45{bottom:1063.200450px;}
.y24{bottom:1063.470450px;}
.y108{bottom:1064.011200px;}
.yd9{bottom:1065.180450px;}
.y137{bottom:1066.800450px;}
.y6e{bottom:1067.700450px;}
.yf3{bottom:1071.210450px;}
.y168{bottom:1072.741650px;}
.y139{bottom:1075.439700px;}
.y95{bottom:1076.700450px;}
.ybd{bottom:1079.940450px;}
.y1be{bottom:1081.286130px;}
.y165{bottom:1081.290600px;}
.y16a{bottom:1081.292100px;}
.y6d{bottom:1088.670450px;}
.y167{bottom:1089.926880px;}
.y105{bottom:1090.380450px;}
.y23{bottom:1093.638630px;}
.y94{bottom:1097.670450px;}
.yd8{bottom:1098.300450px;}
.y164{bottom:1098.480450px;}
.y169{bottom:1098.481950px;}
.ybc{bottom:1100.820450px;}
.y136{bottom:1101.720450px;}
.y44{bottom:1103.970450px;}
.y166{bottom:1107.121200px;}
.yf0{bottom:1107.840450px;}
.y22{bottom:1116.039540px;}
.y104{bottom:1117.200450px;}
.y6c{bottom:1118.730450px;}
.y163{bottom:1133.490450px;}
.y43{bottom:1137.090450px;}
.yef{bottom:1137.180450px;}
.y21{bottom:1138.440450px;}
.y6b{bottom:1139.700450px;}
.ybb{bottom:1139.880450px;}
.yd7{bottom:1139.970450px;}
.y135{bottom:1141.409850px;}
.y102{bottom:1193.700450px;}
.y1bc{bottom:1194.600450px;}
.y20{bottom:1195.140450px;}
.y1{bottom:1247.400000px;}
.h5{height:50.832000px;}
.h7{height:59.722560px;}
.h8{height:62.703281px;}
.h12{height:64.148040px;}
.hc{height:68.710781px;}
.h3{height:70.628906px;}
.h11{height:70.664062px;}
.ha{height:75.093750px;}
.h10{height:75.109950px;}
.h16{height:76.027440px;}
.h14{height:76.028040px;}
.h4{height:76.248000px;}
.hf{height:76.824000px;}
.h9{height:81.476719px;}
.hb{height:87.484219px;}
.h6{height:115.992000px;}
.he{height:118.224000px;}
.h17{height:132.906840px;}
.h13{height:132.907440px;}
.h15{height:133.268040px;}
.hd{height:144.670421px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x8{left:106.290000px;}
.x1a{left:111.240000px;}
.x32{left:114.120000px;}
.x26{left:115.290000px;}
.x2e{left:117.540000px;}
.x5{left:119.781000px;}
.x3f{left:123.390000px;}
.x1b{left:138.240000px;}
.x27{left:145.710750px;}
.x10{left:148.860000px;}
.x2f{left:151.919700px;}
.x40{left:153.810750px;}
.x7{left:159.390000px;}
.x6{left:167.941980px;}
.x11{left:175.590000px;}
.x19{left:177.836130px;}
.x4{left:184.230000px;}
.x4c{left:186.923220px;}
.x17{left:246.420300px;}
.x28{left:252.719850px;}
.x41{left:261.000150px;}
.xc{left:263.338470px;}
.x20{left:288.805590px;}
.x18{left:309.429270px;}
.xf{left:326.693790px;}
.x1f{left:331.559700px;}
.x1d{left:346.223790px;}
.x29{left:351.809550px;}
.x23{left:358.290000px;}
.x42{left:360.180150px;}
.x14{left:374.405580px;}
.xe{left:375.479730px;}
.xd{left:378.721710px;}
.xa{left:384.659250px;}
.x15{left:386.279820px;}
.x1c{left:388.447650px;}
.x12{left:412.293780px;}
.x1e{left:416.700000px;}
.x16{left:419.580000px;}
.x9{left:422.550000px;}
.x3{left:423.720000px;}
.xb{left:427.410000px;}
.x22{left:432.990000px;}
.x25{left:438.210000px;}
.x43{left:441.811050px;}
.x30{left:528.660150px;}
.x21{left:531.090000px;}
.x3a{left:533.250300px;}
.x2a{left:539.819850px;}
.x33{left:540.900450px;}
.x3e{left:545.130000px;}
.x38{left:546.748650px;}
.x3d{left:548.190000px;}
.x37{left:549.808800px;}
.x2b{left:553.497150px;}
.x34{left:554.577750px;}
.x47{left:556.019550px;}
.x44{left:560.788500px;}
.x48{left:589.229850px;}
.x31{left:656.189700px;}
.x49{left:678.870150px;}
.x3c{left:682.651500px;}
.x2d{left:684.271650px;}
.x36{left:685.891950px;}
.x46{left:689.852700px;}
.x3b{left:696.600750px;}
.x2c{left:698.311200px;}
.x35{left:699.841350px;}
.x45{left:703.892250px;}
.x39{left:705.328650px;}
.x4a{left:709.379550px;}
.x4b{left:721.349550px;}
.x24{left:724.320000px;}
.x13{left:733.588260px;}
@media print{
.v2{vertical-align:-78.720000pt;}
.v4{vertical-align:-56.960000pt;}
.v8{vertical-align:-24.641067pt;}
.va{vertical-align:-10.880533pt;}
.v9{vertical-align:-3.842133pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.560000pt;}
.v1{vertical-align:26.880000pt;}
.v5{vertical-align:36.800000pt;}
.v6{vertical-align:61.119467pt;}
.v3{vertical-align:67.519680pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.128256pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls44{letter-spacing:-0.106176pt;}
.ls61{letter-spacing:-0.101536pt;}
.ls5f{letter-spacing:-0.096192pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls62{letter-spacing:-0.085504pt;}
.ls20{letter-spacing:-0.083200pt;}
.ls60{letter-spacing:-0.080160pt;}
.ls59{letter-spacing:-0.074816pt;}
.ls1c{letter-spacing:-0.070400pt;}
.ls57{letter-spacing:-0.069472pt;}
.ls54{letter-spacing:-0.064128pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.062496pt;}
.ls55{letter-spacing:-0.058784pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls51{letter-spacing:-0.053440pt;}
.ls26{letter-spacing:-0.051200pt;}
.ls19{letter-spacing:-0.048608pt;}
.ls50{letter-spacing:-0.048096pt;}
.ls1d{letter-spacing:-0.044800pt;}
.ls4f{letter-spacing:-0.042752pt;}
.ls16{letter-spacing:-0.038400pt;}
.ls53{letter-spacing:-0.037408pt;}
.ls3b{letter-spacing:-0.034720pt;}
.ls56{letter-spacing:-0.032064pt;}
.ls14{letter-spacing:-0.032000pt;}
.ls45{letter-spacing:-0.030336pt;}
.ls3d{letter-spacing:-0.027776pt;}
.ls5b{letter-spacing:-0.026720pt;}
.ls15{letter-spacing:-0.025600pt;}
.ls43{letter-spacing:-0.022368pt;}
.ls58{letter-spacing:-0.021376pt;}
.ls38{letter-spacing:-0.020832pt;}
.ls17{letter-spacing:-0.019200pt;}
.ls46{letter-spacing:-0.016032pt;}
.ls35{letter-spacing:-0.014912pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls52{letter-spacing:-0.010688pt;}
.ls36{letter-spacing:-0.007456pt;}
.ls27{letter-spacing:-0.006944pt;}
.ls1f{letter-spacing:-0.006400pt;}
.ls47{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.005344pt;}
.ls1b{letter-spacing:0.006400pt;}
.ls5d{letter-spacing:0.010688pt;}
.lsc{letter-spacing:0.012800pt;}
.ls42{letter-spacing:0.016032pt;}
.ls29{letter-spacing:0.019200pt;}
.ls41{letter-spacing:0.021376pt;}
.ls37{letter-spacing:0.025600pt;}
.ls48{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.027776pt;}
.ls32{letter-spacing:0.032000pt;}
.ls4a{letter-spacing:0.032064pt;}
.lsa{letter-spacing:0.034720pt;}
.ls2e{letter-spacing:0.035136pt;}
.ls33{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.040992pt;}
.ls21{letter-spacing:0.041664pt;}
.ls4d{letter-spacing:0.042752pt;}
.ls24{letter-spacing:0.044736pt;}
.ls2b{letter-spacing:0.046848pt;}
.ls4e{letter-spacing:0.048096pt;}
.ls3e{letter-spacing:0.051200pt;}
.ls3c{letter-spacing:0.052192pt;}
.ls2c{letter-spacing:0.052704pt;}
.ls22{letter-spacing:0.055552pt;}
.ls2f{letter-spacing:0.058560pt;}
.ls23{letter-spacing:0.059648pt;}
.lsb{letter-spacing:0.062496pt;}
.ls4{letter-spacing:0.064000pt;}
.ls5c{letter-spacing:0.064128pt;}
.ls30{letter-spacing:0.064416pt;}
.ls34{letter-spacing:0.067104pt;}
.ls5e{letter-spacing:0.069472pt;}
.ls2a{letter-spacing:0.076384pt;}
.ls11{letter-spacing:0.076800pt;}
.ls49{letter-spacing:0.085504pt;}
.ls1{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.101536pt;}
.ls25{letter-spacing:0.104160pt;}
.ls3f{letter-spacing:0.108800pt;}
.ls10{letter-spacing:0.121600pt;}
.lsf{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.134400pt;}
.ls39{letter-spacing:0.140800pt;}
.ls6{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls3a{letter-spacing:45.248000pt;}
.ls31{letter-spacing:48.768000pt;}
.ls4b{letter-spacing:53.012480pt;}
.ls5a{letter-spacing:53.279680pt;}
.ls4c{letter-spacing:56.165440pt;}
.lsd{letter-spacing:844.928000pt;}
.wse0{word-spacing:-53.440000pt;}
.ws3{word-spacing:-23.904000pt;}
.ws2{word-spacing:-23.712000pt;}
.wsa5{word-spacing:-17.785600pt;}
.wsc{word-spacing:-17.753600pt;}
.wsd{word-spacing:-17.728000pt;}
.wse{word-spacing:-17.708800pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11a{word-spacing:-12.168288pt;}
.ws11b{word-spacing:-12.098816pt;}
.wsd0{word-spacing:-11.497344pt;}
.wscf{word-spacing:-11.421504pt;}
.wsb{word-spacing:-1.120000pt;}
.ws34{word-spacing:-0.465248pt;}
.ws10{word-spacing:-0.409696pt;}
.wsa{word-spacing:-0.384000pt;}
.wsbf{word-spacing:-0.381920pt;}
.wse4{word-spacing:-0.374080pt;}
.wse9{word-spacing:-0.342016pt;}
.ws12{word-spacing:-0.333312pt;}
.ws13{word-spacing:-0.312480pt;}
.ws11{word-spacing:-0.277760pt;}
.ws9b{word-spacing:-0.229152pt;}
.ws2a{word-spacing:-0.194432pt;}
.ws8{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.180544pt;}
.wsde{word-spacing:-0.149632pt;}
.wsdf{word-spacing:-0.144288pt;}
.wsda{word-spacing:-0.133600pt;}
.ws2b{word-spacing:-0.131936pt;}
.wsdc{word-spacing:-0.122912pt;}
.ws8a{word-spacing:-0.118048pt;}
.wsdb{word-spacing:-0.112224pt;}
.ws9{word-spacing:-0.096000pt;}
.wsaa{word-spacing:-0.090272pt;}
.ws5{word-spacing:-0.064000pt;}
.wsb7{word-spacing:-0.055552pt;}
.wsfc{word-spacing:-0.042752pt;}
.wsfa{word-spacing:-0.032064pt;}
.ws7c{word-spacing:-0.027776pt;}
.ws11c{word-spacing:-0.021376pt;}
.wse1{word-spacing:-0.010688pt;}
.ws6f{word-spacing:-0.005856pt;}
.wsf3{word-spacing:-0.005344pt;}
.ws4{word-spacing:0.000000pt;}
.wseb{word-spacing:0.005344pt;}
.ws6a{word-spacing:0.005856pt;}
.wse6{word-spacing:0.010688pt;}
.ws6d{word-spacing:0.011712pt;}
.ws88{word-spacing:0.014912pt;}
.wse3{word-spacing:0.016032pt;}
.ws70{word-spacing:0.017568pt;}
.wse5{word-spacing:0.021376pt;}
.ws29{word-spacing:0.022368pt;}
.wse2{word-spacing:0.026720pt;}
.wsea{word-spacing:0.032064pt;}
.wse7{word-spacing:0.037408pt;}
.wsce{word-spacing:0.038400pt;}
.wsec{word-spacing:0.042752pt;}
.wsf5{word-spacing:0.048096pt;}
.wsa4{word-spacing:0.051200pt;}
.wsa9{word-spacing:0.064000pt;}
.ws114{word-spacing:0.069472pt;}
.ws116{word-spacing:0.074816pt;}
.ws9f{word-spacing:0.108800pt;}
.wsa8{word-spacing:0.115200pt;}
.wsd7{word-spacing:0.121600pt;}
.ws6{word-spacing:0.128000pt;}
.ws55{word-spacing:0.134400pt;}
.ws2f{word-spacing:0.140800pt;}
.ws27{word-spacing:0.147200pt;}
.ws22{word-spacing:0.153600pt;}
.ws1a{word-spacing:0.160000pt;}
.ws50{word-spacing:0.166400pt;}
.ws1c{word-spacing:0.172800pt;}
.ws26{word-spacing:0.179200pt;}
.ws4d{word-spacing:0.185600pt;}
.ws7{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.198400pt;}
.ws25{word-spacing:0.211200pt;}
.ws9a{word-spacing:0.230400pt;}
.ws89{word-spacing:0.253504pt;}
.ws47{word-spacing:0.268800pt;}
.wsaf{word-spacing:0.300800pt;}
.ws115{word-spacing:0.374080pt;}
.ws5b{word-spacing:0.480000pt;}
.ws69{word-spacing:0.492800pt;}
.ws7d{word-spacing:0.780800pt;}
.ws53{word-spacing:0.800000pt;}
.ws7e{word-spacing:0.883200pt;}
.ws54{word-spacing:0.902400pt;}
.ws17{word-spacing:1.420800pt;}
.ws16{word-spacing:1.536000pt;}
.ws3b{word-spacing:1.747200pt;}
.wsb6{word-spacing:1.772800pt;}
.ws35{word-spacing:1.779200pt;}
.ws14{word-spacing:1.804800pt;}
.ws36{word-spacing:1.849600pt;}
.ws15{word-spacing:1.868800pt;}
.ws2c{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.182400pt;}
.ws2d{word-spacing:2.316800pt;}
.wscb{word-spacing:2.393600pt;}
.wscc{word-spacing:2.432000pt;}
.ws7b{word-spacing:2.707200pt;}
.ws49{word-spacing:2.726400pt;}
.ws48{word-spacing:2.790400pt;}
.ws109{word-spacing:2.896448pt;}
.ws108{word-spacing:2.907136pt;}
.ws7a{word-spacing:2.912000pt;}
.ws96{word-spacing:2.995200pt;}
.ws94{word-spacing:3.014400pt;}
.wsc9{word-spacing:3.027200pt;}
.wsca{word-spacing:3.040000pt;}
.wsbc{word-spacing:3.052800pt;}
.ws95{word-spacing:3.187200pt;}
.ws42{word-spacing:3.334400pt;}
.ws57{word-spacing:3.366400pt;}
.ws56{word-spacing:3.372800pt;}
.wsa0{word-spacing:3.392000pt;}
.ws41{word-spacing:3.456000pt;}
.ws118{word-spacing:3.532384pt;}
.wsff{word-spacing:3.543072pt;}
.ws117{word-spacing:3.548416pt;}
.ws18{word-spacing:3.564800pt;}
.ws19{word-spacing:3.635200pt;}
.ws43{word-spacing:3.692800pt;}
.ws112{word-spacing:3.847680pt;}
.ws111{word-spacing:3.858368pt;}
.ws110{word-spacing:3.869056pt;}
.ws30{word-spacing:3.980800pt;}
.ws31{word-spacing:3.987200pt;}
.wsad{word-spacing:4.294400pt;}
.wsae{word-spacing:4.313600pt;}
.wsf9{word-spacing:4.488960pt;}
.wsf8{word-spacing:4.494304pt;}
.wsf7{word-spacing:4.499648pt;}
.ws11e{word-spacing:4.820288pt;}
.ws11d{word-spacing:4.836320pt;}
.wsbd{word-spacing:4.934400pt;}
.wsbe{word-spacing:5.056000pt;}
.ws81{word-spacing:5.280000pt;}
.ws92{word-spacing:5.292800pt;}
.ws93{word-spacing:5.305600pt;}
.ws80{word-spacing:5.446400pt;}
.ws8b{word-spacing:5.568000pt;}
.wscd{word-spacing:5.580800pt;}
.ws3a{word-spacing:5.587200pt;}
.ws4c{word-spacing:5.593600pt;}
.ws8c{word-spacing:5.651200pt;}
.ws4a{word-spacing:5.676800pt;}
.ws39{word-spacing:5.715200pt;}
.ws4b{word-spacing:5.740800pt;}
.ws5e{word-spacing:5.881600pt;}
.wsb9{word-spacing:5.900800pt;}
.ws72{word-spacing:5.926400pt;}
.wsb8{word-spacing:5.971200pt;}
.ws73{word-spacing:5.977600pt;}
.ws5d{word-spacing:5.990400pt;}
.wsa3{word-spacing:6.841600pt;}
.wsa1{word-spacing:6.944000pt;}
.wsa2{word-spacing:6.995200pt;}
.ws10a{word-spacing:8.657280pt;}
.ws10b{word-spacing:8.673312pt;}
.ws82{word-spacing:8.800000pt;}
.ws84{word-spacing:8.806400pt;}
.ws83{word-spacing:8.812800pt;}
.ws76{word-spacing:8.819200pt;}
.ws77{word-spacing:8.889600pt;}
.ws119{word-spacing:8.988608pt;}
.ws113{word-spacing:9.309248pt;}
.ws68{word-spacing:9.740800pt;}
.ws67{word-spacing:9.843200pt;}
.ws101{word-spacing:9.934496pt;}
.ws100{word-spacing:9.939840pt;}
.wsef{word-spacing:10.255136pt;}
.wsfb{word-spacing:10.265824pt;}
.wsf0{word-spacing:10.276512pt;}
.ws28{word-spacing:10.700800pt;}
.ws24{word-spacing:10.732800pt;}
.ws1e{word-spacing:10.739200pt;}
.ws20{word-spacing:10.745600pt;}
.ws1f{word-spacing:10.758400pt;}
.ws21{word-spacing:10.764800pt;}
.ws1d{word-spacing:10.771200pt;}
.ws52{word-spacing:11.014400pt;}
.ws51{word-spacing:11.027200pt;}
.ws4f{word-spacing:11.040000pt;}
.ws4e{word-spacing:11.059200pt;}
.wsb0{word-spacing:11.072000pt;}
.ws8e{word-spacing:11.366400pt;}
.ws8d{word-spacing:11.443200pt;}
.ws8f{word-spacing:11.488000pt;}
.ws46{word-spacing:12.326400pt;}
.ws44{word-spacing:12.332800pt;}
.ws45{word-spacing:12.640000pt;}
.wsc8{word-spacing:12.947200pt;}
.wsc7{word-spacing:13.056000pt;}
.ws5f{word-spacing:13.280000pt;}
.ws60{word-spacing:13.395200pt;}
.ws32{word-spacing:13.907200pt;}
.ws66{word-spacing:13.939200pt;}
.ws33{word-spacing:13.990400pt;}
.wsee{word-spacing:14.412768pt;}
.wsed{word-spacing:14.439488pt;}
.ws5c{word-spacing:14.566400pt;}
.ws75{word-spacing:14.854400pt;}
.ws74{word-spacing:14.937600pt;}
.ws79{word-spacing:15.200000pt;}
.ws78{word-spacing:15.212800pt;}
.ws40{word-spacing:15.833600pt;}
.ws3f{word-spacing:15.859200pt;}
.ws23{word-spacing:16.064000pt;}
.ws91{word-spacing:16.160000pt;}
.ws90{word-spacing:16.172800pt;}
.wsdd{word-spacing:16.812224pt;}
.ws97{word-spacing:18.707200pt;}
.ws98{word-spacing:18.732800pt;}
.ws99{word-spacing:18.873600pt;}
.ws64{word-spacing:20.006400pt;}
.ws63{word-spacing:20.070400pt;}
.ws65{word-spacing:20.288000pt;}
.ws86{word-spacing:21.260800pt;}
.ws87{word-spacing:21.267200pt;}
.ws85{word-spacing:21.395200pt;}
.wsb1{word-spacing:23.513600pt;}
.wsb2{word-spacing:23.526400pt;}
.ws62{word-spacing:23.532800pt;}
.ws7f{word-spacing:23.852800pt;}
.ws9c{word-spacing:25.408000pt;}
.ws9d{word-spacing:25.465600pt;}
.wsb3{word-spacing:26.707200pt;}
.wsb5{word-spacing:26.713600pt;}
.wsb4{word-spacing:26.745600pt;}
.ws58{word-spacing:27.020800pt;}
.ws59{word-spacing:27.148800pt;}
.ws5a{word-spacing:27.174400pt;}
.ws3d{word-spacing:38.892800pt;}
.ws3c{word-spacing:38.982400pt;}
.ws3e{word-spacing:39.033600pt;}
.wsab{word-spacing:39.571200pt;}
.wsac{word-spacing:39.724800pt;}
.wsa6{word-spacing:43.040000pt;}
.wsa7{word-spacing:43.097600pt;}
.wsc6{word-spacing:43.347200pt;}
.wsc5{word-spacing:43.603200pt;}
.wsba{word-spacing:45.260800pt;}
.wsbb{word-spacing:45.267200pt;}
.wsc4{word-spacing:47.840000pt;}
.wsc3{word-spacing:48.147200pt;}
.wsd1{word-spacing:50.387200pt;}
.wsc0{word-spacing:55.520000pt;}
.ws61{word-spacing:55.526400pt;}
.ws37{word-spacing:58.067200pt;}
.ws38{word-spacing:58.073600pt;}
.wsc2{word-spacing:77.868800pt;}
.wsc1{word-spacing:78.105600pt;}
.wsf6{word-spacing:85.685696pt;}
.wsf2{word-spacing:85.691040pt;}
.wse8{word-spacing:85.712416pt;}
.wsf4{word-spacing:85.728448pt;}
.wsf1{word-spacing:85.739136pt;}
.ws9e{word-spacing:99.027200pt;}
.ws105{word-spacing:125.685536pt;}
.ws103{word-spacing:125.690880pt;}
.wsfd{word-spacing:125.712256pt;}
.ws104{word-spacing:125.728288pt;}
.ws102{word-spacing:125.738976pt;}
.wsfe{word-spacing:125.744320pt;}
.ws10f{word-spacing:126.006176pt;}
.ws10d{word-spacing:126.011520pt;}
.ws106{word-spacing:126.032896pt;}
.ws10e{word-spacing:126.048928pt;}
.ws10c{word-spacing:126.059616pt;}
.ws107{word-spacing:126.064960pt;}
.wsd4{word-spacing:129.036800pt;}
.wsd9{word-spacing:158.278400pt;}
.wsd3{word-spacing:177.798400pt;}
.wsd8{word-spacing:182.278400pt;}
.wsd5{word-spacing:250.553600pt;}
.wsd6{word-spacing:295.379200pt;}
.wsd2{word-spacing:428.633600pt;}
.ws6e{word-spacing:682.879872pt;}
.ws71{word-spacing:1139.196960pt;}
.ws6b{word-spacing:1311.995808pt;}
.ws6c{word-spacing:1684.812192pt;}
._1c{margin-left:-1661.755456pt;}
._1a{margin-left:-1311.673728pt;}
._24{margin-left:-1138.810464pt;}
._20{margin-left:-682.212288pt;}
._18{margin-left:-31.680000pt;}
._31{margin-left:-29.706645pt;}
._7{margin-left:-10.560000pt;}
._12{margin-left:-9.280000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:3.123200pt;}
._9{width:4.377600pt;}
._10{width:5.984000pt;}
._6{width:7.910400pt;}
._b{width:9.459200pt;}
._3{width:10.560000pt;}
._c{width:11.520000pt;}
._e{width:14.156800pt;}
._30{width:19.200768pt;}
._17{width:21.760000pt;}
._27{width:22.720000pt;}
._2d{width:30.310400pt;}
._11{width:34.560000pt;}
._19{width:35.456000pt;}
._13{width:36.480000pt;}
._16{width:37.760000pt;}
._14{width:43.136000pt;}
._15{width:44.480000pt;}
._8{width:45.440000pt;}
._26{width:46.720000pt;}
._d{width:52.480000pt;}
._4{width:56.000000pt;}
._28{width:58.368000pt;}
._5{width:63.360000pt;}
._25{width:65.920000pt;}
._2{width:70.400000pt;}
._f{width:73.920000pt;}
._1f{width:78.399093pt;}
._35{width:82.041600pt;}
._3c{width:85.792853pt;}
._32{width:90.425600pt;}
._41{width:101.441056pt;}
._1d{width:105.593013pt;}
._39{width:106.880000pt;}
._37{width:111.360000pt;}
._22{width:121.914603pt;}
._2f{width:124.684800pt;}
._3f{width:125.792320pt;}
._2c{width:129.164800pt;}
._21{width:134.459317pt;}
._1b{width:144.631349pt;}
._3e{width:145.634987pt;}
._34{width:146.745600pt;}
._42{width:147.873920pt;}
._44{width:152.993387pt;}
._3b{width:167.384533pt;}
._29{width:170.880000pt;}
._46{width:177.917557pt;}
._43{width:180.161824pt;}
._2e{width:182.297600pt;}
._3d{width:183.678624pt;}
._40{width:185.923424pt;}
._3a{width:238.128597pt;}
._33{width:375.590400pt;}
._45{width:382.759051pt;}
._2b{width:541.638400pt;}
._36{width:550.400000pt;}
._38{width:564.800000pt;}
._2a{width:632.549760pt;}
._1e{width:1136.947872pt;}
._23{width:1466.556917pt;}
.fs2{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.y1bd{bottom:61.947733pt;}
.y103{bottom:62.746400pt;}
.y1d{bottom:76.960000pt;}
.y93{bottom:81.227067pt;}
.y1c{bottom:95.040000pt;}
.y6a{bottom:101.387067pt;}
.yba{bottom:106.667067pt;}
.y92{bottom:107.947067pt;}
.y1b{bottom:113.120000pt;}
.y69{bottom:120.027067pt;}
.yb9{bottom:125.387067pt;}
.y1a{bottom:131.200000pt;}
.y91{bottom:134.587067pt;}
.yb8{bottom:144.027067pt;}
.y68{bottom:146.667067pt;}
.y19{bottom:149.440000pt;}
.y90{bottom:153.227067pt;}
.y1bb{bottom:156.106667pt;}
.yb7{bottom:162.587067pt;}
.y67{bottom:165.387067pt;}
.y18{bottom:167.520000pt;}
.y8f{bottom:171.947067pt;}
.y1ba{bottom:172.347067pt;}
.y66{bottom:184.027067pt;}
.y17{bottom:185.600000pt;}
.yb6{bottom:189.387067pt;}
.y1b9{bottom:190.983493pt;}
.y8e{bottom:198.987067pt;}
.y16{bottom:203.680000pt;}
.y1e8{bottom:204.587067pt;}
.y1b8{bottom:206.267333pt;}
.yb5{bottom:208.027067pt;}
.y65{bottom:210.667067pt;}
.y8d{bottom:220.427147pt;}
.y1b7{bottom:221.547200pt;}
.y15{bottom:221.920000pt;}
.y1e7{bottom:225.226533pt;}
.yb4{bottom:226.667067pt;}
.y134{bottom:227.467067pt;}
.y64{bottom:229.387067pt;}
.y1b6{bottom:234.187067pt;}
.y162{bottom:235.627067pt;}
.y8c{bottom:237.307067pt;}
.y14{bottom:240.000000pt;}
.y1e6{bottom:241.547067pt;}
.y133{bottom:242.827067pt;}
.yb3{bottom:245.307067pt;}
.y63{bottom:256.027067pt;}
.y13{bottom:258.080000pt;}
.y1b5{bottom:258.263360pt;}
.y8b{bottom:258.907067pt;}
.y1e5{bottom:260.103360pt;}
.y132{bottom:264.103627pt;}
.y161{bottom:265.227067pt;}
.yb2{bottom:272.027067pt;}
.y1b4{bottom:273.547200pt;}
.y62{bottom:274.667067pt;}
.y1e4{bottom:275.387200pt;}
.y12{bottom:276.320000pt;}
.y192{bottom:278.187067pt;}
.y131{bottom:279.387467pt;}
.y160{bottom:280.587067pt;}
.yb1{bottom:290.667067pt;}
.y1e3{bottom:290.747200pt;}
.y1b3{bottom:291.547067pt;}
.y8a{bottom:292.427067pt;}
.y191{bottom:293.547067pt;}
.y11{bottom:294.400000pt;}
.y130{bottom:297.307200pt;}
.y61{bottom:301.387067pt;}
.y15f{bottom:301.863493pt;}
.y42{bottom:302.427067pt;}
.y1e2{bottom:303.387067pt;}
.yb0{bottom:309.387067pt;}
.y10{bottom:312.480000pt;}
.y12f{bottom:312.667200pt;}
.y1b2{bottom:313.786667pt;}
.y89{bottom:313.867147pt;}
.y190{bottom:314.823493pt;}
.y15e{bottom:317.147333pt;}
.y60{bottom:320.027067pt;}
.y41{bottom:321.067067pt;}
.y1e1{bottom:325.627867pt;}
.y1b1{bottom:330.027067pt;}
.y18f{bottom:330.107333pt;}
.yf{bottom:330.560000pt;}
.y88{bottom:330.747067pt;}
.y12e{bottom:333.943227pt;}
.y15d{bottom:335.147200pt;}
.yaf{bottom:336.195280pt;}
.y5f{bottom:338.667067pt;}
.y1e0{bottom:341.947067pt;}
.y40{bottom:347.787067pt;}
.ye{bottom:348.000000pt;}
.y18e{bottom:348.027067pt;}
.y12d{bottom:349.227067pt;}
.y15c{bottom:350.427067pt;}
.y1b0{bottom:352.266667pt;}
.y87{bottom:352.347067pt;}
.yae{bottom:356.107200pt;}
.y18d{bottom:363.387067pt;}
.y1df{bottom:364.186667pt;}
.y12c{bottom:364.587067pt;}
.y5e{bottom:365.387067pt;}
.y3f{bottom:366.427067pt;}
.yd{bottom:366.720000pt;}
.y1af{bottom:368.507067pt;}
.y15b{bottom:371.707200pt;}
.y1de{bottom:380.427067pt;}
.y5d{bottom:384.027067pt;}
.y18c{bottom:384.663227pt;}
.y3e{bottom:385.067067pt;}
.y12b{bottom:385.867333pt;}
.y86{bottom:385.947067pt;}
.y15a{bottom:387.067200pt;}
.y1ae{bottom:390.666667pt;}
.yad{bottom:391.867067pt;}
.yc{bottom:392.480000pt;}
.y18b{bottom:399.947067pt;}
.y12a{bottom:401.147200pt;}
.y1dd{bottom:402.666800pt;}
.y3d{bottom:403.787067pt;}
.y1ad{bottom:406.987200pt;}
.y85{bottom:407.387147pt;}
.y159{bottom:408.347200pt;}
.yac{bottom:410.587067pt;}
.y5c{bottom:410.667067pt;}
.y18a{bottom:415.307067pt;}
.yd6{bottom:416.187067pt;}
.y1dc{bottom:418.907200pt;}
.y129{bottom:422.427067pt;}
.y158{bottom:423.627067pt;}
.y84{bottom:424.267067pt;}
.yb{bottom:426.080000pt;}
.y1ac{bottom:429.146667pt;}
.yab{bottom:429.227067pt;}
.y5b{bottom:429.387067pt;}
.y3c{bottom:430.427067pt;}
.y189{bottom:436.587200pt;}
.y128{bottom:437.787067pt;}
.yee{bottom:439.787067pt;}
.y1db{bottom:441.146667pt;}
.yd5{bottom:442.827067pt;}
.y157{bottom:444.907067pt;}
.y1ab{bottom:445.387067pt;}
.y83{bottom:445.867067pt;}
.yaa{bottom:447.867067pt;}
.y5a{bottom:448.027067pt;}
.y3b{bottom:449.067067pt;}
.y188{bottom:451.867067pt;}
.y1da{bottom:457.387067pt;}
.y127{bottom:459.067200pt;}
.ya{bottom:459.680000pt;}
.y156{bottom:460.267067pt;}
.yd4{bottom:461.547067pt;}
.yed{bottom:466.427067pt;}
.ya9{bottom:466.587067pt;}
.y1aa{bottom:467.626667pt;}
.y3a{bottom:467.787067pt;}
.y187{bottom:473.147067pt;}
.y126{bottom:474.347067pt;}
.y59{bottom:474.667067pt;}
.y82{bottom:479.387067pt;}
.y1d9{bottom:479.626667pt;}
.yd3{bottom:480.187067pt;}
.y155{bottom:481.547200pt;}
.y1a9{bottom:483.867067pt;}
.ya8{bottom:485.227067pt;}
.y39{bottom:486.427067pt;}
.y186{bottom:488.507067pt;}
.yec{bottom:493.147067pt;}
.y9{bottom:493.280000pt;}
.y58{bottom:493.387067pt;}
.y125{bottom:495.627067pt;}
.y1d8{bottom:495.867067pt;}
.y154{bottom:496.827067pt;}
.yd2{bottom:498.827067pt;}
.y81{bottom:500.827147pt;}
.ya7{bottom:503.867067pt;}
.y38{bottom:505.067067pt;}
.y1a8{bottom:505.150000pt;}
.y185{bottom:509.787200pt;}
.y124{bottom:510.987067pt;}
.y57{bottom:512.027067pt;}
.yd1{bottom:517.547067pt;}
.y80{bottom:517.707067pt;}
.y153{bottom:518.107067pt;}
.yeb{bottom:519.787067pt;}
.y1d7{bottom:519.863360pt;}
.y1a7{bottom:520.429867pt;}
.y37{bottom:523.787067pt;}
.y184{bottom:525.067067pt;}
.y8{bottom:526.880000pt;}
.y56{bottom:530.667067pt;}
.ya6{bottom:530.668347pt;}
.y152{bottom:533.467067pt;}
.y1d6{bottom:535.147200pt;}
.y1a6{bottom:535.789867pt;}
.y7f{bottom:539.307067pt;}
.y36{bottom:542.427067pt;}
.y123{bottom:543.778960pt;}
.yd0{bottom:544.355147pt;}
.y183{bottom:546.347067pt;}
.yea{bottom:546.427067pt;}
.y55{bottom:549.387067pt;}
.ya5{bottom:550.667067pt;}
.y1a5{bottom:551.069733pt;}
.y1d5{bottom:553.147067pt;}
.y7{bottom:556.960000pt;}
.y122{bottom:559.062800pt;}
.y151{bottom:560.019360pt;}
.y182{bottom:561.707067pt;}
.ycf{bottom:564.267067pt;}
.y1a4{bottom:566.349467pt;}
.y35{bottom:569.067067pt;}
.y7e{bottom:572.827067pt;}
.ye9{bottom:573.147067pt;}
.y121{bottom:574.426800pt;}
.y1d4{bottom:574.429467pt;}
.y150{bottom:575.383360pt;}
.y54{bottom:576.027067pt;}
.y6{bottom:579.360000pt;}
.y1a3{bottom:581.629333pt;}
.ya4{bottom:586.907067pt;}
.y34{bottom:587.787067pt;}
.y181{bottom:588.259360pt;}
.y1d3{bottom:589.789467pt;}
.y14f{bottom:590.667200pt;}
.y7d{bottom:594.267147pt;}
.y53{bottom:594.667067pt;}
.y120{bottom:598.587067pt;}
.ye8{bottom:599.787067pt;}
.yce{bottom:600.027067pt;}
.y1a2{bottom:600.989333pt;}
.y5{bottom:601.760000pt;}
.y180{bottom:603.623360pt;}
.y1d2{bottom:605.069333pt;}
.y33{bottom:606.427067pt;}
.y14e{bottom:608.667067pt;}
.y7c{bottom:611.147067pt;}
.y1a1{bottom:616.269200pt;}
.ya3{bottom:616.347067pt;}
.ycd{bottom:618.747067pt;}
.y17f{bottom:618.907200pt;}
.y11f{bottom:619.868800pt;}
.y1d1{bottom:620.349200pt;}
.y52{bottom:621.555147pt;}
.y4{bottom:624.160000pt;}
.y32{bottom:625.067067pt;}
.ye7{bottom:626.427067pt;}
.y101{bottom:629.467067pt;}
.y14d{bottom:629.948800pt;}
.y1a0{bottom:631.544960pt;}
.y7b{bottom:632.747067pt;}
.y11e{bottom:635.148667pt;}
.y1d0{bottom:635.629067pt;}
.y17e{bottom:636.907067pt;}
.ycc{bottom:637.387067pt;}
.y51{bottom:641.467067pt;}
.y31{bottom:643.787067pt;}
.y14c{bottom:645.228667pt;}
.ya2{bottom:645.387067pt;}
.y3{bottom:646.560000pt;}
.y19f{bottom:646.828800pt;}
.y11d{bottom:650.428533pt;}
.ye6{bottom:653.147067pt;}
.y1cf{bottom:654.988933pt;}
.ycb{bottom:656.027067pt;}
.y100{bottom:656.747067pt;}
.y17d{bottom:658.188800pt;}
.y14b{bottom:660.508533pt;}
.y19e{bottom:662.180853pt;}
.y30{bottom:662.427067pt;}
.y11c{bottom:665.708267pt;}
.y1ce{bottom:670.268800pt;}
.ya1{bottom:672.027067pt;}
.y2{bottom:672.480000pt;}
.y17c{bottom:673.468667pt;}
.y7a{bottom:674.587067pt;}
.yca{bottom:674.747067pt;}
.yff{bottom:674.823467pt;}
.y14a{bottom:675.788267pt;}
.y50{bottom:677.227067pt;}
.y19d{bottom:677.464693pt;}
.ye5{bottom:679.787067pt;}
.y2f{bottom:681.067067pt;}
.y11b{bottom:684.988133pt;}
.y1cd{bottom:685.540693pt;}
.y17b{bottom:688.748533pt;}
.yfe{bottom:690.187467pt;}
.y19c{bottom:692.748533pt;}
.y79{bottom:693.227067pt;}
.yc9{bottom:693.387067pt;}
.y149{bottom:695.148267pt;}
.y4f{bottom:695.867067pt;}
.ye4{bottom:698.427067pt;}
.ya0{bottom:698.667067pt;}
.y2e{bottom:699.787067pt;}
.y11a{bottom:700.348133pt;}
.y1cc{bottom:700.824533pt;}
.y17a{bottom:704.028400pt;}
.yfd{bottom:705.467200pt;}
.y19b{bottom:708.016320pt;}
.y148{bottom:710.428133pt;}
.yc8{bottom:712.027067pt;}
.y4e{bottom:714.587067pt;}
.y119{bottom:715.628000pt;}
.y1cb{bottom:716.188533pt;}
.ye3{bottom:717.147067pt;}
.y9f{bottom:717.387067pt;}
.y2d{bottom:718.427067pt;}
.y78{bottom:719.867067pt;}
.yfc{bottom:720.827200pt;}
.y19a{bottom:723.380320pt;}
.y179{bottom:723.388267pt;}
.y147{bottom:725.708000pt;}
.yc7{bottom:730.747067pt;}
.y118{bottom:730.907733pt;}
.y1ca{bottom:731.460320pt;}
.ye2{bottom:735.787067pt;}
.y9e{bottom:736.027067pt;}
.yfb{bottom:736.187200pt;}
.y2c{bottom:737.067067pt;}
.y77{bottom:738.587067pt;}
.y199{bottom:738.664160pt;}
.y178{bottom:738.668133pt;}
.y146{bottom:740.987733pt;}
.y4d{bottom:741.395147pt;}
.y117{bottom:746.183600pt;}
.y1c9{bottom:746.744160pt;}
.yfa{bottom:751.467067pt;}
.y177{bottom:753.948000pt;}
.ye1{bottom:754.427067pt;}
.y9d{bottom:754.667067pt;}
.y145{bottom:756.343760pt;}
.y76{bottom:757.227067pt;}
.yc6{bottom:757.555147pt;}
.y4c{bottom:761.307067pt;}
.y116{bottom:761.547600pt;}
.y1c8{bottom:762.028000pt;}
.y2b{bottom:763.787067pt;}
.y198{bottom:769.215787pt;}
.y176{bottom:769.227867pt;}
.y144{bottom:771.627600pt;}
.y115{bottom:776.827467pt;}
.y1c7{bottom:777.379920pt;}
.yc5{bottom:777.467067pt;}
.ye0{bottom:781.147067pt;}
.y9c{bottom:781.468347pt;}
.y75{bottom:783.867067pt;}
.y197{bottom:784.579787pt;}
.y175{bottom:784.583760pt;}
.y143{bottom:786.907467pt;}
.yf9{bottom:789.227067pt;}
.y114{bottom:792.107333pt;}
.y1c6{bottom:792.663760pt;}
.y4b{bottom:797.067067pt;}
.ydf{bottom:799.787067pt;}
.y196{bottom:799.863627pt;}
.y174{bottom:799.867600pt;}
.y9b{bottom:801.467067pt;}
.y142{bottom:802.187333pt;}
.y74{bottom:802.587067pt;}
.y1c5{bottom:807.947600pt;}
.y113{bottom:811.387067pt;}
.yc4{bottom:813.227067pt;}
.y173{bottom:815.147467pt;}
.yf8{bottom:817.707067pt;}
.y2a{bottom:818.347067pt;}
.y141{bottom:821.547200pt;}
.y1c4{bottom:823.223467pt;}
.y4a{bottom:823.868347pt;}
.yde{bottom:826.427067pt;}
.y73{bottom:829.395147pt;}
.y172{bottom:830.427333pt;}
.yc3{bottom:831.947067pt;}
.y112{bottom:834.747067pt;}
.y9a{bottom:837.227067pt;}
.y1c3{bottom:838.587467pt;}
.y49{bottom:843.867067pt;}
.yf7{bottom:844.827067pt;}
.y29{bottom:844.987067pt;}
.ydd{bottom:845.147067pt;}
.y72{bottom:849.307067pt;}
.y171{bottom:849.787333pt;}
.yc2{bottom:850.587067pt;}
.y110{bottom:853.379520pt;}
.y1c2{bottom:853.867333pt;}
.y99{bottom:855.867067pt;}
.y13f{bottom:863.459520pt;}
.ydc{bottom:863.787067pt;}
.y10f{bottom:868.663360pt;}
.yc1{bottom:869.147067pt;}
.y28{bottom:871.707067pt;}
.yf6{bottom:872.027067pt;}
.y170{bottom:873.067067pt;}
.y1c1{bottom:873.147067pt;}
.y98{bottom:874.587067pt;}
.y13e{bottom:878.743360pt;}
.y48{bottom:879.627067pt;}
.y10e{bottom:883.947200pt;}
.y71{bottom:885.067067pt;}
.y27{bottom:890.107067pt;}
.ydb{bottom:890.595147pt;}
.y16e{bottom:891.699520pt;}
.y13d{bottom:894.027200pt;}
.yf5{bottom:895.067067pt;}
.yc0{bottom:895.947067pt;}
.y1c0{bottom:896.507067pt;}
.y10d{bottom:896.587067pt;}
.y47{bottom:898.267067pt;}
.y111{bottom:899.227067pt;}
.y195{bottom:899.388133pt;}
.y97{bottom:901.395147pt;}
.y70{bottom:903.707067pt;}
.yf4{bottom:904.267067pt;}
.y13c{bottom:906.667067pt;}
.y16d{bottom:906.983360pt;}
.y26{bottom:908.507067pt;}
.y140{bottom:909.307067pt;}
.yda{bottom:910.507067pt;}
.ybf{bottom:914.507067pt;}
.y194{bottom:914.668000pt;}
.y10a{bottom:915.228133pt;}
.y1bf{bottom:918.666667pt;}
.y96{bottom:921.307067pt;}
.y16c{bottom:922.267200pt;}
.y6f{bottom:922.427067pt;}
.y107{bottom:922.827200pt;}
.y10c{bottom:922.828533pt;}
.y46{bottom:925.068347pt;}
.y13b{bottom:925.306533pt;}
.y25{bottom:926.907067pt;}
.y193{bottom:929.947867pt;}
.y109{bottom:930.503893pt;}
.y138{bottom:932.907067pt;}
.yf2{bottom:933.787067pt;}
.y16b{bottom:934.907067pt;}
.y16f{bottom:937.546933pt;}
.y106{bottom:938.107067pt;}
.y10b{bottom:938.108400pt;}
.y13a{bottom:940.582400pt;}
.ybe{bottom:941.227067pt;}
.yf1{bottom:942.987067pt;}
.y45{bottom:945.067067pt;}
.y24{bottom:945.307067pt;}
.y108{bottom:945.787733pt;}
.yd9{bottom:946.827067pt;}
.y137{bottom:948.267067pt;}
.y6e{bottom:949.067067pt;}
.yf3{bottom:952.187067pt;}
.y168{bottom:953.548133pt;}
.y139{bottom:955.946400pt;}
.y95{bottom:957.067067pt;}
.ybd{bottom:959.947067pt;}
.y1be{bottom:961.143227pt;}
.y165{bottom:961.147200pt;}
.y16a{bottom:961.148533pt;}
.y6d{bottom:967.707067pt;}
.y167{bottom:968.823893pt;}
.y105{bottom:969.227067pt;}
.y23{bottom:972.123227pt;}
.y94{bottom:975.707067pt;}
.yd8{bottom:976.267067pt;}
.y164{bottom:976.427067pt;}
.y169{bottom:976.428400pt;}
.ybc{bottom:978.507067pt;}
.y136{bottom:979.307067pt;}
.y44{bottom:981.307067pt;}
.y166{bottom:984.107733pt;}
.yf0{bottom:984.747067pt;}
.y22{bottom:992.035147pt;}
.y104{bottom:993.067067pt;}
.y6c{bottom:994.427067pt;}
.y163{bottom:1007.547067pt;}
.y43{bottom:1010.747067pt;}
.yef{bottom:1010.827067pt;}
.y21{bottom:1011.947067pt;}
.y6b{bottom:1013.067067pt;}
.ybb{bottom:1013.227067pt;}
.yd7{bottom:1013.307067pt;}
.y135{bottom:1014.586533pt;}
.y102{bottom:1061.067067pt;}
.y1bc{bottom:1061.867067pt;}
.y20{bottom:1062.347067pt;}
.y1{bottom:1108.800000pt;}
.h5{height:45.184000pt;}
.h7{height:53.086720pt;}
.h8{height:55.736250pt;}
.h12{height:57.020480pt;}
.hc{height:61.076250pt;}
.h3{height:62.781250pt;}
.h11{height:62.812500pt;}
.ha{height:66.750000pt;}
.h10{height:66.764400pt;}
.h16{height:67.579947pt;}
.h14{height:67.580480pt;}
.h4{height:67.776000pt;}
.hf{height:68.288000pt;}
.h9{height:72.423750pt;}
.hb{height:77.763750pt;}
.h6{height:103.104000pt;}
.he{height:105.088000pt;}
.h17{height:118.139413pt;}
.h13{height:118.139947pt;}
.h15{height:118.460480pt;}
.hd{height:128.595930pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x8{left:94.480000pt;}
.x1a{left:98.880000pt;}
.x32{left:101.440000pt;}
.x26{left:102.480000pt;}
.x2e{left:104.480000pt;}
.x5{left:106.472000pt;}
.x3f{left:109.680000pt;}
.x1b{left:122.880000pt;}
.x27{left:129.520667pt;}
.x10{left:132.320000pt;}
.x2f{left:135.039733pt;}
.x40{left:136.720667pt;}
.x7{left:141.680000pt;}
.x6{left:149.281760pt;}
.x11{left:156.080000pt;}
.x19{left:158.076560pt;}
.x4{left:163.760000pt;}
.x4c{left:166.153973pt;}
.x17{left:219.040267pt;}
.x28{left:224.639867pt;}
.x41{left:232.000133pt;}
.xc{left:234.078640pt;}
.x20{left:256.716080pt;}
.x18{left:275.048240pt;}
.xf{left:290.394480pt;}
.x1f{left:294.719733pt;}
.x1d{left:307.754480pt;}
.x29{left:312.719600pt;}
.x23{left:318.480000pt;}
.x42{left:320.160133pt;}
.x14{left:332.804960pt;}
.xe{left:333.759760pt;}
.xd{left:336.641520pt;}
.xa{left:341.919333pt;}
.x15{left:343.359840pt;}
.x1c{left:345.286800pt;}
.x12{left:366.483360pt;}
.x1e{left:370.400000pt;}
.x16{left:372.960000pt;}
.x9{left:375.600000pt;}
.x3{left:376.640000pt;}
.xb{left:379.920000pt;}
.x22{left:384.880000pt;}
.x25{left:389.520000pt;}
.x43{left:392.720933pt;}
.x30{left:469.920133pt;}
.x21{left:472.080000pt;}
.x3a{left:474.000267pt;}
.x2a{left:479.839867pt;}
.x33{left:480.800400pt;}
.x3e{left:484.560000pt;}
.x38{left:485.998800pt;}
.x3d{left:487.280000pt;}
.x37{left:488.718933pt;}
.x2b{left:491.997467pt;}
.x34{left:492.958000pt;}
.x47{left:494.239600pt;}
.x44{left:498.478667pt;}
.x48{left:523.759867pt;}
.x31{left:583.279733pt;}
.x49{left:603.440133pt;}
.x3c{left:606.801333pt;}
.x2d{left:608.241467pt;}
.x36{left:609.681733pt;}
.x46{left:613.202400pt;}
.x3b{left:619.200667pt;}
.x2c{left:620.721067pt;}
.x35{left:622.081200pt;}
.x45{left:625.682000pt;}
.x39{left:626.958800pt;}
.x4a{left:630.559600pt;}
.x4b{left:641.199600pt;}
.x24{left:643.840000pt;}
.x13{left:652.078453pt;}
}


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;
}
