
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_4756702ca71261dec582697e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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('chunks/assets/font_8456d07a0957c21fe7aa80b1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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('chunks/assets/font_c8cc73943ada51a8ac4e27f6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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('chunks/assets/font_d4460864023e56cb26c0e95a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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('chunks/assets/font_7415f256ffc420e0acb1df0e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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('chunks/assets/font_352d7d231f6f649043efba53.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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('chunks/assets/font_db9d547396013108ef579c8b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904000;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('chunks/assets/font_eff62c60af67dca71890c63f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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('chunks/assets/font_db0e7858f15364a083f57a6f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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('chunks/assets/font_24e4705b37960f44a93552f0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.705000;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('chunks/assets/font_6ad8f21f77102854ef7bb65f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.898000;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('chunks/assets/font_5d9fedb160265777aa86c0a4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.674000;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('chunks/assets/font_6ebcd351cd369e6fa5c1272b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.730000;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('chunks/assets/font_baf1e76dec20646d285f2318.woff')format("woff");}.ffe{font-family:ffe;line-height:2.222000;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('chunks/assets/font_e0994b6a57479ce4e8716412.woff')format("woff");}.fff{font-family:fff;line-height:0.708000;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('chunks/assets/font_650199cb2212bb5a51c5ba82.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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('chunks/assets/font_6cf76abb2e84d4ee2445bed5.woff')format("woff");}.ff11{font-family:ff11;line-height:0.688000;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);}
.m1{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);}
.vc{vertical-align:-148.446000px;}
.v3{vertical-align:-17.424000px;}
.v1{vertical-align:-10.134000px;}
.v6{vertical-align:-7.290000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.988000px;}
.v8{vertical-align:18.036000px;}
.v7{vertical-align:23.754000px;}
.v2{vertical-align:27.024000px;}
.vd{vertical-align:30.162000px;}
.v5{vertical-align:34.500000px;}
.va{vertical-align:44.898000px;}
.v4{vertical-align:62.178000px;}
.vb{vertical-align:89.094000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000493px;}
.ls21{letter-spacing:0.000511px;}
.ls25{letter-spacing:0.001044px;}
.ls1c{letter-spacing:0.001571px;}
.ls13{letter-spacing:0.001593px;}
.ls20{letter-spacing:0.001860px;}
.ls3e{letter-spacing:0.002153px;}
.ls6{letter-spacing:0.002694px;}
.ls41{letter-spacing:0.002700px;}
.ls47{letter-spacing:0.002706px;}
.ls5f{letter-spacing:0.003056px;}
.ls28{letter-spacing:0.004669px;}
.ls1e{letter-spacing:0.005425px;}
.ls5a{letter-spacing:0.005976px;}
.ls7{letter-spacing:0.006493px;}
.ls2e{letter-spacing:0.007593px;}
.ls27{letter-spacing:1.271644px;}
.ls3f{letter-spacing:2.984006px;}
.ls39{letter-spacing:2.984915px;}
.ls4d{letter-spacing:2.989289px;}
.ls46{letter-spacing:2.990006px;}
.ls33{letter-spacing:2.990915px;}
.lsa{letter-spacing:3.730007px;}
.ls5b{letter-spacing:3.773414px;}
.ls4a{letter-spacing:5.743488px;}
.ls59{letter-spacing:5.749488px;}
.ls0{letter-spacing:5.939276px;}
.ls1f{letter-spacing:5.978289px;}
.ls5{letter-spacing:6.501779px;}
.lsf{letter-spacing:6.507779px;}
.ls55{letter-spacing:6.719578px;}
.ls3c{letter-spacing:6.721050px;}
.ls56{letter-spacing:7.135599px;}
.ls3{letter-spacing:9.088332px;}
.ls3a{letter-spacing:9.094332px;}
.ls34{letter-spacing:10.520706px;}
.ls32{letter-spacing:10.526700px;}
.ls35{letter-spacing:10.532700px;}
.ls29{letter-spacing:12.559044px;}
.ls38{letter-spacing:13.508915px;}
.ls31{letter-spacing:13.514915px;}
.ls42{letter-spacing:14.274613px;}
.ls3d{letter-spacing:14.280613px;}
.ls9{letter-spacing:14.540712px;}
.ls49{letter-spacing:14.543412px;}
.ls4e{letter-spacing:14.546706px;}
.ls58{letter-spacing:17.533289px;}
.ls48{letter-spacing:17.539289px;}
.ls1b{letter-spacing:18.176712px;}
.lsb{letter-spacing:18.179412px;}
.ls40{letter-spacing:18.181571px;}
.ls4b{letter-spacing:18.182706px;}
.ls5e{letter-spacing:18.184861px;}
.ls37{letter-spacing:18.185412px;}
.ls4c{letter-spacing:20.287488px;}
.ls2d{letter-spacing:20.942712px;}
.ls36{letter-spacing:21.164915px;}
.ls1d{letter-spacing:21.169289px;}
.ls8{letter-spacing:21.265050px;}
.ls11{letter-spacing:21.812712px;}
.ls12{letter-spacing:21.818712px;}
.ls2c{letter-spacing:21.820344px;}
.ls18{letter-spacing:21.823571px;}
.ls5c{letter-spacing:21.953414px;}
.ls4f{letter-spacing:23.320864px;}
.ls2f{letter-spacing:23.409779px;}
.ls3b{letter-spacing:23.493779px;}
.ls14{letter-spacing:23.691779px;}
.ls26{letter-spacing:24.164289px;}
.ls1a{letter-spacing:24.687779px;}
.ls5d{letter-spacing:24.800915px;}
.ls50{letter-spacing:24.806006px;}
.ls44{letter-spacing:25.370712px;}
.ls53{letter-spacing:25.721412px;}
.ls19{letter-spacing:26.863571px;}
.ls57{letter-spacing:26.895848px;}
.ls15{letter-spacing:27.201780px;}
.ls23{letter-spacing:27.794289px;}
.ls22{letter-spacing:27.800289px;}
.lse{letter-spacing:28.323779px;}
.ls45{letter-spacing:28.360059px;}
.ls16{letter-spacing:29.589779px;}
.ls17{letter-spacing:30.897779px;}
.ls2b{letter-spacing:30.904332px;}
.ls10{letter-spacing:30.910332px;}
.ls54{letter-spacing:31.474864px;}
.ls43{letter-spacing:31.869779px;}
.ls2a{letter-spacing:31.930335px;}
.ls24{letter-spacing:32.146332px;}
.ls4{letter-spacing:32.723973px;}
.ls30{letter-spacing:32.726712px;}
.ls52{letter-spacing:32.851599px;}
.ls51{letter-spacing:33.059578px;}
.lsd{letter-spacing:37.552332px;}
.ls1{letter-spacing:934.605779px;}
.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;}
}
.ws8c{word-spacing:-65.454600px;}
.wsbd{word-spacing:-50.809387px;}
.ws60{word-spacing:-47.258221px;}
.ws86{word-spacing:-47.252870px;}
.ws48{word-spacing:-42.637126px;}
.wsbe{word-spacing:-40.058215px;}
.wsc2{word-spacing:-31.739006px;}
.wsbc{word-spacing:-31.706208px;}
.ws1a{word-spacing:-26.899125px;}
.wsc4{word-spacing:-26.373914px;}
.ws87{word-spacing:-20.906199px;}
.ws4b{word-spacing:-18.183288px;}
.ws19{word-spacing:-16.605662px;}
.ws91{word-spacing:-14.111859px;}
.wsb9{word-spacing:-3.777827px;}
.wsa2{word-spacing:-3.652367px;}
.ws3b{word-spacing:-2.932366px;}
.ws9c{word-spacing:-2.705150px;}
.ws95{word-spacing:-2.474184px;}
.ws6d{word-spacing:-2.343275px;}
.wsb7{word-spacing:-2.277820px;}
.ws35{word-spacing:-2.016002px;}
.ws50{word-spacing:-1.623274px;}
.wsa5{word-spacing:-1.557819px;}
.ws29{word-spacing:-1.426910px;}
.ws3{word-spacing:-1.303108px;}
.ws9a{word-spacing:-1.296001px;}
.wsb5{word-spacing:-1.230546px;}
.wsb6{word-spacing:-1.165092px;}
.wsad{word-spacing:-1.034183px;}
.ws61{word-spacing:-1.012003px;}
.ws5f{word-spacing:-0.968728px;}
.ws13{word-spacing:-0.585801px;}
.ws4{word-spacing:-0.466250px;}
.ws53{word-spacing:-0.445091px;}
.ws54{word-spacing:-0.248727px;}
.ws5e{word-spacing:-0.065455px;}
.ws68{word-spacing:-0.052364px;}
.ws8a{word-spacing:-0.047821px;}
.wsc5{word-spacing:-0.023549px;}
.ws1c{word-spacing:0.000000px;}
.wsc0{word-spacing:0.002124px;}
.wsc6{word-spacing:0.013091px;}
.ws5a{word-spacing:0.274909px;}
.wsb3{word-spacing:0.340364px;}
.ws76{word-spacing:0.405819px;}
.ws57{word-spacing:0.471273px;}
.ws1e{word-spacing:0.536728px;}
.ws1f{word-spacing:0.667637px;}
.ws10{word-spacing:0.789038px;}
.ws34{word-spacing:0.994910px;}
.ws14{word-spacing:1.028140px;}
.ws8{word-spacing:1.147692px;}
.ws4e{word-spacing:1.256728px;}
.ws20{word-spacing:1.387638px;}
.ws3c{word-spacing:1.584001px;}
.wsa6{word-spacing:1.649456px;}
.ws4f{word-spacing:1.714911px;}
.ws2d{word-spacing:1.845820px;}
.wsa4{word-spacing:1.911274px;}
.ws80{word-spacing:1.976729px;}
.ws79{word-spacing:2.042184px;}
.wsb{word-spacing:2.104101px;}
.wsa1{word-spacing:2.173093px;}
.ws99{word-spacing:2.238547px;}
.ws66{word-spacing:2.304002px;}
.ws70{word-spacing:2.434911px;}
.ws18{word-spacing:2.462755px;}
.ws98{word-spacing:2.500366px;}
.ws97{word-spacing:2.565820px;}
.wsab{word-spacing:2.631275px;}
.ws64{word-spacing:2.696730px;}
.ws23{word-spacing:2.762184px;}
.wsc7{word-spacing:2.827639px;}
.ws2{word-spacing:2.881184px;}
.ws39{word-spacing:3.089457px;}
.ws5c{word-spacing:3.154912px;}
.ws88{word-spacing:3.220366px;}
.ws89{word-spacing:3.285821px;}
.wsd{word-spacing:3.299613px;}
.ws6e{word-spacing:3.351276px;}
.wsae{word-spacing:3.416730px;}
.ws9e{word-spacing:3.482185px;}
.ws90{word-spacing:3.605184px;}
.ws24{word-spacing:3.613094px;}
.ws62{word-spacing:3.628261px;}
.ws82{word-spacing:3.634269px;}
.ws96{word-spacing:3.639615px;}
.ws8e{word-spacing:3.659341px;}
.ws47{word-spacing:3.678549px;}
.ws1{word-spacing:3.873485px;}
.ws31{word-spacing:4.136731px;}
.ws1b{word-spacing:4.162913px;}
.wsb0{word-spacing:4.202185px;}
.ws3f{word-spacing:4.267640px;}
.wsb4{word-spacing:4.398549px;}
.ws3e{word-spacing:4.483200px;}
.ws17{word-spacing:4.734228px;}
.wsac{word-spacing:4.791277px;}
.ws3a{word-spacing:4.856731px;}
.ws8f{word-spacing:4.876770px;}
.ws44{word-spacing:4.922186px;}
.ws49{word-spacing:4.987641px;}
.ws56{word-spacing:5.053095px;}
.ws2b{word-spacing:5.184004px;}
.wsf{word-spacing:5.212432px;}
.ws27{word-spacing:5.249459px;}
.ws7f{word-spacing:5.314914px;}
.ws1d{word-spacing:5.379825px;}
.ws22{word-spacing:5.380368px;}
.ws0{word-spacing:5.412522px;}
.ws30{word-spacing:5.707641px;}
.ws2a{word-spacing:5.773096px;}
.ws5b{word-spacing:5.838550px;}
.ws7e{word-spacing:5.904005px;}
.wsbb{word-spacing:5.969460px;}
.ws52{word-spacing:6.034914px;}
.ws46{word-spacing:6.100369px;}
.ws81{word-spacing:6.231278px;}
.ws78{word-spacing:6.296733px;}
.ws36{word-spacing:6.493096px;}
.ws55{word-spacing:6.558551px;}
.ws69{word-spacing:6.584906px;}
.wsb8{word-spacing:6.676272px;}
.ws33{word-spacing:6.702551px;}
.ws5{word-spacing:6.706822px;}
.ws43{word-spacing:6.754915px;}
.wsb2{word-spacing:6.885824px;}
.ws7{word-spacing:6.886149px;}
.ws2c{word-spacing:6.951279px;}
.ws9f{word-spacing:7.016733px;}
.ws32{word-spacing:7.160733px;}
.ws6a{word-spacing:7.213097px;}
.ws5d{word-spacing:7.344006px;}
.ws12{word-spacing:7.364354px;}
.wsa9{word-spacing:7.409461px;}
.wsb1{word-spacing:7.474915px;}
.ws9{word-spacing:7.532476px;}
.wsa{word-spacing:7.543681px;}
.ws15{word-spacing:7.603456px;}
.wsa3{word-spacing:7.671279px;}
.ws2e{word-spacing:7.736734px;}
.ws7c{word-spacing:7.802188px;}
.wsa0{word-spacing:7.933098px;}
.ws59{word-spacing:8.064007px;}
.wsc1{word-spacing:8.129461px;}
.ws25{word-spacing:8.194916px;}
.ws71{word-spacing:8.260371px;}
.ws38{word-spacing:8.391280px;}
.wsc{word-spacing:8.440315px;}
.ws37{word-spacing:8.456734px;}
.ws8b{word-spacing:8.522189px;}
.ws8d{word-spacing:8.587644px;}
.ws84{word-spacing:8.653098px;}
.ws83{word-spacing:8.718553px;}
.ws45{word-spacing:8.784007px;}
.wsaf{word-spacing:8.849462px;}
.ws77{word-spacing:9.045826px;}
.ws75{word-spacing:9.111280px;}
.ws58{word-spacing:9.307644px;}
.ws28{word-spacing:9.373099px;}
.wsaa{word-spacing:9.504008px;}
.ws21{word-spacing:10.093099px;}
.ws4a{word-spacing:10.289463px;}
.ws3d{word-spacing:10.420372px;}
.ws11{word-spacing:11.189992px;}
.ws63{word-spacing:11.205828px;}
.ws40{word-spacing:11.271282px;}
.wse{word-spacing:11.275023px;}
.ws6{word-spacing:11.429095px;}
.ws93{word-spacing:11.664010px;}
.ws92{word-spacing:11.686209px;}
.ws94{word-spacing:11.729464px;}
.ws9b{word-spacing:11.794919px;}
.ws67{word-spacing:11.860374px;}
.ws4d{word-spacing:11.991283px;}
.ws6f{word-spacing:12.187647px;}
.wsa7{word-spacing:12.318556px;}
.ws9d{word-spacing:12.514920px;}
.ws7a{word-spacing:12.580374px;}
.ws2f{word-spacing:12.645829px;}
.ws7b{word-spacing:12.776738px;}
.ws6b{word-spacing:12.907647px;}
.ws4c{word-spacing:13.038556px;}
.ws16{word-spacing:13.102812px;}
.ws26{word-spacing:13.365829px;}
.wsc3{word-spacing:13.454880px;}
.ws51{word-spacing:13.562193px;}
.ws65{word-spacing:13.693102px;}
.ws7d{word-spacing:14.085830px;}
.wsba{word-spacing:14.229835px;}
.ws42{word-spacing:14.235835px;}
.ws6c{word-spacing:14.413103px;}
.ws74{word-spacing:16.442196px;}
.ws72{word-spacing:16.452480px;}
.ws41{word-spacing:17.393301px;}
.ws73{word-spacing:18.484379px;}
.ws85{word-spacing:21.125844px;}
.wsbf{word-spacing:21.220272px;}
.wsa8{word-spacing:64.027690px;}
._2{margin-left:-34.399428px;}
._42{margin-left:-31.874426px;}
._d{margin-left:-29.887800px;}
._c{margin-left:-23.252708px;}
._30{margin-left:-10.930918px;}
._0{margin-left:-8.056807px;}
._b{margin-left:-6.635092px;}
._a{margin-left:-4.961375px;}
._31{margin-left:-3.796367px;}
._1{margin-left:-2.685602px;}
._4{margin-left:-1.554166px;}
._3{width:1.673717px;}
._11{width:3.287658px;}
._2c{width:4.903463px;}
._44{width:6.480005px;}
._2b{width:10.876822px;}
._28{width:16.563941px;}
._7{width:17.689278px;}
._12{width:18.692564px;}
._5{width:20.498731px;}
._14{width:22.351775px;}
._27{width:23.369256px;}
._6{width:25.464406px;}
._9{width:27.014272px;}
._20{width:28.532819px;}
._f{width:29.648698px;}
._21{width:30.831080px;}
._16{width:32.845245px;}
._26{width:33.972901px;}
._22{width:35.139770px;}
._8{width:36.821770px;}
._2e{width:38.610240px;}
._10{width:39.626923px;}
._25{width:41.305780px;}
._1f{width:42.436544px;}
._41{width:44.705492px;}
._2f{width:45.844361px;}
._24{width:47.325640px;}
._29{width:48.946866px;}
._e{width:50.091953px;}
._2d{width:52.047765px;}
._13{width:56.590295px;}
._23{width:57.783448px;}
._2a{width:59.002697px;}
._15{width:60.545505px;}
._43{width:65.454600px;}
._3d{width:93.469169px;}
._1e{width:96.836850px;}
._3e{width:112.256603px;}
._3a{width:129.713760px;}
._40{width:197.429569px;}
._33{width:219.654381px;}
._39{width:272.395463px;}
._3c{width:277.387028px;}
._3b{width:288.817867px;}
._1a{width:295.937138px;}
._3f{width:312.606032px;}
._37{width:381.590668px;}
._34{width:384.558310px;}
._38{width:397.869088px;}
._32{width:439.692641px;}
._36{width:443.185995px;}
._35{width:586.354214px;}
._1b{width:889.101441px;}
._18{width:937.898963px;}
._17{width:1004.060389px;}
._1c{width:1022.468270px;}
._19{width:1142.861493px;}
._1d{width:1194.584306px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y26{bottom:108.000000px;}
.y152{bottom:115.915500px;}
.y8a{bottom:127.273500px;}
.y69{bottom:128.323500px;}
.y193{bottom:129.748500px;}
.y25{bottom:131.847000px;}
.yaa{bottom:132.762000px;}
.y134{bottom:141.124500px;}
.y89{bottom:147.597000px;}
.yc7{bottom:148.648500px;}
.y151{bottom:149.689500px;}
.ya9{bottom:153.085500px;}
.y24{bottom:155.692500px;}
.y68{bottom:161.148000px;}
.y192{bottom:163.522500px;}
.y88{bottom:167.920500px;}
.y133{bottom:177.108000px;}
.y105{bottom:177.294000px;}
.y23{bottom:179.539500px;}
.y150{bottom:183.462000px;}
.yc6{bottom:183.526500px;}
.y16f{bottom:184.267500px;}
.y4f{bottom:185.091000px;}
.ya8{bottom:186.859500px;}
.y87{bottom:188.244000px;}
.y67{bottom:192.550500px;}
.y191{bottom:197.295000px;}
.y104{bottom:197.619000px;}
.y1a6{bottom:200.980500px;}
.y22{bottom:203.386500px;}
.y14f{bottom:203.787000px;}
.y1c2{bottom:205.348500px;}
.y4e{bottom:205.414500px;}
.y117{bottom:206.628000px;}
.y86{bottom:208.569000px;}
.ye5{bottom:212.605500px;}
.y132{bottom:213.091500px;}
.yc5{bottom:215.053500px;}
.y190{bottom:217.618500px;}
.y103{bottom:217.942500px;}
.y16e{bottom:218.041500px;}
.ya7{bottom:220.632000px;}
.y1a5{bottom:221.304000px;}
.y66{bottom:223.441500px;}
.y14e{bottom:224.110500px;}
.y1c1{bottom:225.672000px;}
.y4d{bottom:225.738000px;}
.y116{bottom:226.951500px;}
.y21{bottom:227.232000px;}
.ye4{bottom:232.929000px;}
.y102{bottom:238.266000px;}
.y131{bottom:243.982500px;}
.y85{bottom:245.097000px;}
.y4c{bottom:246.061500px;}
.yc4{bottom:246.580500px;}
.y20{bottom:251.079000px;}
.y18f{bottom:251.392500px;}
.y16d{bottom:251.814000px;}
.ya6{bottom:254.406000px;}
.y1c0{bottom:254.968500px;}
.y14d{bottom:255.001500px;}
.y1a4{bottom:255.078000px;}
.y101{bottom:258.589500px;}
.y115{bottom:260.724000px;}
.y4b{bottom:266.385000px;}
.ye3{bottom:266.701500px;}
.y65{bottom:266.814000px;}
.yc3{bottom:274.738500px;}
.y1f{bottom:274.926000px;}
.y1bf{bottom:277.264500px;}
.y18e{bottom:285.165000px;}
.y16c{bottom:285.588000px;}
.y4a{bottom:286.710000px;}
.ye2{bottom:287.025000px;}
.y130{bottom:287.679000px;}
.ya5{bottom:288.178500px;}
.y1a3{bottom:288.850500px;}
.y114{bottom:294.498000px;}
.y84{bottom:296.655000px;}
.y14c{bottom:298.821000px;}
.y64{bottom:299.638500px;}
.y100{bottom:301.329000px;}
.yc2{bottom:302.896500px;}
.y16b{bottom:305.911500px;}
.y1be{bottom:306.559500px;}
.y49{bottom:307.033500px;}
.ya4{bottom:308.502000px;}
.y1e{bottom:311.454000px;}
.y18d{bottom:316.057500px;}
.y83{bottom:316.978500px;}
.y14b{bottom:319.144500px;}
.ye1{bottom:320.799000px;}
.yff{bottom:321.654000px;}
.y1a2{bottom:322.624500px;}
.y12f{bottom:323.662500px;}
.y16a{bottom:326.235000px;}
.y48{bottom:327.357000px;}
.y113{bottom:328.270500px;}
.ya3{bottom:328.827000px;}
.y63{bottom:332.463000px;}
.yc1{bottom:334.423500px;}
.y82{bottom:337.302000px;}
.y14a{bottom:339.469500px;}
.y1bd{bottom:340.333500px;}
.ye0{bottom:341.122500px;}
.y169{bottom:346.558500px;}
.y47{bottom:347.680500px;}
.yfe{bottom:355.426500px;}
.y1a1{bottom:356.397000px;}
.y12e{bottom:356.787000px;}
.y81{bottom:357.625500px;}
.ya2{bottom:359.718000px;}
.y18c{bottom:359.877000px;}
.y112{bottom:362.044500px;}
.y62{bottom:363.864000px;}
.y1d{bottom:364.341000px;}
.yc0{bottom:365.950500px;}
.y46{bottom:368.004000px;}
.y149{bottom:373.242000px;}
.y1bc{bottom:374.107500px;}
.ydf{bottom:374.896500px;}
.y12d{bottom:377.110500px;}
.y18b{bottom:380.200500px;}
.y168{bottom:380.332500px;}
.y1c{bottom:382.273500px;}
.y61{bottom:384.187500px;}
.y80{bottom:386.916000px;}
.y45{bottom:388.329000px;}
.yfd{bottom:389.200500px;}
.y1a0{bottom:390.171000px;}
.y148{bottom:393.565500px;}
.ybf{bottom:394.108500px;}
.yde{bottom:395.220000px;}
.y111{bottom:395.818500px;}
.y1b{bottom:400.206000px;}
.y18a{bottom:400.524000px;}
.ya1{bottom:403.537500px;}
.y60{bottom:404.512500px;}
.y7f{bottom:407.239500px;}
.y1bb{bottom:407.880000px;}
.y44{bottom:408.652500px;}
.y12c{bottom:410.625000px;}
.y167{bottom:414.105000px;}
.ybe{bottom:414.432000px;}
.y110{bottom:416.142000px;}
.y1a{bottom:418.138500px;}
.y189{bottom:420.847500px;}
.yfc{bottom:422.973000px;}
.ya0{bottom:423.861000px;}
.y19f{bottom:423.943500px;}
.y147{bottom:427.339500px;}
.y43{bottom:428.976000px;}
.ydd{bottom:428.994000px;}
.y12b{bottom:430.948500px;}
.y5f{bottom:435.403500px;}
.y19{bottom:436.072500px;}
.y10f{bottom:436.465500px;}
.y1ba{bottom:438.772500px;}
.y7e{bottom:441.013500px;}
.y188{bottom:441.172500px;}
.yfb{bottom:443.296500px;}
.y19e{bottom:444.268500px;}
.ybd{bottom:445.324500px;}
.y166{bottom:447.879000px;}
.y42{bottom:449.299500px;}
.ydc{bottom:449.317500px;}
.y18{bottom:454.005000px;}
.y9f{bottom:457.635000px;}
.y146{bottom:461.112000px;}
.y187{bottom:461.496000px;}
.yfa{bottom:463.621500px;}
.y12a{bottom:464.463000px;}
.y10e{bottom:467.358000px;}
.y41{bottom:469.623000px;}
.y17{bottom:471.937500px;}
.y1d0{bottom:472.992000px;}
.y7d{bottom:474.787500px;}
.y19d{bottom:475.159500px;}
.y5e{bottom:478.776000px;}
.ydb{bottom:480.208500px;}
.y165{bottom:481.653000px;}
.y186{bottom:481.819500px;}
.y1b9{bottom:482.592000px;}
.yf9{bottom:483.945000px;}
.ybc{bottom:488.085000px;}
.y16{bottom:489.870000px;}
.y40{bottom:489.948000px;}
.y9e{bottom:491.407500px;}
.y145{bottom:494.886000px;}
.y129{bottom:497.586000px;}
.y164{bottom:501.976500px;}
.y185{bottom:502.143000px;}
.y1b8{bottom:502.915500px;}
.y1cf{bottom:506.764500px;}
.y15{bottom:507.802500px;}
.ybb{bottom:508.408500px;}
.y7c{bottom:508.560000px;}
.y3f{bottom:510.271500px;}
.y10d{bottom:511.176000px;}
.y5d{bottom:511.600500px;}
.yf8{bottom:514.836000px;}
.y144{bottom:515.209500px;}
.y19c{bottom:515.574000px;}
.y128{bottom:517.911000px;}
.y163{bottom:522.300000px;}
.y184{bottom:522.466500px;}
.yda{bottom:524.028000px;}
.y9d{bottom:525.181500px;}
.y14{bottom:525.735000px;}
.y3e{bottom:530.595000px;}
.y10c{bottom:531.501000px;}
.y143{bottom:535.533000px;}
.yba{bottom:536.566500px;}
.y1b7{bottom:536.688000px;}
.y1ce{bottom:540.538500px;}
.y7b{bottom:542.334000px;}
.y13{bottom:543.669000px;}
.y5c{bottom:544.425000px;}
.y127{bottom:548.802000px;}
.y3d{bottom:550.918500px;}
.y183{bottom:553.359000px;}
.y162{bottom:556.074000px;}
.yd9{bottom:557.802000px;}
.yf7{bottom:558.655500px;}
.y9c{bottom:558.955500px;}
.y12{bottom:561.601500px;}
.y5b{bottom:564.748500px;}
.y19b{bottom:567.132000px;}
.yb9{bottom:568.093500px;}
.y10b{bottom:568.263000px;}
.y142{bottom:569.307000px;}
.y1b6{bottom:570.462000px;}
.y3c{bottom:571.242000px;}
.y1cd{bottom:574.311000px;}
.y7a{bottom:576.106500px;}
.yf6{bottom:578.979000px;}
.y9b{bottom:579.279000px;}
.y19a{bottom:587.455500px;}
.y141{bottom:589.630500px;}
.y161{bottom:589.846500px;}
.y1b5{bottom:590.785500px;}
.y3b{bottom:591.567000px;}
.yd8{bottom:591.574500px;}
.y126{bottom:592.498500px;}
.y182{bottom:593.773500px;}
.y11{bottom:594.478500px;}
.y1cc{bottom:594.636000px;}
.y5a{bottom:596.149500px;}
.y79{bottom:596.430000px;}
.y9a{bottom:599.602500px;}
.yb8{bottom:599.620500px;}
.y10a{bottom:605.025000px;}
.y10{bottom:612.411000px;}
.yf5{bottom:612.753000px;}
.y125{bottom:612.823500px;}
.y59{bottom:616.474500px;}
.y199{bottom:616.746000px;}
.y99{bottom:619.926000px;}
.y140{bottom:623.404500px;}
.y160{bottom:623.620500px;}
.y1b4{bottom:624.559500px;}
.y3a{bottom:625.339500px;}
.yd7{bottom:625.348500px;}
.y78{bottom:627.322500px;}
.yb7{bottom:627.778500px;}
.y1cb{bottom:628.408500px;}
.yf{bottom:630.343500px;}
.yf4{bottom:633.076500px;}
.y198{bottom:637.069500px;}
.y181{bottom:645.331500px;}
.y109{bottom:645.672000px;}
.y124{bottom:645.948000px;}
.y58{bottom:647.365500px;}
.yb6{bottom:648.102000px;}
.ye{bottom:648.276000px;}
.y98{bottom:650.818500px;}
.y13f{bottom:657.177000px;}
.y15f{bottom:657.393000px;}
.y1b3{bottom:658.332000px;}
.y39{bottom:659.113500px;}
.yd6{bottom:659.121000px;}
.y1ca{bottom:662.182500px;}
.y180{bottom:665.655000px;}
.yd{bottom:666.208500px;}
.yf3{bottom:666.850500px;}
.y77{bottom:671.142000px;}
.y15e{bottom:677.716500px;}
.y1b2{bottom:678.655500px;}
.yb5{bottom:678.994500px;}
.yd5{bottom:679.446000px;}
.y123{bottom:679.461000px;}
.yc{bottom:684.141000px;}
.y17f{bottom:685.978500px;}
.y57{bottom:690.738000px;}
.y13e{bottom:690.951000px;}
.y76{bottom:691.465500px;}
.y38{bottom:692.886000px;}
.y1c9{bottom:693.073500px;}
.y97{bottom:694.638000px;}
.y15d{bottom:698.041500px;}
.yf2{bottom:700.623000px;}
.yb{bottom:702.075000px;}
.y17e{bottom:706.302000px;}
.y1b1{bottom:709.548000px;}
.y13d{bottom:711.274500px;}
.y122{bottom:712.975500px;}
.yd4{bottom:713.218500px;}
.y96{bottom:714.961500px;}
.y197{bottom:718.365000px;}
.ya{bottom:720.007500px;}
.yb4{bottom:721.755000px;}
.y56{bottom:723.562500px;}
.y75{bottom:725.239500px;}
.y17d{bottom:726.625500px;}
.y37{bottom:726.660000px;}
.y15c{bottom:728.932500px;}
.y13c{bottom:731.598000px;}
.y121{bottom:733.299000px;}
.yf1{bottom:734.397000px;}
.y1c8{bottom:736.893000px;}
.y9{bottom:737.940000px;}
.yb3{bottom:742.078500px;}
.y17c{bottom:746.950500px;}
.yd3{bottom:746.992500px;}
.y95{bottom:748.734000px;}
.y196{bottom:749.256000px;}
.y1b0{bottom:753.367500px;}
.yf0{bottom:754.720500px;}
.y8{bottom:755.872500px;}
.y55{bottom:756.387000px;}
.y1c7{bottom:757.216500px;}
.y74{bottom:759.012000px;}
.y36{bottom:760.432500px;}
.y13b{bottom:762.490500px;}
.y120{bottom:766.423500px;}
.yb2{bottom:770.236500px;}
.y15b{bottom:772.752000px;}
.y1af{bottom:773.691000px;}
.y7{bottom:773.805000px;}
.yef{bottom:775.044000px;}
.y17b{bottom:777.841500px;}
.y73{bottom:779.335500px;}
.y35{bottom:780.757500px;}
.yd2{bottom:780.765000px;}
.y94{bottom:782.508000px;}
.y11f{bottom:786.747000px;}
.y54{bottom:787.788000px;}
.y1c6{bottom:792.610500px;}
.y6{bottom:792.640500px;}
.y15a{bottom:793.075500px;}
.y34{bottom:801.081000px;}
.yd1{bottom:801.090000px;}
.yb1{bottom:801.763500px;}
.y1ae{bottom:803.728500px;}
.yee{bottom:805.936500px;}
.y13a{bottom:806.310000px;}
.y53{bottom:808.111500px;}
.y72{bottom:813.109500px;}
.y159{bottom:813.399000px;}
.y108{bottom:814.539000px;}
.y93{bottom:816.280500px;}
.y11e{bottom:817.638000px;}
.y1c5{bottom:819.147000px;}
.y33{bottom:821.404500px;}
.y17a{bottom:823.573500px;}
.y139{bottom:826.633500px;}
.y52{bottom:828.436500px;}
.yd0{bottom:831.981000px;}
.yb0{bottom:833.290500px;}
.y158{bottom:833.724000px;}
.y1ad{bottom:839.743500px;}
.y1ac{bottom:840.490500px;}
.y32{bottom:841.728000px;}
.y179{bottom:843.897000px;}
.y71{bottom:846.883500px;}
.y138{bottom:846.957000px;}
.y107{bottom:848.313000px;}
.y51{bottom:848.760000px;}
.yed{bottom:849.756000px;}
.y92{bottom:850.054500px;}
.y1c4{bottom:854.188500px;}
.y11d{bottom:861.336000px;}
.y5{bottom:861.877500px;}
.y31{bottom:862.051500px;}
.yaf{bottom:864.817500px;}
.y178{bottom:864.819000px;}
.y70{bottom:867.207000px;}
.y137{bottom:867.280500px;}
.y157{bottom:867.496500px;}
.yec{bottom:870.079500px;}
.y91{bottom:870.378000px;}
.ycf{bottom:875.800500px;}
.y1ab{bottom:877.252500px;}
.y106{bottom:879.204000px;}
.y50{bottom:879.651000px;}
.y11c{bottom:881.659500px;}
.y30{bottom:882.376500px;}
.y4{bottom:882.799500px;}
.y177{bottom:885.142500px;}
.y195{bottom:887.820000px;}
.yeb{bottom:890.403000px;}
.yae{bottom:892.975500px;}
.yce{bottom:896.124000px;}
.y1c3{bottom:897.576000px;}
.y6f{bottom:898.098000px;}
.y156{bottom:901.270500px;}
.y11b{bottom:901.983000px;}
.y2f{bottom:902.700000px;}
.y136{bottom:903.808500px;}
.y90{bottom:904.152000px;}
.y176{bottom:906.064500px;}
.yea{bottom:910.726500px;}
.y1aa{bottom:911.026500px;}
.ycd{bottom:916.447500px;}
.yad{bottom:921.133500px;}
.y155{bottom:921.594000px;}
.y3{bottom:922.710000px;}
.y2e{bottom:923.023500px;}
.y8f{bottom:924.475500px;}
.y175{bottom:926.388000px;}
.ye9{bottom:931.050000px;}
.y1a9{bottom:931.350000px;}
.y119{bottom:932.892000px;}
.ycc{bottom:936.772500px;}
.y6e{bottom:941.917500px;}
.y2d{bottom:943.347000px;}
.y174{bottom:947.310000px;}
.y11a{bottom:947.770500px;}
.ye8{bottom:951.375000px;}
.yac{bottom:952.660500px;}
.y118{bottom:952.921500px;}
.y135{bottom:955.368000px;}
.y2{bottom:955.587000px;}
.ycb{bottom:957.096000px;}
.y8e{bottom:958.248000px;}
.y2c{bottom:963.670500px;}
.y1a8{bottom:965.122500px;}
.y173{bottom:967.633500px;}
.ye7{bottom:971.698500px;}
.y6d{bottom:975.691500px;}
.yca{bottom:977.419500px;}
.y8d{bottom:978.573000px;}
.y2b{bottom:983.995500px;}
.yab{bottom:984.187500px;}
.y1{bottom:988.462500px;}
.y172{bottom:988.555500px;}
.y154{bottom:989.140500px;}
.ye6{bottom:992.022000px;}
.yc9{bottom:997.743000px;}
.y1a7{bottom:998.896500px;}
.y2a{bottom:1004.319000px;}
.y6c{bottom:1009.464000px;}
.y171{bottom:1009.476000px;}
.y8c{bottom:1012.345500px;}
.y194{bottom:1022.914500px;}
.y29{bottom:1024.642500px;}
.y153{bottom:1029.789000px;}
.y170{bottom:1030.398000px;}
.y8b{bottom:1032.669000px;}
.yc8{bottom:1034.271000px;}
.y6b{bottom:1043.238000px;}
.y28{bottom:1061.170500px;}
.y6a{bottom:1063.561500px;}
.hb{height:33.187496px;}
.h3{height:44.831700px;}
.h11{height:46.538221px;}
.h6{height:46.865494px;}
.h5{height:49.090950px;}
.h7{height:50.211840px;}
.h2{height:51.216077px;}
.h10{height:52.078950px;}
.h8{height:53.798400px;}
.he{height:56.941496px;}
.h9{height:60.211496px;}
.h4{height:60.254040px;}
.ha{height:62.178000px;}
.h15{height:62.889450px;}
.hd{height:64.557900px;}
.h14{height:66.027450px;}
.hf{height:67.126950px;}
.hc{height:70.365450px;}
.h1{height:73.027727px;}
.h13{height:89.094000px;}
.h12{height:93.988950px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xb{left:133.404000px;}
.x2{left:135.274500px;}
.x8{left:148.909500px;}
.xc{left:151.038000px;}
.x7{left:171.325500px;}
.x1{left:241.287000px;}
.x17{left:278.467500px;}
.x15{left:282.855000px;}
.x11{left:290.472000px;}
.x14{left:299.551500px;}
.x1c{left:324.130500px;}
.x1a{left:325.476000px;}
.x1b{left:326.680500px;}
.x19{left:346.999500px;}
.x18{left:352.917000px;}
.x4{left:355.663500px;}
.x16{left:376.909500px;}
.x5{left:381.330000px;}
.xd{left:386.925000px;}
.xe{left:400.971000px;}
.x3{left:410.113500px;}
.x6{left:426.123000px;}
.x12{left:450.819000px;}
.xa{left:454.909500px;}
.xf{left:482.131500px;}
.x10{left:496.329000px;}
.x13{left:551.341500px;}
@media print{
.vc{vertical-align:-131.952000pt;}
.v3{vertical-align:-15.488000pt;}
.v1{vertical-align:-9.008000pt;}
.v6{vertical-align:-6.480000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.656000pt;}
.v8{vertical-align:16.032000pt;}
.v7{vertical-align:21.114667pt;}
.v2{vertical-align:24.021333pt;}
.vd{vertical-align:26.810667pt;}
.v5{vertical-align:30.666667pt;}
.va{vertical-align:39.909333pt;}
.v4{vertical-align:55.269333pt;}
.vb{vertical-align:79.194667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000438pt;}
.ls21{letter-spacing:0.000455pt;}
.ls25{letter-spacing:0.000928pt;}
.ls1c{letter-spacing:0.001396pt;}
.ls13{letter-spacing:0.001416pt;}
.ls20{letter-spacing:0.001653pt;}
.ls3e{letter-spacing:0.001914pt;}
.ls6{letter-spacing:0.002395pt;}
.ls41{letter-spacing:0.002400pt;}
.ls47{letter-spacing:0.002405pt;}
.ls5f{letter-spacing:0.002717pt;}
.ls28{letter-spacing:0.004150pt;}
.ls1e{letter-spacing:0.004822pt;}
.ls5a{letter-spacing:0.005312pt;}
.ls7{letter-spacing:0.005771pt;}
.ls2e{letter-spacing:0.006750pt;}
.ls27{letter-spacing:1.130350pt;}
.ls3f{letter-spacing:2.652450pt;}
.ls39{letter-spacing:2.653258pt;}
.ls4d{letter-spacing:2.657146pt;}
.ls46{letter-spacing:2.657783pt;}
.ls33{letter-spacing:2.658591pt;}
.lsa{letter-spacing:3.315562pt;}
.ls5b{letter-spacing:3.354146pt;}
.ls4a{letter-spacing:5.105323pt;}
.ls59{letter-spacing:5.110656pt;}
.ls0{letter-spacing:5.279357pt;}
.ls1f{letter-spacing:5.314034pt;}
.ls5{letter-spacing:5.779359pt;}
.lsf{letter-spacing:5.784692pt;}
.ls55{letter-spacing:5.972958pt;}
.ls3c{letter-spacing:5.974266pt;}
.ls56{letter-spacing:6.342755pt;}
.ls3{letter-spacing:8.078517pt;}
.ls3a{letter-spacing:8.083850pt;}
.ls34{letter-spacing:9.351739pt;}
.ls32{letter-spacing:9.357067pt;}
.ls35{letter-spacing:9.362400pt;}
.ls29{letter-spacing:11.163594pt;}
.ls38{letter-spacing:12.007925pt;}
.ls31{letter-spacing:12.013258pt;}
.ls42{letter-spacing:12.688545pt;}
.ls3d{letter-spacing:12.693878pt;}
.ls9{letter-spacing:12.925077pt;}
.ls49{letter-spacing:12.927477pt;}
.ls4e{letter-spacing:12.930405pt;}
.ls58{letter-spacing:15.585146pt;}
.ls48{letter-spacing:15.590479pt;}
.ls1b{letter-spacing:16.157077pt;}
.lsb{letter-spacing:16.159477pt;}
.ls40{letter-spacing:16.161396pt;}
.ls4b{letter-spacing:16.162405pt;}
.ls5e{letter-spacing:16.164321pt;}
.ls37{letter-spacing:16.164811pt;}
.ls4c{letter-spacing:18.033323pt;}
.ls2d{letter-spacing:18.615744pt;}
.ls36{letter-spacing:18.813258pt;}
.ls1d{letter-spacing:18.817146pt;}
.ls8{letter-spacing:18.902266pt;}
.ls11{letter-spacing:19.389077pt;}
.ls12{letter-spacing:19.394411pt;}
.ls2c{letter-spacing:19.395861pt;}
.ls18{letter-spacing:19.398730pt;}
.ls5c{letter-spacing:19.514146pt;}
.ls4f{letter-spacing:20.729657pt;}
.ls2f{letter-spacing:20.808692pt;}
.ls3b{letter-spacing:20.883359pt;}
.ls14{letter-spacing:21.059359pt;}
.ls26{letter-spacing:21.479368pt;}
.ls1a{letter-spacing:21.944692pt;}
.ls5d{letter-spacing:22.045258pt;}
.ls50{letter-spacing:22.049783pt;}
.ls44{letter-spacing:22.551744pt;}
.ls53{letter-spacing:22.863477pt;}
.ls19{letter-spacing:23.878730pt;}
.ls57{letter-spacing:23.907420pt;}
.ls15{letter-spacing:24.179360pt;}
.ls23{letter-spacing:24.706034pt;}
.ls22{letter-spacing:24.711368pt;}
.lse{letter-spacing:25.176692pt;}
.ls45{letter-spacing:25.208941pt;}
.ls16{letter-spacing:26.302026pt;}
.ls17{letter-spacing:27.464692pt;}
.ls2b{letter-spacing:27.470517pt;}
.ls10{letter-spacing:27.475850pt;}
.ls54{letter-spacing:27.977657pt;}
.ls43{letter-spacing:28.328692pt;}
.ls2a{letter-spacing:28.382520pt;}
.ls24{letter-spacing:28.574517pt;}
.ls4{letter-spacing:29.087976pt;}
.ls30{letter-spacing:29.090411pt;}
.ls52{letter-spacing:29.201421pt;}
.ls51{letter-spacing:29.386291pt;}
.lsd{letter-spacing:33.379850pt;}
.ls1{letter-spacing:830.760692pt;}
.ws8c{word-spacing:-58.181867pt;}
.wsbd{word-spacing:-45.163900pt;}
.ws60{word-spacing:-42.007308pt;}
.ws86{word-spacing:-42.002551pt;}
.ws48{word-spacing:-37.899668pt;}
.wsbe{word-spacing:-35.607302pt;}
.wsc2{word-spacing:-28.212450pt;}
.wsbc{word-spacing:-28.183296pt;}
.ws1a{word-spacing:-23.910333pt;}
.wsc4{word-spacing:-23.443479pt;}
.ws87{word-spacing:-18.583288pt;}
.ws4b{word-spacing:-16.162923pt;}
.ws19{word-spacing:-14.760588pt;}
.ws91{word-spacing:-12.543875pt;}
.wsb9{word-spacing:-3.358069pt;}
.wsa2{word-spacing:-3.246548pt;}
.ws3b{word-spacing:-2.606548pt;}
.ws9c{word-spacing:-2.404577pt;}
.ws95{word-spacing:-2.199275pt;}
.ws6d{word-spacing:-2.082911pt;}
.wsb7{word-spacing:-2.024729pt;}
.ws35{word-spacing:-1.792001pt;}
.ws50{word-spacing:-1.442910pt;}
.wsa5{word-spacing:-1.384728pt;}
.ws29{word-spacing:-1.268365pt;}
.ws3{word-spacing:-1.158318pt;}
.ws9a{word-spacing:-1.152001pt;}
.wsb5{word-spacing:-1.093819pt;}
.wsb6{word-spacing:-1.035637pt;}
.wsad{word-spacing:-0.919273pt;}
.ws61{word-spacing:-0.899558pt;}
.ws5f{word-spacing:-0.861092pt;}
.ws13{word-spacing:-0.520712pt;}
.ws4{word-spacing:-0.414444pt;}
.ws53{word-spacing:-0.395637pt;}
.ws54{word-spacing:-0.221091pt;}
.ws5e{word-spacing:-0.058182pt;}
.ws68{word-spacing:-0.046545pt;}
.ws8a{word-spacing:-0.042507pt;}
.wsc5{word-spacing:-0.020932pt;}
.ws1c{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.001888pt;}
.wsc6{word-spacing:0.011636pt;}
.ws5a{word-spacing:0.244364pt;}
.wsb3{word-spacing:0.302546pt;}
.ws76{word-spacing:0.360728pt;}
.ws57{word-spacing:0.418909pt;}
.ws1e{word-spacing:0.477091pt;}
.ws1f{word-spacing:0.593455pt;}
.ws10{word-spacing:0.701367pt;}
.ws34{word-spacing:0.884364pt;}
.ws14{word-spacing:0.913903pt;}
.ws8{word-spacing:1.020170pt;}
.ws4e{word-spacing:1.117092pt;}
.ws20{word-spacing:1.233456pt;}
.ws3c{word-spacing:1.408001pt;}
.wsa6{word-spacing:1.466183pt;}
.ws4f{word-spacing:1.524365pt;}
.ws2d{word-spacing:1.640729pt;}
.wsa4{word-spacing:1.698911pt;}
.ws80{word-spacing:1.757092pt;}
.ws79{word-spacing:1.815274pt;}
.wsb{word-spacing:1.870312pt;}
.wsa1{word-spacing:1.931638pt;}
.ws99{word-spacing:1.989820pt;}
.ws66{word-spacing:2.048002pt;}
.ws70{word-spacing:2.164365pt;}
.ws18{word-spacing:2.189115pt;}
.ws98{word-spacing:2.222547pt;}
.ws97{word-spacing:2.280729pt;}
.wsab{word-spacing:2.338911pt;}
.ws64{word-spacing:2.397093pt;}
.ws23{word-spacing:2.455275pt;}
.wsc7{word-spacing:2.513457pt;}
.ws2{word-spacing:2.561052pt;}
.ws39{word-spacing:2.746184pt;}
.ws5c{word-spacing:2.804366pt;}
.ws88{word-spacing:2.862548pt;}
.ws89{word-spacing:2.920730pt;}
.wsd{word-spacing:2.932989pt;}
.ws6e{word-spacing:2.978912pt;}
.wsae{word-spacing:3.037093pt;}
.ws9e{word-spacing:3.095275pt;}
.ws90{word-spacing:3.204608pt;}
.ws24{word-spacing:3.211639pt;}
.ws62{word-spacing:3.225121pt;}
.ws82{word-spacing:3.230461pt;}
.ws96{word-spacing:3.235213pt;}
.ws8e{word-spacing:3.252747pt;}
.ws47{word-spacing:3.269821pt;}
.ws1{word-spacing:3.443098pt;}
.ws31{word-spacing:3.677094pt;}
.ws1b{word-spacing:3.700367pt;}
.wsb0{word-spacing:3.735276pt;}
.ws3f{word-spacing:3.793458pt;}
.wsb4{word-spacing:3.909821pt;}
.ws3e{word-spacing:3.985067pt;}
.ws17{word-spacing:4.208202pt;}
.wsac{word-spacing:4.258913pt;}
.ws3a{word-spacing:4.317095pt;}
.ws8f{word-spacing:4.334906pt;}
.ws44{word-spacing:4.375276pt;}
.ws49{word-spacing:4.433458pt;}
.ws56{word-spacing:4.491640pt;}
.ws2b{word-spacing:4.608004pt;}
.wsf{word-spacing:4.633273pt;}
.ws27{word-spacing:4.666186pt;}
.ws7f{word-spacing:4.724368pt;}
.ws1d{word-spacing:4.782067pt;}
.ws22{word-spacing:4.782549pt;}
.ws0{word-spacing:4.811130pt;}
.ws30{word-spacing:5.073459pt;}
.ws2a{word-spacing:5.131641pt;}
.ws5b{word-spacing:5.189823pt;}
.ws7e{word-spacing:5.248004pt;}
.wsbb{word-spacing:5.306186pt;}
.ws52{word-spacing:5.364368pt;}
.ws46{word-spacing:5.422550pt;}
.ws81{word-spacing:5.538914pt;}
.ws78{word-spacing:5.597096pt;}
.ws36{word-spacing:5.771641pt;}
.ws55{word-spacing:5.829823pt;}
.ws69{word-spacing:5.853250pt;}
.wsb8{word-spacing:5.934464pt;}
.ws33{word-spacing:5.957823pt;}
.ws5{word-spacing:5.961620pt;}
.ws43{word-spacing:6.004369pt;}
.wsb2{word-spacing:6.120732pt;}
.ws7{word-spacing:6.121021pt;}
.ws2c{word-spacing:6.178914pt;}
.ws9f{word-spacing:6.237096pt;}
.ws32{word-spacing:6.365096pt;}
.ws6a{word-spacing:6.411642pt;}
.ws5d{word-spacing:6.528005pt;}
.ws12{word-spacing:6.546092pt;}
.wsa9{word-spacing:6.586187pt;}
.wsb1{word-spacing:6.644369pt;}
.ws9{word-spacing:6.695534pt;}
.wsa{word-spacing:6.705494pt;}
.ws15{word-spacing:6.758628pt;}
.wsa3{word-spacing:6.818915pt;}
.ws2e{word-spacing:6.877097pt;}
.ws7c{word-spacing:6.935279pt;}
.wsa0{word-spacing:7.051642pt;}
.ws59{word-spacing:7.168006pt;}
.wsc1{word-spacing:7.226188pt;}
.ws25{word-spacing:7.284370pt;}
.ws71{word-spacing:7.342552pt;}
.ws38{word-spacing:7.458915pt;}
.wsc{word-spacing:7.502502pt;}
.ws37{word-spacing:7.517097pt;}
.ws8b{word-spacing:7.575279pt;}
.ws8d{word-spacing:7.633461pt;}
.ws84{word-spacing:7.691643pt;}
.ws83{word-spacing:7.749825pt;}
.ws45{word-spacing:7.808007pt;}
.wsaf{word-spacing:7.866188pt;}
.ws77{word-spacing:8.040734pt;}
.ws75{word-spacing:8.098916pt;}
.ws58{word-spacing:8.273461pt;}
.ws28{word-spacing:8.331643pt;}
.wsaa{word-spacing:8.448007pt;}
.ws21{word-spacing:8.971644pt;}
.ws4a{word-spacing:9.146189pt;}
.ws3d{word-spacing:9.262553pt;}
.ws11{word-spacing:9.946660pt;}
.ws63{word-spacing:9.960736pt;}
.ws40{word-spacing:10.018917pt;}
.wse{word-spacing:10.022243pt;}
.ws6{word-spacing:10.159195pt;}
.ws93{word-spacing:10.368009pt;}
.ws92{word-spacing:10.387741pt;}
.ws94{word-spacing:10.426191pt;}
.ws9b{word-spacing:10.484372pt;}
.ws67{word-spacing:10.542554pt;}
.ws4d{word-spacing:10.658918pt;}
.ws6f{word-spacing:10.833464pt;}
.wsa7{word-spacing:10.949827pt;}
.ws9d{word-spacing:11.124373pt;}
.ws7a{word-spacing:11.182555pt;}
.ws2f{word-spacing:11.240737pt;}
.ws7b{word-spacing:11.357100pt;}
.ws6b{word-spacing:11.473464pt;}
.ws4c{word-spacing:11.589828pt;}
.ws16{word-spacing:11.646944pt;}
.ws26{word-spacing:11.880737pt;}
.wsc3{word-spacing:11.959893pt;}
.ws51{word-spacing:12.055283pt;}
.ws65{word-spacing:12.171647pt;}
.ws7d{word-spacing:12.520738pt;}
.wsba{word-spacing:12.648742pt;}
.ws42{word-spacing:12.654075pt;}
.ws6c{word-spacing:12.811647pt;}
.ws74{word-spacing:14.615285pt;}
.ws72{word-spacing:14.624427pt;}
.ws41{word-spacing:15.460712pt;}
.ws73{word-spacing:16.430559pt;}
.ws85{word-spacing:18.778528pt;}
.wsbf{word-spacing:18.862464pt;}
.wsa8{word-spacing:56.913502pt;}
._2{margin-left:-30.577269pt;}
._42{margin-left:-28.332823pt;}
._d{margin-left:-26.566933pt;}
._c{margin-left:-20.669074pt;}
._30{margin-left:-9.716372pt;}
._0{margin-left:-7.161606pt;}
._b{margin-left:-5.897859pt;}
._a{margin-left:-4.410111pt;}
._31{margin-left:-3.374548pt;}
._1{margin-left:-2.387202pt;}
._4{margin-left:-1.381481pt;}
._3{width:1.487748pt;}
._11{width:2.922363pt;}
._2c{width:4.358634pt;}
._44{width:5.760005pt;}
._2b{width:9.668286pt;}
._28{width:14.723503pt;}
._7{width:15.723803pt;}
._12{width:16.615613pt;}
._5{width:18.221094pt;}
._14{width:19.868244pt;}
._27{width:20.772672pt;}
._6{width:22.635027pt;}
._9{width:24.012686pt;}
._20{width:25.362506pt;}
._f{width:26.354398pt;}
._21{width:27.405405pt;}
._16{width:29.195773pt;}
._26{width:30.198134pt;}
._22{width:31.235351pt;}
._8{width:32.730462pt;}
._2e{width:34.320213pt;}
._10{width:35.223932pt;}
._25{width:36.716249pt;}
._1f{width:37.721373pt;}
._41{width:39.738215pt;}
._2f{width:40.750543pt;}
._24{width:42.067235pt;}
._29{width:43.508325pt;}
._e{width:44.526180pt;}
._2d{width:46.264680pt;}
._13{width:50.302484pt;}
._23{width:51.363065pt;}
._2a{width:52.446842pt;}
._15{width:53.818227pt;}
._43{width:58.181867pt;}
._3d{width:83.083706pt;}
._1e{width:86.077200pt;}
._3e{width:99.783647pt;}
._3a{width:115.301120pt;}
._40{width:175.492950pt;}
._33{width:195.248339pt;}
._39{width:242.129300pt;}
._3c{width:246.566247pt;}
._3b{width:256.726993pt;}
._1a{width:263.055234pt;}
._3f{width:277.872029pt;}
._37{width:339.191704pt;}
._34{width:341.829609pt;}
._38{width:353.661411pt;}
._32{width:390.837903pt;}
._36{width:393.943107pt;}
._35{width:521.203745pt;}
._1b{width:790.312392pt;}
._18{width:833.687967pt;}
._17{width:892.498124pt;}
._1c{width:908.860685pt;}
._19{width:1015.876883pt;}
._1d{width:1061.852717pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y26{bottom:96.000000pt;}
.y152{bottom:103.036000pt;}
.y8a{bottom:113.132000pt;}
.y69{bottom:114.065333pt;}
.y193{bottom:115.332000pt;}
.y25{bottom:117.197333pt;}
.yaa{bottom:118.010667pt;}
.y134{bottom:125.444000pt;}
.y89{bottom:131.197333pt;}
.yc7{bottom:132.132000pt;}
.y151{bottom:133.057333pt;}
.ya9{bottom:136.076000pt;}
.y24{bottom:138.393333pt;}
.y68{bottom:143.242667pt;}
.y192{bottom:145.353333pt;}
.y88{bottom:149.262667pt;}
.y133{bottom:157.429333pt;}
.y105{bottom:157.594667pt;}
.y23{bottom:159.590667pt;}
.y150{bottom:163.077333pt;}
.yc6{bottom:163.134667pt;}
.y16f{bottom:163.793333pt;}
.y4f{bottom:164.525333pt;}
.ya8{bottom:166.097333pt;}
.y87{bottom:167.328000pt;}
.y67{bottom:171.156000pt;}
.y191{bottom:175.373333pt;}
.y104{bottom:175.661333pt;}
.y1a6{bottom:178.649333pt;}
.y22{bottom:180.788000pt;}
.y14f{bottom:181.144000pt;}
.y1c2{bottom:182.532000pt;}
.y4e{bottom:182.590667pt;}
.y117{bottom:183.669333pt;}
.y86{bottom:185.394667pt;}
.ye5{bottom:188.982667pt;}
.y132{bottom:189.414667pt;}
.yc5{bottom:191.158667pt;}
.y190{bottom:193.438667pt;}
.y103{bottom:193.726667pt;}
.y16e{bottom:193.814667pt;}
.ya7{bottom:196.117333pt;}
.y1a5{bottom:196.714667pt;}
.y66{bottom:198.614667pt;}
.y14e{bottom:199.209333pt;}
.y1c1{bottom:200.597333pt;}
.y4d{bottom:200.656000pt;}
.y116{bottom:201.734667pt;}
.y21{bottom:201.984000pt;}
.ye4{bottom:207.048000pt;}
.y102{bottom:211.792000pt;}
.y131{bottom:216.873333pt;}
.y85{bottom:217.864000pt;}
.y4c{bottom:218.721333pt;}
.yc4{bottom:219.182667pt;}
.y20{bottom:223.181333pt;}
.y18f{bottom:223.460000pt;}
.y16d{bottom:223.834667pt;}
.ya6{bottom:226.138667pt;}
.y1c0{bottom:226.638667pt;}
.y14d{bottom:226.668000pt;}
.y1a4{bottom:226.736000pt;}
.y101{bottom:229.857333pt;}
.y115{bottom:231.754667pt;}
.y4b{bottom:236.786667pt;}
.ye3{bottom:237.068000pt;}
.y65{bottom:237.168000pt;}
.yc3{bottom:244.212000pt;}
.y1f{bottom:244.378667pt;}
.y1bf{bottom:246.457333pt;}
.y18e{bottom:253.480000pt;}
.y16c{bottom:253.856000pt;}
.y4a{bottom:254.853333pt;}
.ye2{bottom:255.133333pt;}
.y130{bottom:255.714667pt;}
.ya5{bottom:256.158667pt;}
.y1a3{bottom:256.756000pt;}
.y114{bottom:261.776000pt;}
.y84{bottom:263.693333pt;}
.y14c{bottom:265.618667pt;}
.y64{bottom:266.345333pt;}
.y100{bottom:267.848000pt;}
.yc2{bottom:269.241333pt;}
.y16b{bottom:271.921333pt;}
.y1be{bottom:272.497333pt;}
.y49{bottom:272.918667pt;}
.ya4{bottom:274.224000pt;}
.y1e{bottom:276.848000pt;}
.y18d{bottom:280.940000pt;}
.y83{bottom:281.758667pt;}
.y14b{bottom:283.684000pt;}
.ye1{bottom:285.154667pt;}
.yff{bottom:285.914667pt;}
.y1a2{bottom:286.777333pt;}
.y12f{bottom:287.700000pt;}
.y16a{bottom:289.986667pt;}
.y48{bottom:290.984000pt;}
.y113{bottom:291.796000pt;}
.ya3{bottom:292.290667pt;}
.y63{bottom:295.522667pt;}
.yc1{bottom:297.265333pt;}
.y82{bottom:299.824000pt;}
.y14a{bottom:301.750667pt;}
.y1bd{bottom:302.518667pt;}
.ye0{bottom:303.220000pt;}
.y169{bottom:308.052000pt;}
.y47{bottom:309.049333pt;}
.yfe{bottom:315.934667pt;}
.y1a1{bottom:316.797333pt;}
.y12e{bottom:317.144000pt;}
.y81{bottom:317.889333pt;}
.ya2{bottom:319.749333pt;}
.y18c{bottom:319.890667pt;}
.y112{bottom:321.817333pt;}
.y62{bottom:323.434667pt;}
.y1d{bottom:323.858667pt;}
.yc0{bottom:325.289333pt;}
.y46{bottom:327.114667pt;}
.y149{bottom:331.770667pt;}
.y1bc{bottom:332.540000pt;}
.ydf{bottom:333.241333pt;}
.y12d{bottom:335.209333pt;}
.y18b{bottom:337.956000pt;}
.y168{bottom:338.073333pt;}
.y1c{bottom:339.798667pt;}
.y61{bottom:341.500000pt;}
.y80{bottom:343.925333pt;}
.y45{bottom:345.181333pt;}
.yfd{bottom:345.956000pt;}
.y1a0{bottom:346.818667pt;}
.y148{bottom:349.836000pt;}
.ybf{bottom:350.318667pt;}
.yde{bottom:351.306667pt;}
.y111{bottom:351.838667pt;}
.y1b{bottom:355.738667pt;}
.y18a{bottom:356.021333pt;}
.ya1{bottom:358.700000pt;}
.y60{bottom:359.566667pt;}
.y7f{bottom:361.990667pt;}
.y1bb{bottom:362.560000pt;}
.y44{bottom:363.246667pt;}
.y12c{bottom:365.000000pt;}
.y167{bottom:368.093333pt;}
.ybe{bottom:368.384000pt;}
.y110{bottom:369.904000pt;}
.y1a{bottom:371.678667pt;}
.y189{bottom:374.086667pt;}
.yfc{bottom:375.976000pt;}
.ya0{bottom:376.765333pt;}
.y19f{bottom:376.838667pt;}
.y147{bottom:379.857333pt;}
.y43{bottom:381.312000pt;}
.ydd{bottom:381.328000pt;}
.y12b{bottom:383.065333pt;}
.y5f{bottom:387.025333pt;}
.y19{bottom:387.620000pt;}
.y10f{bottom:387.969333pt;}
.y1ba{bottom:390.020000pt;}
.y7e{bottom:392.012000pt;}
.y188{bottom:392.153333pt;}
.yfb{bottom:394.041333pt;}
.y19e{bottom:394.905333pt;}
.ybd{bottom:395.844000pt;}
.y166{bottom:398.114667pt;}
.y42{bottom:399.377333pt;}
.ydc{bottom:399.393333pt;}
.y18{bottom:403.560000pt;}
.y9f{bottom:406.786667pt;}
.y146{bottom:409.877333pt;}
.y187{bottom:410.218667pt;}
.yfa{bottom:412.108000pt;}
.y12a{bottom:412.856000pt;}
.y10e{bottom:415.429333pt;}
.y41{bottom:417.442667pt;}
.y17{bottom:419.500000pt;}
.y1d0{bottom:420.437333pt;}
.y7d{bottom:422.033333pt;}
.y19d{bottom:422.364000pt;}
.y5e{bottom:425.578667pt;}
.ydb{bottom:426.852000pt;}
.y165{bottom:428.136000pt;}
.y186{bottom:428.284000pt;}
.y1b9{bottom:428.970667pt;}
.yf9{bottom:430.173333pt;}
.ybc{bottom:433.853333pt;}
.y16{bottom:435.440000pt;}
.y40{bottom:435.509333pt;}
.y9e{bottom:436.806667pt;}
.y145{bottom:439.898667pt;}
.y129{bottom:442.298667pt;}
.y164{bottom:446.201333pt;}
.y185{bottom:446.349333pt;}
.y1b8{bottom:447.036000pt;}
.y1cf{bottom:450.457333pt;}
.y15{bottom:451.380000pt;}
.ybb{bottom:451.918667pt;}
.y7c{bottom:452.053333pt;}
.y3f{bottom:453.574667pt;}
.y10d{bottom:454.378667pt;}
.y5d{bottom:454.756000pt;}
.yf8{bottom:457.632000pt;}
.y144{bottom:457.964000pt;}
.y19c{bottom:458.288000pt;}
.y128{bottom:460.365333pt;}
.y163{bottom:464.266667pt;}
.y184{bottom:464.414667pt;}
.yda{bottom:465.802667pt;}
.y9d{bottom:466.828000pt;}
.y14{bottom:467.320000pt;}
.y3e{bottom:471.640000pt;}
.y10c{bottom:472.445333pt;}
.y143{bottom:476.029333pt;}
.yba{bottom:476.948000pt;}
.y1b7{bottom:477.056000pt;}
.y1ce{bottom:480.478667pt;}
.y7b{bottom:482.074667pt;}
.y13{bottom:483.261333pt;}
.y5c{bottom:483.933333pt;}
.y127{bottom:487.824000pt;}
.y3d{bottom:489.705333pt;}
.y183{bottom:491.874667pt;}
.y162{bottom:494.288000pt;}
.yd9{bottom:495.824000pt;}
.yf7{bottom:496.582667pt;}
.y9c{bottom:496.849333pt;}
.y12{bottom:499.201333pt;}
.y5b{bottom:501.998667pt;}
.y19b{bottom:504.117333pt;}
.yb9{bottom:504.972000pt;}
.y10b{bottom:505.122667pt;}
.y142{bottom:506.050667pt;}
.y1b6{bottom:507.077333pt;}
.y3c{bottom:507.770667pt;}
.y1cd{bottom:510.498667pt;}
.y7a{bottom:512.094667pt;}
.yf6{bottom:514.648000pt;}
.y9b{bottom:514.914667pt;}
.y19a{bottom:522.182667pt;}
.y141{bottom:524.116000pt;}
.y161{bottom:524.308000pt;}
.y1b5{bottom:525.142667pt;}
.y3b{bottom:525.837333pt;}
.yd8{bottom:525.844000pt;}
.y126{bottom:526.665333pt;}
.y182{bottom:527.798667pt;}
.y11{bottom:528.425333pt;}
.y1cc{bottom:528.565333pt;}
.y5a{bottom:529.910667pt;}
.y79{bottom:530.160000pt;}
.y9a{bottom:532.980000pt;}
.yb8{bottom:532.996000pt;}
.y10a{bottom:537.800000pt;}
.y10{bottom:544.365333pt;}
.yf5{bottom:544.669333pt;}
.y125{bottom:544.732000pt;}
.y59{bottom:547.977333pt;}
.y199{bottom:548.218667pt;}
.y99{bottom:551.045333pt;}
.y140{bottom:554.137333pt;}
.y160{bottom:554.329333pt;}
.y1b4{bottom:555.164000pt;}
.y3a{bottom:555.857333pt;}
.yd7{bottom:555.865333pt;}
.y78{bottom:557.620000pt;}
.yb7{bottom:558.025333pt;}
.y1cb{bottom:558.585333pt;}
.yf{bottom:560.305333pt;}
.yf4{bottom:562.734667pt;}
.y198{bottom:566.284000pt;}
.y181{bottom:573.628000pt;}
.y109{bottom:573.930667pt;}
.y124{bottom:574.176000pt;}
.y58{bottom:575.436000pt;}
.yb6{bottom:576.090667pt;}
.ye{bottom:576.245333pt;}
.y98{bottom:578.505333pt;}
.y13f{bottom:584.157333pt;}
.y15f{bottom:584.349333pt;}
.y1b3{bottom:585.184000pt;}
.y39{bottom:585.878667pt;}
.yd6{bottom:585.885333pt;}
.y1ca{bottom:588.606667pt;}
.y180{bottom:591.693333pt;}
.yd{bottom:592.185333pt;}
.yf3{bottom:592.756000pt;}
.y77{bottom:596.570667pt;}
.y15e{bottom:602.414667pt;}
.y1b2{bottom:603.249333pt;}
.yb5{bottom:603.550667pt;}
.yd5{bottom:603.952000pt;}
.y123{bottom:603.965333pt;}
.yc{bottom:608.125333pt;}
.y17f{bottom:609.758667pt;}
.y57{bottom:613.989333pt;}
.y13e{bottom:614.178667pt;}
.y76{bottom:614.636000pt;}
.y38{bottom:615.898667pt;}
.y1c9{bottom:616.065333pt;}
.y97{bottom:617.456000pt;}
.y15d{bottom:620.481333pt;}
.yf2{bottom:622.776000pt;}
.yb{bottom:624.066667pt;}
.y17e{bottom:627.824000pt;}
.y1b1{bottom:630.709333pt;}
.y13d{bottom:632.244000pt;}
.y122{bottom:633.756000pt;}
.yd4{bottom:633.972000pt;}
.y96{bottom:635.521333pt;}
.y197{bottom:638.546667pt;}
.ya{bottom:640.006667pt;}
.yb4{bottom:641.560000pt;}
.y56{bottom:643.166667pt;}
.y75{bottom:644.657333pt;}
.y17d{bottom:645.889333pt;}
.y37{bottom:645.920000pt;}
.y15c{bottom:647.940000pt;}
.y13c{bottom:650.309333pt;}
.y121{bottom:651.821333pt;}
.yf1{bottom:652.797333pt;}
.y1c8{bottom:655.016000pt;}
.y9{bottom:655.946667pt;}
.yb3{bottom:659.625333pt;}
.y17c{bottom:663.956000pt;}
.yd3{bottom:663.993333pt;}
.y95{bottom:665.541333pt;}
.y196{bottom:666.005333pt;}
.y1b0{bottom:669.660000pt;}
.yf0{bottom:670.862667pt;}
.y8{bottom:671.886667pt;}
.y55{bottom:672.344000pt;}
.y1c7{bottom:673.081333pt;}
.y74{bottom:674.677333pt;}
.y36{bottom:675.940000pt;}
.y13b{bottom:677.769333pt;}
.y120{bottom:681.265333pt;}
.yb2{bottom:684.654667pt;}
.y15b{bottom:686.890667pt;}
.y1af{bottom:687.725333pt;}
.y7{bottom:687.826667pt;}
.yef{bottom:688.928000pt;}
.y17b{bottom:691.414667pt;}
.y73{bottom:692.742667pt;}
.y35{bottom:694.006667pt;}
.yd2{bottom:694.013333pt;}
.y94{bottom:695.562667pt;}
.y11f{bottom:699.330667pt;}
.y54{bottom:700.256000pt;}
.y1c6{bottom:704.542667pt;}
.y6{bottom:704.569333pt;}
.y15a{bottom:704.956000pt;}
.y34{bottom:712.072000pt;}
.yd1{bottom:712.080000pt;}
.yb1{bottom:712.678667pt;}
.y1ae{bottom:714.425333pt;}
.yee{bottom:716.388000pt;}
.y13a{bottom:716.720000pt;}
.y53{bottom:718.321333pt;}
.y72{bottom:722.764000pt;}
.y159{bottom:723.021333pt;}
.y108{bottom:724.034667pt;}
.y93{bottom:725.582667pt;}
.y11e{bottom:726.789333pt;}
.y1c5{bottom:728.130667pt;}
.y33{bottom:730.137333pt;}
.y17a{bottom:732.065333pt;}
.y139{bottom:734.785333pt;}
.y52{bottom:736.388000pt;}
.yd0{bottom:739.538667pt;}
.yb0{bottom:740.702667pt;}
.y158{bottom:741.088000pt;}
.y1ad{bottom:746.438667pt;}
.y1ac{bottom:747.102667pt;}
.y32{bottom:748.202667pt;}
.y179{bottom:750.130667pt;}
.y71{bottom:752.785333pt;}
.y138{bottom:752.850667pt;}
.y107{bottom:754.056000pt;}
.y51{bottom:754.453333pt;}
.yed{bottom:755.338667pt;}
.y92{bottom:755.604000pt;}
.y1c4{bottom:759.278667pt;}
.y11d{bottom:765.632000pt;}
.y5{bottom:766.113333pt;}
.y31{bottom:766.268000pt;}
.yaf{bottom:768.726667pt;}
.y178{bottom:768.728000pt;}
.y70{bottom:770.850667pt;}
.y137{bottom:770.916000pt;}
.y157{bottom:771.108000pt;}
.yec{bottom:773.404000pt;}
.y91{bottom:773.669333pt;}
.ycf{bottom:778.489333pt;}
.y1ab{bottom:779.780000pt;}
.y106{bottom:781.514667pt;}
.y50{bottom:781.912000pt;}
.y11c{bottom:783.697333pt;}
.y30{bottom:784.334667pt;}
.y4{bottom:784.710667pt;}
.y177{bottom:786.793333pt;}
.y195{bottom:789.173333pt;}
.yeb{bottom:791.469333pt;}
.yae{bottom:793.756000pt;}
.yce{bottom:796.554667pt;}
.y1c3{bottom:797.845333pt;}
.y6f{bottom:798.309333pt;}
.y156{bottom:801.129333pt;}
.y11b{bottom:801.762667pt;}
.y2f{bottom:802.400000pt;}
.y136{bottom:803.385333pt;}
.y90{bottom:803.690667pt;}
.y176{bottom:805.390667pt;}
.yea{bottom:809.534667pt;}
.y1aa{bottom:809.801333pt;}
.ycd{bottom:814.620000pt;}
.yad{bottom:818.785333pt;}
.y155{bottom:819.194667pt;}
.y3{bottom:820.186667pt;}
.y2e{bottom:820.465333pt;}
.y8f{bottom:821.756000pt;}
.y175{bottom:823.456000pt;}
.ye9{bottom:827.600000pt;}
.y1a9{bottom:827.866667pt;}
.y119{bottom:829.237333pt;}
.ycc{bottom:832.686667pt;}
.y6e{bottom:837.260000pt;}
.y2d{bottom:838.530667pt;}
.y174{bottom:842.053333pt;}
.y11a{bottom:842.462667pt;}
.ye8{bottom:845.666667pt;}
.yac{bottom:846.809333pt;}
.y118{bottom:847.041333pt;}
.y135{bottom:849.216000pt;}
.y2{bottom:849.410667pt;}
.ycb{bottom:850.752000pt;}
.y8e{bottom:851.776000pt;}
.y2c{bottom:856.596000pt;}
.y1a8{bottom:857.886667pt;}
.y173{bottom:860.118667pt;}
.ye7{bottom:863.732000pt;}
.y6d{bottom:867.281333pt;}
.yca{bottom:868.817333pt;}
.y8d{bottom:869.842667pt;}
.y2b{bottom:874.662667pt;}
.yab{bottom:874.833333pt;}
.y1{bottom:878.633333pt;}
.y172{bottom:878.716000pt;}
.y154{bottom:879.236000pt;}
.ye6{bottom:881.797333pt;}
.yc9{bottom:886.882667pt;}
.y1a7{bottom:887.908000pt;}
.y2a{bottom:892.728000pt;}
.y6c{bottom:897.301333pt;}
.y171{bottom:897.312000pt;}
.y8c{bottom:899.862667pt;}
.y194{bottom:909.257333pt;}
.y29{bottom:910.793333pt;}
.y153{bottom:915.368000pt;}
.y170{bottom:915.909333pt;}
.y8b{bottom:917.928000pt;}
.yc8{bottom:919.352000pt;}
.y6b{bottom:927.322667pt;}
.y28{bottom:943.262667pt;}
.y6a{bottom:945.388000pt;}
.hb{height:29.499997pt;}
.h3{height:39.850400pt;}
.h11{height:41.367307pt;}
.h6{height:41.658217pt;}
.h5{height:43.636400pt;}
.h7{height:44.632747pt;}
.h2{height:45.525402pt;}
.h10{height:46.292400pt;}
.h8{height:47.820800pt;}
.he{height:50.614663pt;}
.h9{height:53.521330pt;}
.h4{height:53.559147pt;}
.ha{height:55.269333pt;}
.h15{height:55.901733pt;}
.hd{height:57.384800pt;}
.h14{height:58.691067pt;}
.hf{height:59.668400pt;}
.hc{height:62.547067pt;}
.h1{height:64.913535pt;}
.h13{height:79.194667pt;}
.h12{height:83.545733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xb{left:118.581333pt;}
.x2{left:120.244000pt;}
.x8{left:132.364000pt;}
.xc{left:134.256000pt;}
.x7{left:152.289333pt;}
.x1{left:214.477333pt;}
.x17{left:247.526667pt;}
.x15{left:251.426667pt;}
.x11{left:258.197333pt;}
.x14{left:266.268000pt;}
.x1c{left:288.116000pt;}
.x1a{left:289.312000pt;}
.x1b{left:290.382667pt;}
.x19{left:308.444000pt;}
.x18{left:313.704000pt;}
.x4{left:316.145333pt;}
.x16{left:335.030667pt;}
.x5{left:338.960000pt;}
.xd{left:343.933333pt;}
.xe{left:356.418667pt;}
.x3{left:364.545333pt;}
.x6{left:378.776000pt;}
.x12{left:400.728000pt;}
.xa{left:404.364000pt;}
.xf{left:428.561333pt;}
.x10{left:441.181333pt;}
.x13{left:490.081333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  