
    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_94a0d74488d8fe1bf11488d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_dde3d7cb4d886c94ca5d322e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_dc9eb43f6cb7faef5c2fa8f3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b279f41546ecb80cf93df428.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.810000;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_6475106aad5ac60993c11ba8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_3dece5849384f62f2cce31f1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ba0ccd9aa64b6bd1fab5978b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_de09917c94b24b433a42fcd0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bebe56292a7ecaaf9d4b7d91.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.782000;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_996d29ba284a1a5e1287c770.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.693000;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_f641fe9edb6dff7556bab156.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.049000;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_ac74777a033b29f012061f19.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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_ebecdceb0db09ecd2017cd4e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;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_fa4786c1701c6b1e7d4e15f3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-14.946000px;}
.v7{vertical-align:-12.828000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.610000px;}
.v2{vertical-align:23.538000px;}
.v5{vertical-align:40.440000px;}
.v6{vertical-align:97.788000px;}
.ls5{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000065px;}
.lsd{letter-spacing:0.000312px;}
.ls2d{letter-spacing:0.000564px;}
.ls1e{letter-spacing:0.000648px;}
.ls0{letter-spacing:0.001002px;}
.ls12{letter-spacing:0.001140px;}
.ls18{letter-spacing:0.001923px;}
.ls20{letter-spacing:0.002338px;}
.ls2a{letter-spacing:0.002387px;}
.ls7{letter-spacing:0.002646px;}
.ls34{letter-spacing:0.002685px;}
.ls2e{letter-spacing:0.003269px;}
.ls15{letter-spacing:0.007923px;}
.ls27{letter-spacing:1.661781px;}
.ls8{letter-spacing:2.984525px;}
.ls16{letter-spacing:2.985954px;}
.ls30{letter-spacing:2.988615px;}
.ls9{letter-spacing:2.990525px;}
.ls1a{letter-spacing:2.991954px;}
.lse{letter-spacing:4.490450px;}
.ls1f{letter-spacing:5.974363px;}
.ls1d{letter-spacing:5.980363px;}
.lsa{letter-spacing:7.472450px;}
.ls22{letter-spacing:7.474454px;}
.lsb{letter-spacing:12.086338px;}
.ls2c{letter-spacing:13.284538px;}
.ls36{letter-spacing:13.449600px;}
.ls35{letter-spacing:15.661207px;}
.ls2b{letter-spacing:16.266615px;}
.ls29{letter-spacing:17.138685px;}
.ls10{letter-spacing:17.983140px;}
.ls4{letter-spacing:18.709763px;}
.ls3{letter-spacing:19.546621px;}
.ls25{letter-spacing:20.100538px;}
.ls23{letter-spacing:20.718305px;}
.lsf{letter-spacing:21.542338px;}
.ls14{letter-spacing:21.775690px;}
.ls19{letter-spacing:24.431251px;}
.ls1b{letter-spacing:25.431954px;}
.ls1c{letter-spacing:25.439251px;}
.ls11{letter-spacing:26.041140px;}
.ls13{letter-spacing:26.298312px;}
.ls28{letter-spacing:26.772538px;}
.ls21{letter-spacing:27.221602px;}
.ls2{letter-spacing:27.377225px;}
.ls1{letter-spacing:27.437000px;}
.ls24{letter-spacing:28.404065px;}
.ls33{letter-spacing:29.400615px;}
.ls32{letter-spacing:29.406615px;}
.ls26{letter-spacing:32.448065px;}
.lsc{letter-spacing:32.946312px;}
.ls17{letter-spacing:35.366525px;}
.ls6{letter-spacing:50.834646px;}
.ls31{letter-spacing:252.434338px;}
.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;}
}
.wsf1{word-spacing:-17.932800px;}
.ws15{word-spacing:-14.943900px;}
.wsab{word-spacing:-13.449600px;}
.ws7d{word-spacing:-3.466985px;}
.ws1c{word-spacing:-3.227882px;}
.wsaa{word-spacing:-3.174106px;}
.ws6c{word-spacing:-3.120307px;}
.wsdf{word-spacing:-3.108331px;}
.ws14{word-spacing:-2.929004px;}
.ws7{word-spacing:-2.869229px;}
.wse5{word-spacing:-2.809453px;}
.wsa{word-spacing:-2.749678px;}
.wse0{word-spacing:-2.689902px;}
.ws6d{word-spacing:-2.636122px;}
.wsa6{word-spacing:-2.630126px;}
.wscb{word-spacing:-2.570351px;}
.ws48{word-spacing:-2.510575px;}
.ws66{word-spacing:-2.450800px;}
.wsb{word-spacing:-2.391024px;}
.ws61{word-spacing:-2.271473px;}
.ws35{word-spacing:-2.211697px;}
.wsd7{word-spacing:-2.151936px;}
.wsae{word-spacing:-2.151922px;}
.ws6f{word-spacing:-2.098138px;}
.ws4e{word-spacing:-2.092146px;}
.ws12d{word-spacing:-2.044339px;}
.wscd{word-spacing:-2.032370px;}
.ws2e{word-spacing:-1.972595px;}
.wsca{word-spacing:-1.912819px;}
.ws26{word-spacing:-1.793268px;}
.ws122{word-spacing:-1.721549px;}
.wsa4{word-spacing:-1.673717px;}
.ws9e{word-spacing:-1.554166px;}
.wsac{word-spacing:-1.494390px;}
.ws100{word-spacing:-1.452557px;}
.ws9f{word-spacing:-1.374839px;}
.ws6b{word-spacing:-1.344960px;}
.wsb3{word-spacing:-1.315063px;}
.ws67{word-spacing:-1.255288px;}
.wsd9{word-spacing:-1.237363px;}
.ws2d{word-spacing:-1.195512px;}
.ws2f{word-spacing:-1.135736px;}
.ws98{word-spacing:-0.956410px;}
.wsb0{word-spacing:-0.896634px;}
.ws99{word-spacing:-0.836858px;}
.ws11d{word-spacing:-0.806976px;}
.ws12{word-spacing:-0.777083px;}
.ws128{word-spacing:-0.753178px;}
.wsa0{word-spacing:-0.717307px;}
.ws9{word-spacing:-0.597756px;}
.ws11c{word-spacing:-0.537984px;}
.wse3{word-spacing:-0.537980px;}
.ws2b{word-spacing:-0.478205px;}
.ws92{word-spacing:-0.457199px;}
.wse{word-spacing:-0.418429px;}
.wsce{word-spacing:-0.358654px;}
.ws103{word-spacing:-0.322790px;}
.ws13{word-spacing:-0.239102px;}
.wsde{word-spacing:-0.179327px;}
.ws80{word-spacing:-0.161395px;}
.ws16{word-spacing:-0.119551px;}
.wsc2{word-spacing:-0.107597px;}
.ws77{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.ws79{word-spacing:-0.041843px;}
.wsb8{word-spacing:-0.002683px;}
.ws0{word-spacing:0.000000px;}
.ws68{word-spacing:0.059776px;}
.ws1b{word-spacing:0.119551px;}
.ws2a{word-spacing:0.179327px;}
.wse7{word-spacing:0.239102px;}
.wsf{word-spacing:0.298878px;}
.ws84{word-spacing:0.358654px;}
.ws63{word-spacing:0.418429px;}
.wsba{word-spacing:0.478205px;}
.ws31{word-spacing:0.537980px;}
.ws53{word-spacing:0.597756px;}
.wsfc{word-spacing:0.645581px;}
.ws49{word-spacing:0.717307px;}
.ws109{word-spacing:0.753178px;}
.ws4a{word-spacing:0.777083px;}
.wsc3{word-spacing:0.896634px;}
.ws19{word-spacing:0.956410px;}
.ws11a{word-spacing:0.968371px;}
.ws50{word-spacing:1.016185px;}
.ws4f{word-spacing:1.075961px;}
.ws6a{word-spacing:1.075968px;}
.ws119{word-spacing:1.129766px;}
.ws54{word-spacing:1.135736px;}
.ws39{word-spacing:1.195512px;}
.ws8{word-spacing:1.255288px;}
.ws1a{word-spacing:1.315063px;}
.wsf5{word-spacing:1.344960px;}
.wsf9{word-spacing:1.398758px;}
.ws130{word-spacing:1.452557px;}
.ws56{word-spacing:1.554166px;}
.wsa9{word-spacing:1.560154px;}
.ws86{word-spacing:1.613941px;}
.wsb4{word-spacing:1.663466px;}
.ws30{word-spacing:1.733492px;}
.ws114{word-spacing:1.775347px;}
.ws8f{word-spacing:1.793268px;}
.wsf6{word-spacing:1.829146px;}
.wse9{word-spacing:2.032370px;}
.wsf4{word-spacing:2.044339px;}
.ws8c{word-spacing:2.151922px;}
.ws90{word-spacing:2.271473px;}
.ws37{word-spacing:2.331248px;}
.ws1f{word-spacing:2.391024px;}
.ws4c{word-spacing:2.510575px;}
.wse8{word-spacing:2.630126px;}
.wsfe{word-spacing:2.636122px;}
.ws24{word-spacing:2.689902px;}
.wsea{word-spacing:2.749678px;}
.ws12b{word-spacing:2.797517px;}
.ws57{word-spacing:2.809453px;}
.ws65{word-spacing:2.929004px;}
.wsf8{word-spacing:2.958912px;}
.ws7e{word-spacing:3.048556px;}
.ws88{word-spacing:3.108331px;}
.ws2c{word-spacing:3.168107px;}
.ws127{word-spacing:3.174106px;}
.wsb2{word-spacing:3.227882px;}
.ws52{word-spacing:3.347434px;}
.ws120{word-spacing:3.389299px;}
.ws3f{word-spacing:3.407209px;}
.ws105{word-spacing:3.496896px;}
.ws58{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.wsb9{word-spacing:3.646312px;}
.wsfd{word-spacing:3.658291px;}
.wse2{word-spacing:3.706087px;}
.ws3e{word-spacing:3.765863px;}
.ws12c{word-spacing:3.765888px;}
.ws95{word-spacing:3.825638px;}
.ws8d{word-spacing:3.885414px;}
.ws33{word-spacing:3.945190px;}
.ws34{word-spacing:4.004965px;}
.ws6e{word-spacing:4.034880px;}
.ws59{word-spacing:4.064741px;}
.ws3{word-spacing:4.124516px;}
.wsaf{word-spacing:4.184292px;}
.ws32{word-spacing:4.244068px;}
.ws11{word-spacing:4.303843px;}
.ws78{word-spacing:4.363619px;}
.ws25{word-spacing:4.423394px;}
.ws106{word-spacing:4.519066px;}
.ws91{word-spacing:4.542946px;}
.ws3d{word-spacing:4.602721px;}
.wse1{word-spacing:4.722272px;}
.ws101{word-spacing:4.734259px;}
.ws28{word-spacing:4.841824px;}
.ws10a{word-spacing:4.841856px;}
.wsd{word-spacing:4.901599px;}
.ws22{word-spacing:4.961375px;}
.ws11f{word-spacing:5.003251px;}
.ws51{word-spacing:5.080926px;}
.ws129{word-spacing:5.110848px;}
.ws45{word-spacing:5.140702px;}
.ws108{word-spacing:5.218445px;}
.ws69{word-spacing:5.260253px;}
.wsa3{word-spacing:5.379804px;}
.ws102{word-spacing:5.379840px;}
.ws117{word-spacing:5.433638px;}
.ws1e{word-spacing:5.499355px;}
.ws70{word-spacing:5.559131px;}
.ws8b{word-spacing:5.618906px;}
.wscf{word-spacing:5.678682px;}
.ws87{word-spacing:5.738458px;}
.ws104{word-spacing:5.915222px;}
.ws131{word-spacing:5.917824px;}
.wsdb{word-spacing:6.037336px;}
.wsdc{word-spacing:6.097111px;}
.wsdd{word-spacing:6.276438px;}
.ws10d{word-spacing:6.294413px;}
.ws107{word-spacing:6.348211px;}
.ws5c{word-spacing:6.395989px;}
.wsb1{word-spacing:6.455765px;}
.ws12f{word-spacing:6.509606px;}
.ws83{word-spacing:6.515540px;}
.ws40{word-spacing:6.575316px;}
.ws6{word-spacing:6.694867px;}
.ws82{word-spacing:6.754643px;}
.ws10e{word-spacing:6.778598px;}
.ws5e{word-spacing:6.874194px;}
.ws81{word-spacing:6.933970px;}
.ws7f{word-spacing:6.993745px;}
.ws115{word-spacing:6.993792px;}
.wsc5{word-spacing:7.053521px;}
.ws9c{word-spacing:7.113296px;}
.ws5d{word-spacing:7.173072px;}
.ws96{word-spacing:7.352399px;}
.ws4{word-spacing:7.471950px;}
.wsf3{word-spacing:7.477978px;}
.ws85{word-spacing:7.502134px;}
.ws4d{word-spacing:7.531726px;}
.ws21{word-spacing:7.651277px;}
.ws5b{word-spacing:7.770828px;}
.ws12e{word-spacing:7.800768px;}
.ws42{word-spacing:7.830604px;}
.ws10c{word-spacing:7.854566px;}
.ws126{word-spacing:7.908365px;}
.ws47{word-spacing:7.950155px;}
.ws97{word-spacing:8.009930px;}
.ws7b{word-spacing:8.108134px;}
.ws7c{word-spacing:8.129482px;}
.wsa7{word-spacing:8.189257px;}
.ws12a{word-spacing:8.231155px;}
.wsad{word-spacing:8.249033px;}
.ws7a{word-spacing:8.308808px;}
.ws60{word-spacing:8.368584px;}
.ws36{word-spacing:8.428360px;}
.wse6{word-spacing:8.547911px;}
.ws38{word-spacing:8.667462px;}
.ws9a{word-spacing:8.727238px;}
.ws27{word-spacing:8.787013px;}
.ws9d{word-spacing:8.846789px;}
.ws29{word-spacing:8.906564px;}
.ws93{word-spacing:8.966340px;}
.ws71{word-spacing:9.026116px;}
.wsef{word-spacing:9.085891px;}
.wsf2{word-spacing:9.091930px;}
.wsa1{word-spacing:9.196625px;}
.ws5f{word-spacing:9.205442px;}
.wsd0{word-spacing:9.265218px;}
.wsd1{word-spacing:9.324994px;}
.wsc8{word-spacing:9.504320px;}
.ws5{word-spacing:9.564096px;}
.ws112{word-spacing:9.683712px;}
.ws121{word-spacing:9.737510px;}
.ws5a{word-spacing:9.743423px;}
.ws118{word-spacing:9.791309px;}
.ws9b{word-spacing:9.803198px;}
.wsc{word-spacing:9.862974px;}
.ws3a{word-spacing:9.922750px;}
.ws18{word-spacing:9.982525px;}
.ws110{word-spacing:10.167898px;}
.wsa2{word-spacing:10.221628px;}
.ws75{word-spacing:10.281403px;}
.ws44{word-spacing:10.341179px;}
.ws43{word-spacing:10.400954px;}
.ws55{word-spacing:10.640057px;}
.wsa5{word-spacing:10.938935px;}
.wsc7{word-spacing:11.058486px;}
.ws64{word-spacing:11.118262px;}
.ws3b{word-spacing:11.178037px;}
.wsc4{word-spacing:11.237813px;}
.wsf7{word-spacing:11.351462px;}
.wsc6{word-spacing:11.417140px;}
.wsfa{word-spacing:11.459059px;}
.wsb6{word-spacing:11.468134px;}
.wsb5{word-spacing:11.470309px;}
.wsb7{word-spacing:11.476915px;}
.ws10b{word-spacing:11.566656px;}
.ws94{word-spacing:11.596466px;}
.wsc9{word-spacing:11.775793px;}
.wsd2{word-spacing:11.835569px;}
.wsff{word-spacing:11.889446px;}
.wsa8{word-spacing:12.074671px;}
.ws4b{word-spacing:12.313774px;}
.ws17{word-spacing:12.433325px;}
.ws10f{word-spacing:13.019213px;}
.ws41{word-spacing:13.031081px;}
.ws10{word-spacing:13.270183px;}
.wse4{word-spacing:13.329959px;}
.ws46{word-spacing:13.389734px;}
.ws62{word-spacing:13.509286px;}
.ws11e{word-spacing:13.718592px;}
.ws124{word-spacing:14.095181px;}
.ws113{word-spacing:14.417971px;}
.ws73{word-spacing:14.884124px;}
.ws125{word-spacing:15.655334px;}
.ws76{word-spacing:15.960085px;}
.ws11b{word-spacing:16.462310px;}
.ws74{word-spacing:16.557841px;}
.ws123{word-spacing:17.430682px;}
.wsee{word-spacing:17.633802px;}
.ws23{word-spacing:18.410885px;}
.ws3c{word-spacing:18.530436px;}
.ws116{word-spacing:18.560448px;}
.wsf0{word-spacing:18.590212px;}
.wscc{word-spacing:19.008641px;}
.wsfb{word-spacing:20.927578px;}
.ws111{word-spacing:21.895949px;}
.wsed{word-spacing:22.057196px;}
.wsec{word-spacing:23.133157px;}
.ws8e{word-spacing:23.730913px;}
.wsda{word-spacing:23.850464px;}
.ws72{word-spacing:24.986201px;}
.ws1d{word-spacing:26.659918px;}
.ws8a{word-spacing:27.018571px;}
.ws2{word-spacing:32.225242px;}
.ws89{word-spacing:35.360685px;}
.wseb{word-spacing:44.831923px;}
.wsd3{word-spacing:79.979753px;}
.wsd5{word-spacing:104.069320px;}
.wsc1{word-spacing:108.851368px;}
.wsd6{word-spacing:157.150052px;}
.wsd8{word-spacing:192.238330px;}
.wsd4{word-spacing:206.166044px;}
.wsbf{word-spacing:228.223241px;}
.wsc0{word-spacing:281.722403px;}
.wsbb{word-spacing:300.013736px;}
.wsbd{word-spacing:301.986331px;}
.wsbe{word-spacing:346.519153px;}
.wsbc{word-spacing:365.587570px;}
._a{margin-left:-8.906564px;}
._c{margin-left:-7.531726px;}
._d{margin-left:-6.515540px;}
._6{margin-left:-5.021184px;}
._7{margin-left:-3.287658px;}
._0{margin-left:-2.151930px;}
._4{margin-left:-1.075968px;}
._2b{width:2.431517px;}
._5{width:3.613540px;}
._22{width:4.662497px;}
._2{width:6.026410px;}
._28{width:10.699866px;}
._11{width:13.688612px;}
._18{width:16.079645px;}
._b{width:18.052240px;}
._8{width:20.084602px;}
._16{width:21.220338px;}
._23{width:22.253436px;}
._9{width:23.312484px;}
._15{width:24.448220px;}
._14{width:26.420824px;}
._13{width:27.616352px;}
._1a{width:29.768249px;}
._f{width:30.903985px;}
._25{width:32.458159px;}
._e{width:33.713447px;}
._1e{width:35.207828px;}
._20{width:36.463124px;}
._1b{width:38.256384px;}
._24{width:40.049686px;}
._2c{width:41.314368px;}
._1c{width:42.500452px;}
._27{width:44.233936px;}
._17{width:45.309922px;}
._12{width:47.880256px;}
._1d{width:49.434421px;}
._19{width:51.347240px;}
._10{width:58.878974px;}
._21{width:67.008456px;}
._1f{width:68.263735px;}
._3{width:75.676416px;}
._1{width:93.609216px;}
._26{width:119.013220px;}
._2a{width:177.832418px;}
._29{width:248.666496px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(54,125,189);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs5{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:121.500000px;}
.y137{bottom:137.938500px;}
.y29{bottom:139.432500px;}
.y136{bottom:155.496000px;}
.y16d{bottom:156.294000px;}
.y28{bottom:157.365000px;}
.y135{bottom:171.934500px;}
.y16c{bottom:172.732500px;}
.y27{bottom:175.297500px;}
.y134{bottom:188.373000px;}
.y16b{bottom:189.171000px;}
.y4b{bottom:193.230000px;}
.y26{bottom:193.231500px;}
.y105{bottom:198.489000px;}
.y16a{bottom:205.609500px;}
.y133{bottom:205.932000px;}
.y4a{bottom:211.162500px;}
.y25{bottom:211.164000px;}
.y104{bottom:216.421500px;}
.y169{bottom:222.048000px;}
.y132{bottom:222.370500px;}
.y24{bottom:229.096500px;}
.y103{bottom:234.355500px;}
.y131{bottom:239.928000px;}
.y168{bottom:240.403500px;}
.y23{bottom:247.029000px;}
.y102{bottom:252.288000px;}
.y130{bottom:256.366500px;}
.y167{bottom:256.842000px;}
.y49{bottom:264.961500px;}
.y22{bottom:264.985500px;}
.y101{bottom:270.220500px;}
.y12f{bottom:272.805000px;}
.y166{bottom:273.280500px;}
.y48{bottom:282.894000px;}
.y21{bottom:282.918000px;}
.y100{bottom:288.153000px;}
.y12e{bottom:289.243500px;}
.y165{bottom:291.636000px;}
.y47{bottom:300.826500px;}
.y89{bottom:300.828000px;}
.y20{bottom:300.850500px;}
.yc3{bottom:301.411500px;}
.y12d{bottom:305.682000px;}
.yff{bottom:306.085500px;}
.y164{bottom:308.074500px;}
.ya3{bottom:311.154000px;}
.y46{bottom:318.760500px;}
.y1f{bottom:318.784500px;}
.yc2{bottom:319.344000px;}
.y12c{bottom:322.120500px;}
.yfe{bottom:324.018000px;}
.y163{bottom:324.513000px;}
.ya2{bottom:329.086500px;}
.y45{bottom:336.693000px;}
.y1e{bottom:336.717000px;}
.y12b{bottom:339.679500px;}
.y162{bottom:340.951500px;}
.yfd{bottom:341.952000px;}
.yc0{bottom:343.848000px;}
.ya1{bottom:347.019000px;}
.y4c{bottom:348.000000px;}
.ybf{bottom:350.784000px;}
.y44{bottom:354.625500px;}
.y1d{bottom:354.649500px;}
.y12a{bottom:356.116500px;}
.y161{bottom:357.388500px;}
.yfc{bottom:359.884500px;}
.ybe{bottom:361.033500px;}
.yc1{bottom:361.035000px;}
.ya0{bottom:364.951500px;}
.y129{bottom:372.555000px;}
.y43{bottom:372.558000px;}
.y1c{bottom:372.582000px;}
.y160{bottom:375.745500px;}
.yfb{bottom:377.817000px;}
.y73{bottom:378.084000px;}
.y9f{bottom:382.884000px;}
.y128{bottom:388.993500px;}
.y42{bottom:390.490500px;}
.y1b{bottom:390.514500px;}
.y15f{bottom:392.182500px;}
.yfa{bottom:395.749500px;}
.y72{bottom:396.018000px;}
.y9e{bottom:400.816500px;}
.ybd{bottom:402.538500px;}
.y127{bottom:405.432000px;}
.y41{bottom:408.423000px;}
.y88{bottom:408.424500px;}
.y15e{bottom:408.621000px;}
.yf9{bottom:413.682000px;}
.y71{bottom:413.950500px;}
.y9d{bottom:418.750500px;}
.y1a{bottom:418.932000px;}
.ybc{bottom:420.471000px;}
.y126{bottom:422.991000px;}
.y15d{bottom:425.059500px;}
.y87{bottom:426.357000px;}
.yf8{bottom:431.616000px;}
.y70{bottom:431.883000px;}
.y9c{bottom:436.683000px;}
.y40{bottom:436.959000px;}
.ybb{bottom:438.405000px;}
.y125{bottom:439.429500px;}
.y15c{bottom:443.415000px;}
.y86{bottom:444.289500px;}
.yf7{bottom:449.548500px;}
.y6f{bottom:449.815500px;}
.y9b{bottom:454.615500px;}
.y3f{bottom:454.891500px;}
.y124{bottom:455.868000px;}
.yba{bottom:456.337500px;}
.y15b{bottom:459.853500px;}
.y85{bottom:462.222000px;}
.yf6{bottom:467.481000px;}
.y6e{bottom:467.748000px;}
.y123{bottom:472.306500px;}
.y9a{bottom:472.548000px;}
.y19{bottom:472.801500px;}
.y3e{bottom:472.824000px;}
.yb9{bottom:474.270000px;}
.y15a{bottom:476.292000px;}
.y84{bottom:480.154500px;}
.yf5{bottom:485.413500px;}
.y6d{bottom:485.680500px;}
.y122{bottom:489.864000px;}
.y99{bottom:490.480500px;}
.y18{bottom:490.734000px;}
.y3d{bottom:490.758000px;}
.yb8{bottom:492.202500px;}
.y159{bottom:492.730500px;}
.y83{bottom:498.088500px;}
.yf4{bottom:503.346000px;}
.y6c{bottom:503.614500px;}
.y121{bottom:506.302500px;}
.y98{bottom:508.413000px;}
.y17{bottom:508.666500px;}
.y3c{bottom:508.690500px;}
.y158{bottom:511.086000px;}
.y82{bottom:516.021000px;}
.yb7{bottom:521.181000px;}
.yf3{bottom:521.278500px;}
.y6b{bottom:521.547000px;}
.ydf{bottom:521.728500px;}
.y120{bottom:522.741000px;}
.ya6{bottom:526.345500px;}
.y97{bottom:526.347000px;}
.y16{bottom:526.599000px;}
.y3b{bottom:526.623000px;}
.y157{bottom:527.524500px;}
.y81{bottom:533.953500px;}
.yf2{bottom:539.212500px;}
.y6a{bottom:539.479500px;}
.yde{bottom:539.662500px;}
.y156{bottom:543.963000px;}
.y96{bottom:544.279500px;}
.y15{bottom:544.531500px;}
.y3a{bottom:544.555500px;}
.y11f{bottom:549.640500px;}
.y80{bottom:551.886000px;}
.yf1{bottom:557.145000px;}
.y69{bottom:557.412000px;}
.ydd{bottom:557.595000px;}
.yb6{bottom:558.799500px;}
.y155{bottom:560.401500px;}
.y95{bottom:562.212000px;}
.y14{bottom:562.465500px;}
.y39{bottom:562.488000px;}
.yf0{bottom:575.077500px;}
.y68{bottom:575.344500px;}
.ydc{bottom:575.527500px;}
.yb5{bottom:576.732000px;}
.y154{bottom:578.757000px;}
.y94{bottom:580.144500px;}
.y7f{bottom:580.279500px;}
.y13{bottom:580.398000px;}
.y38{bottom:580.420500px;}
.y11e{bottom:584.757000px;}
.yef{bottom:593.010000px;}
.y67{bottom:593.278500px;}
.ydb{bottom:593.460000px;}
.yb4{bottom:594.664500px;}
.y153{bottom:595.195500px;}
.y93{bottom:598.077000px;}
.y12{bottom:598.330500px;}
.y37{bottom:598.354500px;}
.y11d{bottom:602.689500px;}
.y92{bottom:610.857000px;}
.yee{bottom:610.942500px;}
.y66{bottom:611.211000px;}
.yda{bottom:611.392500px;}
.y152{bottom:611.634000px;}
.yb3{bottom:612.597000px;}
.y7e{bottom:615.156000px;}
.ya5{bottom:616.009500px;}
.y91{bottom:616.011000px;}
.y11{bottom:616.263000px;}
.y36{bottom:616.287000px;}
.y11c{bottom:620.623500px;}
.y151{bottom:628.072500px;}
.yed{bottom:628.875000px;}
.y65{bottom:629.143500px;}
.yd9{bottom:629.325000px;}
.yb2{bottom:630.529500px;}
.y7d{bottom:633.088500px;}
.ya4{bottom:633.942000px;}
.y90{bottom:633.943500px;}
.y10{bottom:634.195500px;}
.y35{bottom:634.219500px;}
.y11b{bottom:638.556000px;}
.y150{bottom:644.511000px;}
.yec{bottom:646.809000px;}
.yd8{bottom:647.259000px;}
.yb1{bottom:648.462000px;}
.y7c{bottom:651.021000px;}
.y8f{bottom:651.876000px;}
.yf{bottom:652.129500px;}
.y34{bottom:652.152000px;}
.y64{bottom:652.602000px;}
.y11a{bottom:656.488500px;}
.y14f{bottom:662.866500px;}
.y8e{bottom:664.656000px;}
.yd7{bottom:665.191500px;}
.yb0{bottom:666.396000px;}
.y7b{bottom:668.953500px;}
.y8d{bottom:669.808500px;}
.yeb{bottom:669.999000px;}
.ye{bottom:670.062000px;}
.y33{bottom:670.084500px;}
.y63{bottom:670.536000px;}
.y119{bottom:674.421000px;}
.y14e{bottom:679.305000px;}
.yd6{bottom:683.124000px;}
.yaf{bottom:684.328500px;}
.y8c{bottom:687.741000px;}
.yea{bottom:687.933000px;}
.yd{bottom:687.994500px;}
.y32{bottom:688.017000px;}
.y62{bottom:688.468500px;}
.y118{bottom:692.353500px;}
.y14d{bottom:695.743500px;}
.yd5{bottom:701.056500px;}
.yae{bottom:702.261000px;}
.ye9{bottom:705.865500px;}
.yc{bottom:705.927000px;}
.y31{bottom:705.951000px;}
.y61{bottom:706.401000px;}
.y117{bottom:710.286000px;}
.y14c{bottom:712.180500px;}
.y7a{bottom:716.737500px;}
.yd4{bottom:718.989000px;}
.yad{bottom:720.193500px;}
.ye8{bottom:723.798000px;}
.yb{bottom:723.859500px;}
.y30{bottom:723.883500px;}
.y60{bottom:724.333500px;}
.y14b{bottom:728.619000px;}
.y79{bottom:733.176000px;}
.yd3{bottom:736.923000px;}
.y8b{bottom:737.505000px;}
.yac{bottom:738.126000px;}
.ya{bottom:741.792000px;}
.y2f{bottom:741.816000px;}
.y5f{bottom:742.266000px;}
.y14a{bottom:745.057500px;}
.y78{bottom:749.614500px;}
.y116{bottom:749.737500px;}
.y8a{bottom:753.943500px;}
.yd2{bottom:754.855500px;}
.yab{bottom:756.058500px;}
.y9{bottom:759.726000px;}
.y2e{bottom:759.748500px;}
.y5e{bottom:760.198500px;}
.y149{bottom:761.496000px;}
.y77{bottom:766.053000px;}
.y115{bottom:767.671500px;}
.yd1{bottom:772.788000px;}
.yaa{bottom:773.992500px;}
.y8{bottom:777.658500px;}
.y2d{bottom:777.681000px;}
.y148{bottom:777.934500px;}
.y5d{bottom:778.132500px;}
.y76{bottom:782.491500px;}
.ye7{bottom:784.078500px;}
.y114{bottom:785.604000px;}
.yd0{bottom:790.720500px;}
.y147{bottom:794.373000px;}
.y7{bottom:795.591000px;}
.y2c{bottom:795.615000px;}
.y5c{bottom:796.065000px;}
.y75{bottom:798.928500px;}
.ye6{bottom:800.517000px;}
.y113{bottom:803.536500px;}
.ycf{bottom:808.653000px;}
.y146{bottom:812.728500px;}
.y2b{bottom:813.547500px;}
.y5b{bottom:813.997500px;}
.y74{bottom:815.367000px;}
.y112{bottom:821.469000px;}
.ya9{bottom:824.923500px;}
.yce{bottom:826.585500px;}
.y145{bottom:829.167000px;}
.y6{bottom:831.480000px;}
.y5a{bottom:831.930000px;}
.ye5{bottom:836.116500px;}
.y111{bottom:839.401500px;}
.ya8{bottom:841.362000px;}
.y144{bottom:845.605500px;}
.y59{bottom:849.862500px;}
.ye4{bottom:854.049000px;}
.y110{bottom:857.334000px;}
.ya7{bottom:857.800500px;}
.y143{bottom:862.044000px;}
.y58{bottom:867.795000px;}
.ye3{bottom:871.981500px;}
.y10f{bottom:875.268000px;}
.ycd{bottom:876.999000px;}
.y142{bottom:878.482500px;}
.y57{bottom:885.729000px;}
.y5{bottom:893.049000px;}
.y10e{bottom:893.200500px;}
.ycc{bottom:893.437500px;}
.y141{bottom:896.838000px;}
.ye2{bottom:897.418500px;}
.y56{bottom:903.661500px;}
.y10d{bottom:911.133000px;}
.y140{bottom:913.276500px;}
.y4{bottom:913.971000px;}
.y55{bottom:921.594000px;}
.ycb{bottom:929.037000px;}
.y10c{bottom:929.065500px;}
.y13f{bottom:929.715000px;}
.y176{bottom:930.561000px;}
.y3{bottom:934.893000px;}
.y54{bottom:939.526500px;}
.yca{bottom:946.969500px;}
.y10b{bottom:946.998000px;}
.y175{bottom:946.999500px;}
.y13e{bottom:948.070500px;}
.ye1{bottom:948.730500px;}
.y2{bottom:955.813500px;}
.y53{bottom:957.459000px;}
.y174{bottom:963.438000px;}
.y13d{bottom:964.509000px;}
.yc9{bottom:964.902000px;}
.y10a{bottom:964.930500px;}
.ye0{bottom:965.169000px;}
.y52{bottom:975.391500px;}
.y173{bottom:979.875000px;}
.y13c{bottom:980.947500px;}
.yc8{bottom:982.836000px;}
.y109{bottom:982.864500px;}
.y51{bottom:993.325500px;}
.y13b{bottom:997.384500px;}
.y172{bottom:997.809000px;}
.yc7{bottom:1000.768500px;}
.y108{bottom:1000.797000px;}
.y50{bottom:1011.258000px;}
.y1{bottom:1012.600500px;}
.y13a{bottom:1013.823000px;}
.y171{bottom:1014.247500px;}
.yc6{bottom:1018.701000px;}
.y107{bottom:1018.729500px;}
.y4f{bottom:1029.190500px;}
.y139{bottom:1030.261500px;}
.y170{bottom:1030.684500px;}
.yc5{bottom:1036.633500px;}
.y106{bottom:1036.662000px;}
.y4e{bottom:1047.123000px;}
.y138{bottom:1048.617000px;}
.y16f{bottom:1048.618500px;}
.yc4{bottom:1062.069000px;}
.y4d{bottom:1065.055500px;}
.y16e{bottom:1065.057000px;}
.hf{height:27.783619px;}
.h12{height:28.578632px;}
.h15{height:36.744307px;}
.ha{height:38.250662px;}
.h16{height:38.520662px;}
.h5{height:40.348800px;}
.h7{height:40.826735px;}
.h13{height:41.484266px;}
.h8{height:42.500452px;}
.h14{height:42.794452px;}
.hb{height:44.831700px;}
.h6{height:49.781453px;}
.h3{height:51.000883px;}
.h4{height:51.354883px;}
.h2{height:51.360883px;}
.he{height:52.110632px;}
.hc{height:52.116632px;}
.h1{height:59.737577px;}
.hd{height:63.110452px;}
.h10{height:85.271700px;}
.h11{height:97.788000px;}
.h9{height:117.773438px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:48.000000px;}
.xd{left:75.168000px;}
.x1{left:79.905000px;}
.x29{left:81.892500px;}
.xa{left:84.135000px;}
.xc{left:93.100500px;}
.x28{left:105.046500px;}
.x5{left:110.254500px;}
.x2a{left:114.757500px;}
.x2{left:119.296500px;}
.x24{left:151.828500px;}
.x13{left:155.700000px;}
.x23{left:162.640500px;}
.x20{left:179.892000px;}
.x22{left:184.240500px;}
.x1e{left:185.698500px;}
.x21{left:193.170000px;}
.x1f{left:196.084500px;}
.x14{left:208.143000px;}
.xb{left:218.992500px;}
.x15{left:228.496500px;}
.x16{left:242.983500px;}
.x7{left:252.370500px;}
.x6{left:314.812500px;}
.x11{left:381.538500px;}
.x8{left:407.989500px;}
.x12{left:420.162000px;}
.xe{left:463.293000px;}
.x26{left:470.017500px;}
.xf{left:481.225500px;}
.x27{left:493.171500px;}
.x3{left:499.338000px;}
.x1d{left:517.164000px;}
.x1c{left:518.359500px;}
.x1a{left:548.209500px;}
.x9{left:560.200500px;}
.x1b{left:561.585000px;}
.x19{left:566.650500px;}
.x17{left:577.977000px;}
.x18{left:582.550500px;}
.x25{left:667.671000px;}
.x4{left:804.816000px;}
@media print{
.v4{vertical-align:-13.285333pt;}
.v7{vertical-align:-11.402667pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.320000pt;}
.v2{vertical-align:20.922667pt;}
.v5{vertical-align:35.946667pt;}
.v6{vertical-align:86.922667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000058pt;}
.lsd{letter-spacing:0.000277pt;}
.ls2d{letter-spacing:0.000501pt;}
.ls1e{letter-spacing:0.000576pt;}
.ls0{letter-spacing:0.000891pt;}
.ls12{letter-spacing:0.001014pt;}
.ls18{letter-spacing:0.001710pt;}
.ls20{letter-spacing:0.002079pt;}
.ls2a{letter-spacing:0.002122pt;}
.ls7{letter-spacing:0.002352pt;}
.ls34{letter-spacing:0.002387pt;}
.ls2e{letter-spacing:0.002906pt;}
.ls15{letter-spacing:0.007043pt;}
.ls27{letter-spacing:1.477138pt;}
.ls8{letter-spacing:2.652911pt;}
.ls16{letter-spacing:2.654181pt;}
.ls30{letter-spacing:2.656546pt;}
.ls9{letter-spacing:2.658245pt;}
.ls1a{letter-spacing:2.659514pt;}
.lse{letter-spacing:3.991511pt;}
.ls1f{letter-spacing:5.310545pt;}
.ls1d{letter-spacing:5.315879pt;}
.lsa{letter-spacing:6.642178pt;}
.ls22{letter-spacing:6.643959pt;}
.lsb{letter-spacing:10.743412pt;}
.ls2c{letter-spacing:11.808479pt;}
.ls36{letter-spacing:11.955200pt;}
.ls35{letter-spacing:13.921073pt;}
.ls2b{letter-spacing:14.459213pt;}
.ls29{letter-spacing:15.234387pt;}
.ls10{letter-spacing:15.985014pt;}
.ls4{letter-spacing:16.630900pt;}
.ls3{letter-spacing:17.374774pt;}
.ls25{letter-spacing:17.867145pt;}
.ls23{letter-spacing:18.416271pt;}
.lsf{letter-spacing:19.148745pt;}
.ls14{letter-spacing:19.356169pt;}
.ls19{letter-spacing:21.716667pt;}
.ls1b{letter-spacing:22.606181pt;}
.ls1c{letter-spacing:22.612667pt;}
.ls11{letter-spacing:23.147680pt;}
.ls13{letter-spacing:23.376277pt;}
.ls28{letter-spacing:23.797812pt;}
.ls21{letter-spacing:24.196980pt;}
.ls2{letter-spacing:24.335311pt;}
.ls1{letter-spacing:24.388445pt;}
.ls24{letter-spacing:25.248058pt;}
.ls33{letter-spacing:26.133880pt;}
.ls32{letter-spacing:26.139213pt;}
.ls26{letter-spacing:28.842724pt;}
.lsc{letter-spacing:29.285610pt;}
.ls17{letter-spacing:31.436911pt;}
.ls6{letter-spacing:45.186352pt;}
.ls31{letter-spacing:224.386079pt;}
.wsf1{word-spacing:-15.940267pt;}
.ws15{word-spacing:-13.283467pt;}
.wsab{word-spacing:-11.955200pt;}
.ws7d{word-spacing:-3.081764pt;}
.ws1c{word-spacing:-2.869229pt;}
.wsaa{word-spacing:-2.821427pt;}
.ws6c{word-spacing:-2.773606pt;}
.wsdf{word-spacing:-2.762961pt;}
.ws14{word-spacing:-2.603559pt;}
.ws7{word-spacing:-2.550426pt;}
.wse5{word-spacing:-2.497292pt;}
.wsa{word-spacing:-2.444158pt;}
.wse0{word-spacing:-2.391024pt;}
.ws6d{word-spacing:-2.343219pt;}
.wsa6{word-spacing:-2.337890pt;}
.wscb{word-spacing:-2.284756pt;}
.ws48{word-spacing:-2.231622pt;}
.ws66{word-spacing:-2.178489pt;}
.wsb{word-spacing:-2.125355pt;}
.ws61{word-spacing:-2.019087pt;}
.ws35{word-spacing:-1.965953pt;}
.wsd7{word-spacing:-1.912832pt;}
.wsae{word-spacing:-1.912819pt;}
.ws6f{word-spacing:-1.865011pt;}
.ws4e{word-spacing:-1.859685pt;}
.ws12d{word-spacing:-1.817190pt;}
.wscd{word-spacing:-1.806551pt;}
.ws2e{word-spacing:-1.753418pt;}
.wsca{word-spacing:-1.700284pt;}
.ws26{word-spacing:-1.594016pt;}
.ws122{word-spacing:-1.530266pt;}
.wsa4{word-spacing:-1.487748pt;}
.ws9e{word-spacing:-1.381481pt;}
.wsac{word-spacing:-1.328347pt;}
.ws100{word-spacing:-1.291162pt;}
.ws9f{word-spacing:-1.222079pt;}
.ws6b{word-spacing:-1.195520pt;}
.wsb3{word-spacing:-1.168945pt;}
.ws67{word-spacing:-1.115811pt;}
.wsd9{word-spacing:-1.099878pt;}
.ws2d{word-spacing:-1.062677pt;}
.ws2f{word-spacing:-1.009543pt;}
.ws98{word-spacing:-0.850142pt;}
.wsb0{word-spacing:-0.797008pt;}
.ws99{word-spacing:-0.743874pt;}
.ws11d{word-spacing:-0.717312pt;}
.ws12{word-spacing:-0.690740pt;}
.ws128{word-spacing:-0.669491pt;}
.wsa0{word-spacing:-0.637606pt;}
.ws9{word-spacing:-0.531339pt;}
.ws11c{word-spacing:-0.478208pt;}
.wse3{word-spacing:-0.478205pt;}
.ws2b{word-spacing:-0.425071pt;}
.ws92{word-spacing:-0.406399pt;}
.wse{word-spacing:-0.371937pt;}
.wsce{word-spacing:-0.318803pt;}
.ws103{word-spacing:-0.286925pt;}
.ws13{word-spacing:-0.212535pt;}
.wsde{word-spacing:-0.159402pt;}
.ws80{word-spacing:-0.143462pt;}
.ws16{word-spacing:-0.106268pt;}
.wsc2{word-spacing:-0.095642pt;}
.ws77{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.ws79{word-spacing:-0.037194pt;}
.wsb8{word-spacing:-0.002385pt;}
.ws0{word-spacing:0.000000pt;}
.ws68{word-spacing:0.053134pt;}
.ws1b{word-spacing:0.106268pt;}
.ws2a{word-spacing:0.159402pt;}
.wse7{word-spacing:0.212535pt;}
.wsf{word-spacing:0.265669pt;}
.ws84{word-spacing:0.318803pt;}
.ws63{word-spacing:0.371937pt;}
.wsba{word-spacing:0.425071pt;}
.ws31{word-spacing:0.478205pt;}
.ws53{word-spacing:0.531339pt;}
.wsfc{word-spacing:0.573850pt;}
.ws49{word-spacing:0.637606pt;}
.ws109{word-spacing:0.669491pt;}
.ws4a{word-spacing:0.690740pt;}
.wsc3{word-spacing:0.797008pt;}
.ws19{word-spacing:0.850142pt;}
.ws11a{word-spacing:0.860774pt;}
.ws50{word-spacing:0.903276pt;}
.ws4f{word-spacing:0.956410pt;}
.ws6a{word-spacing:0.956416pt;}
.ws119{word-spacing:1.004237pt;}
.ws54{word-spacing:1.009543pt;}
.ws39{word-spacing:1.062677pt;}
.ws8{word-spacing:1.115811pt;}
.ws1a{word-spacing:1.168945pt;}
.wsf5{word-spacing:1.195520pt;}
.wsf9{word-spacing:1.243341pt;}
.ws130{word-spacing:1.291162pt;}
.ws56{word-spacing:1.381481pt;}
.wsa9{word-spacing:1.386803pt;}
.ws86{word-spacing:1.434614pt;}
.wsb4{word-spacing:1.478637pt;}
.ws30{word-spacing:1.540882pt;}
.ws114{word-spacing:1.578086pt;}
.ws8f{word-spacing:1.594016pt;}
.wsf6{word-spacing:1.625907pt;}
.wse9{word-spacing:1.806551pt;}
.wsf4{word-spacing:1.817190pt;}
.ws8c{word-spacing:1.912819pt;}
.ws90{word-spacing:2.019087pt;}
.ws37{word-spacing:2.072221pt;}
.ws1f{word-spacing:2.125355pt;}
.ws4c{word-spacing:2.231622pt;}
.wse8{word-spacing:2.337890pt;}
.wsfe{word-spacing:2.343219pt;}
.ws24{word-spacing:2.391024pt;}
.wsea{word-spacing:2.444158pt;}
.ws12b{word-spacing:2.486682pt;}
.ws57{word-spacing:2.497292pt;}
.ws65{word-spacing:2.603559pt;}
.wsf8{word-spacing:2.630144pt;}
.ws7e{word-spacing:2.709827pt;}
.ws88{word-spacing:2.762961pt;}
.ws2c{word-spacing:2.816095pt;}
.ws127{word-spacing:2.821427pt;}
.wsb2{word-spacing:2.869229pt;}
.ws52{word-spacing:2.975497pt;}
.ws120{word-spacing:3.012710pt;}
.ws3f{word-spacing:3.028630pt;}
.ws105{word-spacing:3.108352pt;}
.ws58{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.wsb9{word-spacing:3.241166pt;}
.wsfd{word-spacing:3.251814pt;}
.wse2{word-spacing:3.294300pt;}
.ws3e{word-spacing:3.347434pt;}
.ws12c{word-spacing:3.347456pt;}
.ws95{word-spacing:3.400567pt;}
.ws8d{word-spacing:3.453701pt;}
.ws33{word-spacing:3.506835pt;}
.ws34{word-spacing:3.559969pt;}
.ws6e{word-spacing:3.586560pt;}
.ws59{word-spacing:3.613103pt;}
.ws3{word-spacing:3.666237pt;}
.wsaf{word-spacing:3.719371pt;}
.ws32{word-spacing:3.772505pt;}
.ws11{word-spacing:3.825638pt;}
.ws78{word-spacing:3.878772pt;}
.ws25{word-spacing:3.931906pt;}
.ws106{word-spacing:4.016947pt;}
.ws91{word-spacing:4.038174pt;}
.ws3d{word-spacing:4.091308pt;}
.wse1{word-spacing:4.197575pt;}
.ws101{word-spacing:4.208230pt;}
.ws28{word-spacing:4.303843pt;}
.ws10a{word-spacing:4.303872pt;}
.wsd{word-spacing:4.356977pt;}
.ws22{word-spacing:4.410111pt;}
.ws11f{word-spacing:4.447334pt;}
.ws51{word-spacing:4.516379pt;}
.ws129{word-spacing:4.542976pt;}
.ws45{word-spacing:4.569513pt;}
.ws108{word-spacing:4.638618pt;}
.ws69{word-spacing:4.675780pt;}
.wsa3{word-spacing:4.782048pt;}
.ws102{word-spacing:4.782080pt;}
.ws117{word-spacing:4.829901pt;}
.ws1e{word-spacing:4.888316pt;}
.ws70{word-spacing:4.941450pt;}
.ws8b{word-spacing:4.994583pt;}
.wscf{word-spacing:5.047717pt;}
.ws87{word-spacing:5.100851pt;}
.ws104{word-spacing:5.257975pt;}
.ws131{word-spacing:5.260288pt;}
.wsdb{word-spacing:5.366521pt;}
.wsdc{word-spacing:5.419654pt;}
.wsdd{word-spacing:5.579056pt;}
.ws10d{word-spacing:5.595034pt;}
.ws107{word-spacing:5.642854pt;}
.ws5c{word-spacing:5.685324pt;}
.wsb1{word-spacing:5.738458pt;}
.ws12f{word-spacing:5.786317pt;}
.ws83{word-spacing:5.791591pt;}
.ws40{word-spacing:5.844725pt;}
.ws6{word-spacing:5.950993pt;}
.ws82{word-spacing:6.004127pt;}
.ws10e{word-spacing:6.025421pt;}
.ws5e{word-spacing:6.110395pt;}
.ws81{word-spacing:6.163529pt;}
.ws7f{word-spacing:6.216662pt;}
.ws115{word-spacing:6.216704pt;}
.wsc5{word-spacing:6.269796pt;}
.ws9c{word-spacing:6.322930pt;}
.ws5d{word-spacing:6.376064pt;}
.ws96{word-spacing:6.535466pt;}
.ws4{word-spacing:6.641733pt;}
.wsf3{word-spacing:6.647091pt;}
.ws85{word-spacing:6.668563pt;}
.ws4d{word-spacing:6.694867pt;}
.ws21{word-spacing:6.801135pt;}
.ws5b{word-spacing:6.907403pt;}
.ws12e{word-spacing:6.934016pt;}
.ws42{word-spacing:6.960537pt;}
.ws10c{word-spacing:6.981837pt;}
.ws126{word-spacing:7.029658pt;}
.ws47{word-spacing:7.066804pt;}
.ws97{word-spacing:7.119938pt;}
.ws7b{word-spacing:7.207230pt;}
.ws7c{word-spacing:7.226206pt;}
.wsa7{word-spacing:7.279340pt;}
.ws12a{word-spacing:7.316582pt;}
.wsad{word-spacing:7.332474pt;}
.ws7a{word-spacing:7.385607pt;}
.ws60{word-spacing:7.438741pt;}
.ws36{word-spacing:7.491875pt;}
.wse6{word-spacing:7.598143pt;}
.ws38{word-spacing:7.704411pt;}
.ws9a{word-spacing:7.757545pt;}
.ws27{word-spacing:7.810678pt;}
.ws9d{word-spacing:7.863812pt;}
.ws29{word-spacing:7.916946pt;}
.ws93{word-spacing:7.970080pt;}
.ws71{word-spacing:8.023214pt;}
.wsef{word-spacing:8.076348pt;}
.wsf2{word-spacing:8.081715pt;}
.wsa1{word-spacing:8.174778pt;}
.ws5f{word-spacing:8.182615pt;}
.wsd0{word-spacing:8.235749pt;}
.wsd1{word-spacing:8.288883pt;}
.wsc8{word-spacing:8.448285pt;}
.ws5{word-spacing:8.501419pt;}
.ws112{word-spacing:8.607744pt;}
.ws121{word-spacing:8.655565pt;}
.ws5a{word-spacing:8.660820pt;}
.ws118{word-spacing:8.703386pt;}
.ws9b{word-spacing:8.713954pt;}
.wsc{word-spacing:8.767088pt;}
.ws3a{word-spacing:8.820222pt;}
.ws18{word-spacing:8.873356pt;}
.ws110{word-spacing:9.038131pt;}
.wsa2{word-spacing:9.085891pt;}
.ws75{word-spacing:9.139025pt;}
.ws44{word-spacing:9.192159pt;}
.ws43{word-spacing:9.245293pt;}
.ws55{word-spacing:9.457828pt;}
.wsa5{word-spacing:9.723498pt;}
.wsc7{word-spacing:9.829765pt;}
.ws64{word-spacing:9.882899pt;}
.ws3b{word-spacing:9.936033pt;}
.wsc4{word-spacing:9.989167pt;}
.wsf7{word-spacing:10.090189pt;}
.wsc6{word-spacing:10.148569pt;}
.wsfa{word-spacing:10.185830pt;}
.wsb6{word-spacing:10.193897pt;}
.wsb5{word-spacing:10.195830pt;}
.wsb7{word-spacing:10.201702pt;}
.ws10b{word-spacing:10.281472pt;}
.ws94{word-spacing:10.307970pt;}
.wsc9{word-spacing:10.467372pt;}
.wsd2{word-spacing:10.520506pt;}
.wsff{word-spacing:10.568397pt;}
.wsa8{word-spacing:10.733041pt;}
.ws4b{word-spacing:10.945577pt;}
.ws17{word-spacing:11.051844pt;}
.ws10f{word-spacing:11.572634pt;}
.ws41{word-spacing:11.583183pt;}
.ws10{word-spacing:11.795718pt;}
.wse4{word-spacing:11.848852pt;}
.ws46{word-spacing:11.901986pt;}
.ws62{word-spacing:12.008254pt;}
.ws11e{word-spacing:12.194304pt;}
.ws124{word-spacing:12.529050pt;}
.ws113{word-spacing:12.815974pt;}
.ws73{word-spacing:13.230333pt;}
.ws125{word-spacing:13.915853pt;}
.ws76{word-spacing:14.186742pt;}
.ws11b{word-spacing:14.633165pt;}
.ws74{word-spacing:14.718081pt;}
.ws123{word-spacing:15.493939pt;}
.wsee{word-spacing:15.674491pt;}
.ws23{word-spacing:16.365231pt;}
.ws3c{word-spacing:16.471499pt;}
.ws116{word-spacing:16.498176pt;}
.wsf0{word-spacing:16.524633pt;}
.wscc{word-spacing:16.896570pt;}
.wsfb{word-spacing:18.602291pt;}
.ws111{word-spacing:19.463066pt;}
.wsed{word-spacing:19.606397pt;}
.wsec{word-spacing:20.562806pt;}
.ws8e{word-spacing:21.094145pt;}
.wsda{word-spacing:21.200413pt;}
.ws72{word-spacing:22.209956pt;}
.ws1d{word-spacing:23.697705pt;}
.ws8a{word-spacing:24.016508pt;}
.ws2{word-spacing:28.644659pt;}
.ws89{word-spacing:31.431720pt;}
.wseb{word-spacing:39.850598pt;}
.wsd3{word-spacing:71.093114pt;}
.wsd5{word-spacing:92.506062pt;}
.wsc1{word-spacing:96.756771pt;}
.wsd6{word-spacing:139.688935pt;}
.wsd8{word-spacing:170.878515pt;}
.wsd4{word-spacing:183.258706pt;}
.wsbf{word-spacing:202.865103pt;}
.wsc0{word-spacing:250.419914pt;}
.wsbb{word-spacing:266.678877pt;}
.wsbd{word-spacing:268.432294pt;}
.wsbe{word-spacing:308.017025pt;}
.wsbc{word-spacing:324.966729pt;}
._a{margin-left:-7.916946pt;}
._c{margin-left:-6.694867pt;}
._d{margin-left:-5.791591pt;}
._6{margin-left:-4.463275pt;}
._7{margin-left:-2.922363pt;}
._0{margin-left:-1.912827pt;}
._4{margin-left:-0.956416pt;}
._2b{width:2.161348pt;}
._5{width:3.212035pt;}
._22{width:4.144442pt;}
._2{width:5.356809pt;}
._28{width:9.510992pt;}
._11{width:12.167655pt;}
._18{width:14.293018pt;}
._b{width:16.046435pt;}
._8{width:17.852979pt;}
._16{width:18.862523pt;}
._23{width:19.780832pt;}
._9{width:20.722208pt;}
._15{width:21.731751pt;}
._14{width:23.485177pt;}
._13{width:24.547869pt;}
._1a{width:26.460666pt;}
._f{width:27.470209pt;}
._25{width:28.851697pt;}
._e{width:29.967508pt;}
._1e{width:31.295847pt;}
._20{width:32.411666pt;}
._1b{width:34.005675pt;}
._24{width:35.599721pt;}
._2c{width:36.723883pt;}
._1c{width:37.778179pt;}
._27{width:39.319054pt;}
._17{width:40.275486pt;}
._12{width:42.560227pt;}
._1d{width:43.941708pt;}
._19{width:45.641991pt;}
._10{width:52.336866pt;}
._21{width:59.563072pt;}
._1f{width:60.678876pt;}
._3{width:67.267925pt;}
._1{width:83.208192pt;}
._26{width:105.789529pt;}
._2a{width:158.073261pt;}
._29{width:221.036885pt;}
.fs6{font-size:26.566933pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:108.000000pt;}
.y137{bottom:122.612000pt;}
.y29{bottom:123.940000pt;}
.y136{bottom:138.218667pt;}
.y16d{bottom:138.928000pt;}
.y28{bottom:139.880000pt;}
.y135{bottom:152.830667pt;}
.y16c{bottom:153.540000pt;}
.y27{bottom:155.820000pt;}
.y134{bottom:167.442667pt;}
.y16b{bottom:168.152000pt;}
.y4b{bottom:171.760000pt;}
.y26{bottom:171.761333pt;}
.y105{bottom:176.434667pt;}
.y16a{bottom:182.764000pt;}
.y133{bottom:183.050667pt;}
.y4a{bottom:187.700000pt;}
.y25{bottom:187.701333pt;}
.y104{bottom:192.374667pt;}
.y169{bottom:197.376000pt;}
.y132{bottom:197.662667pt;}
.y24{bottom:203.641333pt;}
.y103{bottom:208.316000pt;}
.y131{bottom:213.269333pt;}
.y168{bottom:213.692000pt;}
.y23{bottom:219.581333pt;}
.y102{bottom:224.256000pt;}
.y130{bottom:227.881333pt;}
.y167{bottom:228.304000pt;}
.y49{bottom:235.521333pt;}
.y22{bottom:235.542667pt;}
.y101{bottom:240.196000pt;}
.y12f{bottom:242.493333pt;}
.y166{bottom:242.916000pt;}
.y48{bottom:251.461333pt;}
.y21{bottom:251.482667pt;}
.y100{bottom:256.136000pt;}
.y12e{bottom:257.105333pt;}
.y165{bottom:259.232000pt;}
.y47{bottom:267.401333pt;}
.y89{bottom:267.402667pt;}
.y20{bottom:267.422667pt;}
.yc3{bottom:267.921333pt;}
.y12d{bottom:271.717333pt;}
.yff{bottom:272.076000pt;}
.y164{bottom:273.844000pt;}
.ya3{bottom:276.581333pt;}
.y46{bottom:283.342667pt;}
.y1f{bottom:283.364000pt;}
.yc2{bottom:283.861333pt;}
.y12c{bottom:286.329333pt;}
.yfe{bottom:288.016000pt;}
.y163{bottom:288.456000pt;}
.ya2{bottom:292.521333pt;}
.y45{bottom:299.282667pt;}
.y1e{bottom:299.304000pt;}
.y12b{bottom:301.937333pt;}
.y162{bottom:303.068000pt;}
.yfd{bottom:303.957333pt;}
.yc0{bottom:305.642667pt;}
.ya1{bottom:308.461333pt;}
.y4c{bottom:309.333333pt;}
.ybf{bottom:311.808000pt;}
.y44{bottom:315.222667pt;}
.y1d{bottom:315.244000pt;}
.y12a{bottom:316.548000pt;}
.y161{bottom:317.678667pt;}
.yfc{bottom:319.897333pt;}
.ybe{bottom:320.918667pt;}
.yc1{bottom:320.920000pt;}
.ya0{bottom:324.401333pt;}
.y129{bottom:331.160000pt;}
.y43{bottom:331.162667pt;}
.y1c{bottom:331.184000pt;}
.y160{bottom:333.996000pt;}
.yfb{bottom:335.837333pt;}
.y73{bottom:336.074667pt;}
.y9f{bottom:340.341333pt;}
.y128{bottom:345.772000pt;}
.y42{bottom:347.102667pt;}
.y1b{bottom:347.124000pt;}
.y15f{bottom:348.606667pt;}
.yfa{bottom:351.777333pt;}
.y72{bottom:352.016000pt;}
.y9e{bottom:356.281333pt;}
.ybd{bottom:357.812000pt;}
.y127{bottom:360.384000pt;}
.y41{bottom:363.042667pt;}
.y88{bottom:363.044000pt;}
.y15e{bottom:363.218667pt;}
.yf9{bottom:367.717333pt;}
.y71{bottom:367.956000pt;}
.y9d{bottom:372.222667pt;}
.y1a{bottom:372.384000pt;}
.ybc{bottom:373.752000pt;}
.y126{bottom:375.992000pt;}
.y15d{bottom:377.830667pt;}
.y87{bottom:378.984000pt;}
.yf8{bottom:383.658667pt;}
.y70{bottom:383.896000pt;}
.y9c{bottom:388.162667pt;}
.y40{bottom:388.408000pt;}
.ybb{bottom:389.693333pt;}
.y125{bottom:390.604000pt;}
.y15c{bottom:394.146667pt;}
.y86{bottom:394.924000pt;}
.yf7{bottom:399.598667pt;}
.y6f{bottom:399.836000pt;}
.y9b{bottom:404.102667pt;}
.y3f{bottom:404.348000pt;}
.y124{bottom:405.216000pt;}
.yba{bottom:405.633333pt;}
.y15b{bottom:408.758667pt;}
.y85{bottom:410.864000pt;}
.yf6{bottom:415.538667pt;}
.y6e{bottom:415.776000pt;}
.y123{bottom:419.828000pt;}
.y9a{bottom:420.042667pt;}
.y19{bottom:420.268000pt;}
.y3e{bottom:420.288000pt;}
.yb9{bottom:421.573333pt;}
.y15a{bottom:423.370667pt;}
.y84{bottom:426.804000pt;}
.yf5{bottom:431.478667pt;}
.y6d{bottom:431.716000pt;}
.y122{bottom:435.434667pt;}
.y99{bottom:435.982667pt;}
.y18{bottom:436.208000pt;}
.y3d{bottom:436.229333pt;}
.yb8{bottom:437.513333pt;}
.y159{bottom:437.982667pt;}
.y83{bottom:442.745333pt;}
.yf4{bottom:447.418667pt;}
.y6c{bottom:447.657333pt;}
.y121{bottom:450.046667pt;}
.y98{bottom:451.922667pt;}
.y17{bottom:452.148000pt;}
.y3c{bottom:452.169333pt;}
.y158{bottom:454.298667pt;}
.y82{bottom:458.685333pt;}
.yb7{bottom:463.272000pt;}
.yf3{bottom:463.358667pt;}
.y6b{bottom:463.597333pt;}
.ydf{bottom:463.758667pt;}
.y120{bottom:464.658667pt;}
.ya6{bottom:467.862667pt;}
.y97{bottom:467.864000pt;}
.y16{bottom:468.088000pt;}
.y3b{bottom:468.109333pt;}
.y157{bottom:468.910667pt;}
.y81{bottom:474.625333pt;}
.yf2{bottom:479.300000pt;}
.y6a{bottom:479.537333pt;}
.yde{bottom:479.700000pt;}
.y156{bottom:483.522667pt;}
.y96{bottom:483.804000pt;}
.y15{bottom:484.028000pt;}
.y3a{bottom:484.049333pt;}
.y11f{bottom:488.569333pt;}
.y80{bottom:490.565333pt;}
.yf1{bottom:495.240000pt;}
.y69{bottom:495.477333pt;}
.ydd{bottom:495.640000pt;}
.yb6{bottom:496.710667pt;}
.y155{bottom:498.134667pt;}
.y95{bottom:499.744000pt;}
.y14{bottom:499.969333pt;}
.y39{bottom:499.989333pt;}
.yf0{bottom:511.180000pt;}
.y68{bottom:511.417333pt;}
.ydc{bottom:511.580000pt;}
.yb5{bottom:512.650667pt;}
.y154{bottom:514.450667pt;}
.y94{bottom:515.684000pt;}
.y7f{bottom:515.804000pt;}
.y13{bottom:515.909333pt;}
.y38{bottom:515.929333pt;}
.y11e{bottom:519.784000pt;}
.yef{bottom:527.120000pt;}
.y67{bottom:527.358667pt;}
.ydb{bottom:527.520000pt;}
.yb4{bottom:528.590667pt;}
.y153{bottom:529.062667pt;}
.y93{bottom:531.624000pt;}
.y12{bottom:531.849333pt;}
.y37{bottom:531.870667pt;}
.y11d{bottom:535.724000pt;}
.y92{bottom:542.984000pt;}
.yee{bottom:543.060000pt;}
.y66{bottom:543.298667pt;}
.yda{bottom:543.460000pt;}
.y152{bottom:543.674667pt;}
.yb3{bottom:544.530667pt;}
.y7e{bottom:546.805333pt;}
.ya5{bottom:547.564000pt;}
.y91{bottom:547.565333pt;}
.y11{bottom:547.789333pt;}
.y36{bottom:547.810667pt;}
.y11c{bottom:551.665333pt;}
.y151{bottom:558.286667pt;}
.yed{bottom:559.000000pt;}
.y65{bottom:559.238667pt;}
.yd9{bottom:559.400000pt;}
.yb2{bottom:560.470667pt;}
.y7d{bottom:562.745333pt;}
.ya4{bottom:563.504000pt;}
.y90{bottom:563.505333pt;}
.y10{bottom:563.729333pt;}
.y35{bottom:563.750667pt;}
.y11b{bottom:567.605333pt;}
.y150{bottom:572.898667pt;}
.yec{bottom:574.941333pt;}
.yd8{bottom:575.341333pt;}
.yb1{bottom:576.410667pt;}
.y7c{bottom:578.685333pt;}
.y8f{bottom:579.445333pt;}
.yf{bottom:579.670667pt;}
.y34{bottom:579.690667pt;}
.y64{bottom:580.090667pt;}
.y11a{bottom:583.545333pt;}
.y14f{bottom:589.214667pt;}
.y8e{bottom:590.805333pt;}
.yd7{bottom:591.281333pt;}
.yb0{bottom:592.352000pt;}
.y7b{bottom:594.625333pt;}
.y8d{bottom:595.385333pt;}
.yeb{bottom:595.554667pt;}
.ye{bottom:595.610667pt;}
.y33{bottom:595.630667pt;}
.y63{bottom:596.032000pt;}
.y119{bottom:599.485333pt;}
.y14e{bottom:603.826667pt;}
.yd6{bottom:607.221333pt;}
.yaf{bottom:608.292000pt;}
.y8c{bottom:611.325333pt;}
.yea{bottom:611.496000pt;}
.yd{bottom:611.550667pt;}
.y32{bottom:611.570667pt;}
.y62{bottom:611.972000pt;}
.y118{bottom:615.425333pt;}
.y14d{bottom:618.438667pt;}
.yd5{bottom:623.161333pt;}
.yae{bottom:624.232000pt;}
.ye9{bottom:627.436000pt;}
.yc{bottom:627.490667pt;}
.y31{bottom:627.512000pt;}
.y61{bottom:627.912000pt;}
.y117{bottom:631.365333pt;}
.y14c{bottom:633.049333pt;}
.y7a{bottom:637.100000pt;}
.yd4{bottom:639.101333pt;}
.yad{bottom:640.172000pt;}
.ye8{bottom:643.376000pt;}
.yb{bottom:643.430667pt;}
.y30{bottom:643.452000pt;}
.y60{bottom:643.852000pt;}
.y14b{bottom:647.661333pt;}
.y79{bottom:651.712000pt;}
.yd3{bottom:655.042667pt;}
.y8b{bottom:655.560000pt;}
.yac{bottom:656.112000pt;}
.ya{bottom:659.370667pt;}
.y2f{bottom:659.392000pt;}
.y5f{bottom:659.792000pt;}
.y14a{bottom:662.273333pt;}
.y78{bottom:666.324000pt;}
.y116{bottom:666.433333pt;}
.y8a{bottom:670.172000pt;}
.yd2{bottom:670.982667pt;}
.yab{bottom:672.052000pt;}
.y9{bottom:675.312000pt;}
.y2e{bottom:675.332000pt;}
.y5e{bottom:675.732000pt;}
.y149{bottom:676.885333pt;}
.y77{bottom:680.936000pt;}
.y115{bottom:682.374667pt;}
.yd1{bottom:686.922667pt;}
.yaa{bottom:687.993333pt;}
.y8{bottom:691.252000pt;}
.y2d{bottom:691.272000pt;}
.y148{bottom:691.497333pt;}
.y5d{bottom:691.673333pt;}
.y76{bottom:695.548000pt;}
.ye7{bottom:696.958667pt;}
.y114{bottom:698.314667pt;}
.yd0{bottom:702.862667pt;}
.y147{bottom:706.109333pt;}
.y7{bottom:707.192000pt;}
.y2c{bottom:707.213333pt;}
.y5c{bottom:707.613333pt;}
.y75{bottom:710.158667pt;}
.ye6{bottom:711.570667pt;}
.y113{bottom:714.254667pt;}
.ycf{bottom:718.802667pt;}
.y146{bottom:722.425333pt;}
.y2b{bottom:723.153333pt;}
.y5b{bottom:723.553333pt;}
.y74{bottom:724.770667pt;}
.y112{bottom:730.194667pt;}
.ya9{bottom:733.265333pt;}
.yce{bottom:734.742667pt;}
.y145{bottom:737.037333pt;}
.y6{bottom:739.093333pt;}
.y5a{bottom:739.493333pt;}
.ye5{bottom:743.214667pt;}
.y111{bottom:746.134667pt;}
.ya8{bottom:747.877333pt;}
.y144{bottom:751.649333pt;}
.y59{bottom:755.433333pt;}
.ye4{bottom:759.154667pt;}
.y110{bottom:762.074667pt;}
.ya7{bottom:762.489333pt;}
.y143{bottom:766.261333pt;}
.y58{bottom:771.373333pt;}
.ye3{bottom:775.094667pt;}
.y10f{bottom:778.016000pt;}
.ycd{bottom:779.554667pt;}
.y142{bottom:780.873333pt;}
.y57{bottom:787.314667pt;}
.y5{bottom:793.821333pt;}
.y10e{bottom:793.956000pt;}
.ycc{bottom:794.166667pt;}
.y141{bottom:797.189333pt;}
.ye2{bottom:797.705333pt;}
.y56{bottom:803.254667pt;}
.y10d{bottom:809.896000pt;}
.y140{bottom:811.801333pt;}
.y4{bottom:812.418667pt;}
.y55{bottom:819.194667pt;}
.ycb{bottom:825.810667pt;}
.y10c{bottom:825.836000pt;}
.y13f{bottom:826.413333pt;}
.y176{bottom:827.165333pt;}
.y3{bottom:831.016000pt;}
.y54{bottom:835.134667pt;}
.yca{bottom:841.750667pt;}
.y10b{bottom:841.776000pt;}
.y175{bottom:841.777333pt;}
.y13e{bottom:842.729333pt;}
.ye1{bottom:843.316000pt;}
.y2{bottom:849.612000pt;}
.y53{bottom:851.074667pt;}
.y174{bottom:856.389333pt;}
.y13d{bottom:857.341333pt;}
.yc9{bottom:857.690667pt;}
.y10a{bottom:857.716000pt;}
.ye0{bottom:857.928000pt;}
.y52{bottom:867.014667pt;}
.y173{bottom:871.000000pt;}
.y13c{bottom:871.953333pt;}
.yc8{bottom:873.632000pt;}
.y109{bottom:873.657333pt;}
.y51{bottom:882.956000pt;}
.y13b{bottom:886.564000pt;}
.y172{bottom:886.941333pt;}
.yc7{bottom:889.572000pt;}
.y108{bottom:889.597333pt;}
.y50{bottom:898.896000pt;}
.y1{bottom:900.089333pt;}
.y13a{bottom:901.176000pt;}
.y171{bottom:901.553333pt;}
.yc6{bottom:905.512000pt;}
.y107{bottom:905.537333pt;}
.y4f{bottom:914.836000pt;}
.y139{bottom:915.788000pt;}
.y170{bottom:916.164000pt;}
.yc5{bottom:921.452000pt;}
.y106{bottom:921.477333pt;}
.y4e{bottom:930.776000pt;}
.y138{bottom:932.104000pt;}
.y16f{bottom:932.105333pt;}
.yc4{bottom:944.061333pt;}
.y4d{bottom:946.716000pt;}
.y16e{bottom:946.717333pt;}
.hf{height:24.696550pt;}
.h12{height:25.403229pt;}
.h15{height:32.661606pt;}
.ha{height:34.000589pt;}
.h16{height:34.240589pt;}
.h5{height:35.865600pt;}
.h7{height:36.290431pt;}
.h13{height:36.874903pt;}
.h8{height:37.778179pt;}
.h14{height:38.039513pt;}
.hb{height:39.850400pt;}
.h6{height:44.250180pt;}
.h3{height:45.334118pt;}
.h4{height:45.648785pt;}
.h2{height:45.654118pt;}
.he{height:46.320562pt;}
.hc{height:46.325895pt;}
.h1{height:53.100068pt;}
.hd{height:56.098179pt;}
.h10{height:75.797067pt;}
.h11{height:86.922667pt;}
.h9{height:104.687500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:42.666667pt;}
.xd{left:66.816000pt;}
.x1{left:71.026667pt;}
.x29{left:72.793333pt;}
.xa{left:74.786667pt;}
.xc{left:82.756000pt;}
.x28{left:93.374667pt;}
.x5{left:98.004000pt;}
.x2a{left:102.006667pt;}
.x2{left:106.041333pt;}
.x24{left:134.958667pt;}
.x13{left:138.400000pt;}
.x23{left:144.569333pt;}
.x20{left:159.904000pt;}
.x22{left:163.769333pt;}
.x1e{left:165.065333pt;}
.x21{left:171.706667pt;}
.x1f{left:174.297333pt;}
.x14{left:185.016000pt;}
.xb{left:194.660000pt;}
.x15{left:203.108000pt;}
.x16{left:215.985333pt;}
.x7{left:224.329333pt;}
.x6{left:279.833333pt;}
.x11{left:339.145333pt;}
.x8{left:362.657333pt;}
.x12{left:373.477333pt;}
.xe{left:411.816000pt;}
.x26{left:417.793333pt;}
.xf{left:427.756000pt;}
.x27{left:438.374667pt;}
.x3{left:443.856000pt;}
.x1d{left:459.701333pt;}
.x1c{left:460.764000pt;}
.x1a{left:487.297333pt;}
.x9{left:497.956000pt;}
.x1b{left:499.186667pt;}
.x19{left:503.689333pt;}
.x17{left:513.757333pt;}
.x18{left:517.822667pt;}
.x25{left:593.485333pt;}
.x4{left:715.392000pt;}
}




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