
    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_277596844e5ec9f408a08afa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.160000;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_6fdf299b9cf75dbe21fc1f58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_489747440e66f63dd794e287.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_ad8ee463c794259dc0d83e12.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_eee830e7d54abdfe2abd77b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_5f24e84ed592649459b9e07f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.195000;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_971ba89e148c3f222c83fe1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_6a357233835dce56e6493b2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_0fe395e7fe0a2df9962ae557.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.047000;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_979ae1796957687fd33baf14.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.015000;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_28662c1a47c45a79ad839178.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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;}
.m7{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.733200px;}
.ls8{letter-spacing:-1.015200px;}
.ls9{letter-spacing:-0.840000px;}
.lsb{letter-spacing:-0.564000px;}
.lsa{letter-spacing:-0.558000px;}
.lsc{letter-spacing:-0.450000px;}
.ls7{letter-spacing:-0.444000px;}
.ls5{letter-spacing:-0.282000px;}
.ls6{letter-spacing:-0.279000px;}
.lsd{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls4{letter-spacing:-0.168000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.222000px;}
.ls3{letter-spacing:0.710400px;}
.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;}
}
.ws3a{word-spacing:-16.694400px;}
.wsb9{word-spacing:-16.516800px;}
.wsfe{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.000000px;}
.wsfc{word-spacing:-11.700000px;}
.wsae{word-spacing:-11.676000px;}
.ws3d{word-spacing:-10.500000px;}
.wsd1{word-spacing:-10.332000px;}
.ws12e{word-spacing:-10.080000px;}
.wsfd{word-spacing:-9.000000px;}
.ws1{word-spacing:-8.880000px;}
.ws18{word-spacing:-8.658000px;}
.ws3c{word-spacing:-8.400000px;}
.wsaf{word-spacing:-8.232000px;}
.ws3b{word-spacing:-6.576240px;}
.wsf8{word-spacing:-3.327600px;}
.wsf5{word-spacing:-3.271200px;}
.ws49{word-spacing:-3.236400px;}
.wsbb{word-spacing:-3.180600px;}
.ws4b{word-spacing:-3.158400px;}
.ws8b{word-spacing:-3.102000px;}
.ws93{word-spacing:-3.069000px;}
.wsff{word-spacing:-3.045600px;}
.wsa1{word-spacing:-3.013200px;}
.ws6b{word-spacing:-2.989200px;}
.wsa8{word-spacing:-2.876400px;}
.ws92{word-spacing:-2.845800px;}
.ws1e{word-spacing:-2.734200px;}
.ws3f{word-spacing:-2.707200px;}
.ws44{word-spacing:-2.678400px;}
.ws71{word-spacing:-2.650800px;}
.ws2a{word-spacing:-2.538000px;}
.ws46{word-spacing:-2.511000px;}
.ws95{word-spacing:-2.425200px;}
.ws14{word-spacing:-2.399400px;}
.wse7{word-spacing:-2.368800px;}
.ws20{word-spacing:-2.343600px;}
.ws6a{word-spacing:-2.256000px;}
.ws61{word-spacing:-2.232000px;}
.ws27{word-spacing:-2.199600px;}
.wsa5{word-spacing:-2.143200px;}
.ws67{word-spacing:-2.086800px;}
.ws83{word-spacing:-2.064600px;}
.ws4{word-spacing:-2.064000px;}
.wsbe{word-spacing:-2.030400px;}
.wsd8{word-spacing:-1.917600px;}
.ws91{word-spacing:-1.897200px;}
.ws77{word-spacing:-1.785600px;}
.ws6c{word-spacing:-1.748400px;}
.ws96{word-spacing:-1.731600px;}
.wsdb{word-spacing:-1.722000px;}
.wsf6{word-spacing:-1.692000px;}
.ws40{word-spacing:-1.635600px;}
.ws7b{word-spacing:-1.618200px;}
.wsd5{word-spacing:-1.579200px;}
.ws118{word-spacing:-1.575000px;}
.ws25{word-spacing:-1.562400px;}
.ws36{word-spacing:-1.522800px;}
.ws84{word-spacing:-1.450800px;}
.wsb8{word-spacing:-1.420800px;}
.ws41{word-spacing:-1.410000px;}
.ws37{word-spacing:-1.353600px;}
.ws59{word-spacing:-1.344000px;}
.ws11{word-spacing:-1.339200px;}
.ws12a{word-spacing:-1.305000px;}
.wsb7{word-spacing:-1.302000px;}
.ws6e{word-spacing:-1.297200px;}
.wsfa{word-spacing:-1.283400px;}
.ws89{word-spacing:-1.240800px;}
.wsa0{word-spacing:-1.198800px;}
.ws81{word-spacing:-1.184400px;}
.wsde{word-spacing:-1.176000px;}
.wsc2{word-spacing:-1.128000px;}
.ws12{word-spacing:-1.060200px;}
.wsf2{word-spacing:-1.004400px;}
.ws11f{word-spacing:-0.945000px;}
.ws3e{word-spacing:-0.932400px;}
.wsc{word-spacing:-0.928800px;}
.wsee{word-spacing:-0.902400px;}
.ws17{word-spacing:-0.892800px;}
.wsda{word-spacing:-0.882000px;}
.ws72{word-spacing:-0.846000px;}
.ws79{word-spacing:-0.837000px;}
.ws30{word-spacing:-0.789600px;}
.ws75{word-spacing:-0.754800px;}
.ws99{word-spacing:-0.733200px;}
.ws16{word-spacing:-0.725400px;}
.wsd{word-spacing:-0.722400px;}
.ws130{word-spacing:-0.705600px;}
.wsab{word-spacing:-0.676800px;}
.wsc7{word-spacing:-0.672000px;}
.ws22{word-spacing:-0.669600px;}
.wsb6{word-spacing:-0.630000px;}
.ws8e{word-spacing:-0.620400px;}
.ws132{word-spacing:-0.604800px;}
.ws56{word-spacing:-0.570000px;}
.wsa4{word-spacing:-0.564000px;}
.ws9{word-spacing:-0.516000px;}
.ws42{word-spacing:-0.507600px;}
.wsc8{word-spacing:-0.504000px;}
.ws78{word-spacing:-0.502200px;}
.wsa{word-spacing:-0.464400px;}
.wscf{word-spacing:-0.462000px;}
.wsb5{word-spacing:-0.451200px;}
.ws76{word-spacing:-0.446400px;}
.ws19{word-spacing:-0.444000px;}
.ws53{word-spacing:-0.420000px;}
.ws4c{word-spacing:-0.394800px;}
.ws62{word-spacing:-0.355200px;}
.ws85{word-spacing:-0.338400px;}
.ws52{word-spacing:-0.294000px;}
.ws73{word-spacing:-0.282000px;}
.wse0{word-spacing:-0.252000px;}
.ws58{word-spacing:-0.225600px;}
.ws23{word-spacing:-0.223200px;}
.ws70{word-spacing:-0.169200px;}
.wsdf{word-spacing:-0.084000px;}
.ws65{word-spacing:-0.056400px;}
.ws1b{word-spacing:-0.055800px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.051600px;}
.ws80{word-spacing:0.056400px;}
.wscd{word-spacing:0.084000px;}
.wsd6{word-spacing:0.112800px;}
.ws51{word-spacing:0.126000px;}
.wscb{word-spacing:0.168000px;}
.ws2f{word-spacing:0.169200px;}
.ws1a{word-spacing:0.223200px;}
.ws63{word-spacing:0.225600px;}
.wsf3{word-spacing:0.279000px;}
.ws29{word-spacing:0.282000px;}
.ws4e{word-spacing:0.338400px;}
.ws12c{word-spacing:0.360000px;}
.ws7{word-spacing:0.361200px;}
.ws6d{word-spacing:0.394800px;}
.wse8{word-spacing:0.420000px;}
.wse4{word-spacing:0.432000px;}
.wsc1{word-spacing:0.451200px;}
.ws21{word-spacing:0.502200px;}
.ws31{word-spacing:0.507600px;}
.ws124{word-spacing:0.540000px;}
.wse1{word-spacing:0.546000px;}
.wsad{word-spacing:0.588000px;}
.ws74{word-spacing:0.613800px;}
.ws38{word-spacing:0.620400px;}
.ws111{word-spacing:0.630000px;}
.wsbc{word-spacing:0.669600px;}
.ws100{word-spacing:0.676800px;}
.wsb{word-spacing:0.722400px;}
.ws1d{word-spacing:0.725400px;}
.ws98{word-spacing:0.733200px;}
.ws102{word-spacing:0.789600px;}
.ws5{word-spacing:0.825600px;}
.wse2{word-spacing:0.837000px;}
.ws4a{word-spacing:0.846000px;}
.wsfb{word-spacing:0.888000px;}
.ws47{word-spacing:0.892800px;}
.wsd3{word-spacing:0.902400px;}
.wsd7{word-spacing:0.958800px;}
.ws7d{word-spacing:1.004400px;}
.ws6f{word-spacing:1.015200px;}
.ws7a{word-spacing:1.060200px;}
.ws2d{word-spacing:1.071600px;}
.wsac{word-spacing:1.092000px;}
.wsba{word-spacing:1.116000px;}
.ws35{word-spacing:1.128000px;}
.wsca{word-spacing:1.134000px;}
.wsa3{word-spacing:1.297200px;}
.ws10b{word-spacing:1.305000px;}
.wse3{word-spacing:1.339200px;}
.ws12d{word-spacing:1.350000px;}
.ws39{word-spacing:1.353600px;}
.ws2e{word-spacing:1.410000px;}
.ws5e{word-spacing:1.450800px;}
.ws64{word-spacing:1.466400px;}
.ws116{word-spacing:1.485000px;}
.ws87{word-spacing:1.522800px;}
.wsc9{word-spacing:1.554000px;}
.ws9e{word-spacing:1.562400px;}
.ws107{word-spacing:1.575000px;}
.ws4d{word-spacing:1.579200px;}
.wscc{word-spacing:1.596000px;}
.ws15{word-spacing:1.674000px;}
.wsc5{word-spacing:1.722000px;}
.ws5d{word-spacing:1.748400px;}
.wsdd{word-spacing:1.806000px;}
.ws9f{word-spacing:1.841400px;}
.wsa7{word-spacing:1.861200px;}
.wse{word-spacing:1.960800px;}
.ws10a{word-spacing:1.980000px;}
.wsa2{word-spacing:2.008800px;}
.ws8{word-spacing:2.012400px;}
.ws24{word-spacing:2.120400px;}
.ws8f{word-spacing:2.143200px;}
.ws45{word-spacing:2.176200px;}
.wsc3{word-spacing:2.199600px;}
.wsdc{word-spacing:2.226000px;}
.ws13{word-spacing:2.232000px;}
.ws8a{word-spacing:2.312400px;}
.ws9a{word-spacing:2.399400px;}
.wsb0{word-spacing:2.425200px;}
.wsf{word-spacing:2.476800px;}
.ws9d{word-spacing:2.622600px;}
.wsf7{word-spacing:2.650800px;}
.ws8c{word-spacing:2.820000px;}
.ws9c{word-spacing:2.901600px;}
.ws119{word-spacing:2.925000px;}
.ws7c{word-spacing:2.957400px;}
.ws28{word-spacing:2.989200px;}
.ws1f{word-spacing:3.013200px;}
.ws5c{word-spacing:3.045600px;}
.ws66{word-spacing:3.102000px;}
.ws11a{word-spacing:3.105000px;}
.wsf4{word-spacing:3.108000px;}
.ws88{word-spacing:3.158400px;}
.wsa9{word-spacing:3.214800px;}
.ws2c{word-spacing:3.384000px;}
.ws94{word-spacing:3.403800px;}
.wse9{word-spacing:3.418800px;}
.ws60{word-spacing:3.515400px;}
.ws4f{word-spacing:3.553200px;}
.ws9b{word-spacing:3.571200px;}
.ws26{word-spacing:3.682800px;}
.wsea{word-spacing:3.685200px;}
.ws11e{word-spacing:3.690000px;}
.ws97{word-spacing:3.778800px;}
.ws43{word-spacing:3.891600px;}
.ws1c{word-spacing:3.906000px;}
.ws90{word-spacing:3.948000px;}
.wsd9{word-spacing:4.004400px;}
.wsf1{word-spacing:4.017600px;}
.wsc6{word-spacing:4.074000px;}
.ws69{word-spacing:4.117200px;}
.ws57{word-spacing:4.173600px;}
.ws131{word-spacing:4.183200px;}
.wsb3{word-spacing:4.230000px;}
.ws54{word-spacing:4.262400px;}
.wsbf{word-spacing:4.286400px;}
.wsce{word-spacing:4.452000px;}
.wsa6{word-spacing:4.455600px;}
.ws115{word-spacing:4.590000px;}
.ws11b{word-spacing:4.725000px;}
.ws34{word-spacing:4.737600px;}
.wsf9{word-spacing:4.743000px;}
.ws2b{word-spacing:4.794000px;}
.wsd2{word-spacing:4.850400px;}
.wsc4{word-spacing:4.914000px;}
.ws101{word-spacing:5.076000px;}
.ws10d{word-spacing:5.130000px;}
.wsc0{word-spacing:5.132400px;}
.wsec{word-spacing:5.188800px;}
.ws117{word-spacing:5.310000px;}
.ws68{word-spacing:5.358000px;}
.wsbd{word-spacing:5.470800px;}
.ws5f{word-spacing:5.580000px;}
.ws7e{word-spacing:5.691600px;}
.ws82{word-spacing:5.696400px;}
.ws123{word-spacing:5.715000px;}
.wsd4{word-spacing:5.752800px;}
.wsb4{word-spacing:5.865600px;}
.wsb1{word-spacing:6.147600px;}
.ws48{word-spacing:6.193800px;}
.wse6{word-spacing:6.260400px;}
.ws7f{word-spacing:6.472800px;}
.wseb{word-spacing:6.598800px;}
.wsaa{word-spacing:6.655200px;}
.ws11d{word-spacing:6.750000px;}
.ws10{word-spacing:6.751800px;}
.wsb2{word-spacing:6.880800px;}
.wse5{word-spacing:7.332000px;}
.ws11c{word-spacing:7.335000px;}
.ws5a{word-spacing:7.388400px;}
.wsed{word-spacing:7.444800px;}
.ws86{word-spacing:7.614000px;}
.ws10e{word-spacing:7.830000px;}
.ws126{word-spacing:7.920000px;}
.wsf0{word-spacing:7.947600px;}
.ws33{word-spacing:8.178000px;}
.ws12b{word-spacing:8.505000px;}
.ws108{word-spacing:8.640000px;}
.ws120{word-spacing:8.685000px;}
.ws105{word-spacing:8.865000px;}
.ws122{word-spacing:9.045000px;}
.ws5b{word-spacing:9.588000px;}
.ws104{word-spacing:9.720000px;}
.ws109{word-spacing:9.855000px;}
.ws10c{word-spacing:9.900000px;}
.ws32{word-spacing:9.926400px;}
.ws8d{word-spacing:10.208400px;}
.ws12f{word-spacing:10.432800px;}
.ws55{word-spacing:10.545000px;}
.ws110{word-spacing:10.665000px;}
.ws125{word-spacing:10.845000px;}
.ws114{word-spacing:11.025000px;}
.ws106{word-spacing:11.700000px;}
.ws127{word-spacing:11.970000px;}
.ws10f{word-spacing:12.735000px;}
.ws112{word-spacing:12.780000px;}
.ws129{word-spacing:12.960000px;}
.ws121{word-spacing:13.320000px;}
.wsef{word-spacing:13.364400px;}
.ws103{word-spacing:16.335000px;}
.ws128{word-spacing:17.280000px;}
.ws113{word-spacing:21.600000px;}
.wsd0{word-spacing:41.076000px;}
.ws50{word-spacing:63.588000px;}
.ws2{word-spacing:2042.820000px;}
._d{margin-left:-26.527860px;}
._1b{margin-left:-19.525680px;}
._14{margin-left:-17.631047px;}
._10{margin-left:-16.161240px;}
._13{margin-left:-15.119976px;}
._16{margin-left:-10.752060px;}
._6{margin-left:-7.198200px;}
._8{margin-left:-6.178440px;}
._f{margin-left:-5.022720px;}
._7{margin-left:-3.971820px;}
._5{margin-left:-2.889600px;}
._4{margin-left:-1.105980px;}
._0{width:1.095480px;}
._2{width:2.369520px;}
._1{width:3.419520px;}
._3{width:5.494980px;}
._1a{width:7.439040px;}
._19{width:9.990000px;}
._c{width:24.048000px;}
._15{width:36.161753px;}
._18{width:40.655753px;}
._12{width:41.705753px;}
._11{width:62.327753px;}
._a{width:63.419753px;}
._e{width:64.763753px;}
._17{width:128.404653px;}
._9{width:130.047306px;}
._b{width:131.912204px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:32.531400px;}
.fsb{font-size:32.881200px;}
.fsd{font-size:33.231000px;}
.fs8{font-size:42.000000px;}
.fs7{font-size:44.400000px;}
.fs0{font-size:45.000000px;}
.fs10{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fse{font-size:52.800000px;}
.fsf{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs9{font-size:56.400000px;}
.fsc{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs5{font-size:75.600000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:65.260950px;}
.yd4{bottom:104.130000px;}
.y1c{bottom:104.135550px;}
.y151{bottom:104.151600px;}
.y13d{bottom:104.162400px;}
.ya5{bottom:104.167800px;}
.ye8{bottom:104.170350px;}
.yf1{bottom:104.171400px;}
.y11b{bottom:104.171550px;}
.y67{bottom:104.171850px;}
.yca{bottom:104.173200px;}
.yc3{bottom:104.173350px;}
.y69{bottom:104.175900px;}
.yb7{bottom:104.178000px;}
.ybb{bottom:104.185200px;}
.y96{bottom:104.211600px;}
.y46{bottom:104.226000px;}
.y176{bottom:110.819700px;}
.y68{bottom:117.973200px;}
.y66{bottom:118.271400px;}
.ye7{bottom:118.271850px;}
.y7a{bottom:118.273350px;}
.y196{bottom:119.377800px;}
.y13c{bottom:122.516400px;}
.y11a{bottom:122.523600px;}
.yf0{bottom:122.525400px;}
.yd3{bottom:124.385400px;}
.y1b{bottom:124.390950px;}
.y150{bottom:124.407000px;}
.ya4{bottom:124.423200px;}
.yb6{bottom:124.425600px;}
.yba{bottom:124.432800px;}
.y95{bottom:124.459200px;}
.y45{bottom:124.473600px;}
.y175{bottom:125.073450px;}
.y79{bottom:132.373350px;}
.y195{bottom:133.631550px;}
.y13b{bottom:136.617900px;}
.y65{bottom:136.625400px;}
.y119{bottom:140.877600px;}
.y174{bottom:143.579700px;}
.yd2{bottom:144.640800px;}
.y1a{bottom:144.646350px;}
.y14f{bottom:144.662400px;}
.ya3{bottom:144.673200px;}
.yb9{bottom:144.680400px;}
.yc2{bottom:144.685200px;}
.y94{bottom:144.706800px;}
.y44{bottom:144.721200px;}
.y13a{bottom:150.719400px;}
.y194{bottom:152.137800px;}
.y64{bottom:154.977600px;}
.y173{bottom:157.833450px;}
.y118{bottom:159.212850px;}
.y139{bottom:164.820900px;}
.yb5{bottom:164.847600px;}
.yd1{bottom:164.896200px;}
.y19{bottom:164.901750px;}
.y89{bottom:164.917800px;}
.yc9{bottom:164.923200px;}
.yb8{bottom:164.928000px;}
.yc1{bottom:164.932800px;}
.y14e{bottom:164.935200px;}
.y93{bottom:164.954400px;}
.y43{bottom:164.968800px;}
.y193{bottom:166.391550px;}
.yef{bottom:173.329650px;}
.y172{bottom:176.339700px;}
.y117{bottom:177.566850px;}
.y138{bottom:178.922400px;}
.y192{bottom:184.897800px;}
.yb4{bottom:185.103000px;}
.y86{bottom:185.146200px;}
.yd0{bottom:185.151600px;}
.y18{bottom:185.157150px;}
.y88{bottom:185.173200px;}
.y78{bottom:185.175600px;}
.ye6{bottom:185.178000px;}
.yc0{bottom:185.180400px;}
.ya2{bottom:185.182800px;}
.y92{bottom:185.202000px;}
.y42{bottom:185.216400px;}
.y87{bottom:189.818550px;}
.y171{bottom:190.593450px;}
.y116{bottom:191.668350px;}
.y137{bottom:193.023900px;}
.y191{bottom:199.151550px;}
.y170{bottom:204.847200px;}
.yb3{bottom:205.358400px;}
.y85{bottom:205.401600px;}
.ycf{bottom:205.407000px;}
.y17{bottom:205.412550px;}
.y77{bottom:205.423200px;}
.ye5{bottom:205.425600px;}
.ybf{bottom:205.428000px;}
.ya1{bottom:205.430400px;}
.y91{bottom:205.449600px;}
.y41{bottom:205.464000px;}
.y115{bottom:205.769850px;}
.y136{bottom:207.123600px;}
.y190{bottom:217.642200px;}
.y114{bottom:219.871350px;}
.y16f{bottom:223.353450px;}
.y135{bottom:225.477600px;}
.yb2{bottom:225.613800px;}
.y84{bottom:225.657000px;}
.y76{bottom:225.662400px;}
.y16{bottom:225.667950px;}
.ye4{bottom:225.673200px;}
.ybe{bottom:225.675600px;}
.ya0{bottom:225.678000px;}
.ye3{bottom:225.687600px;}
.y147{bottom:225.690000px;}
.y90{bottom:225.697200px;}
.y40{bottom:225.711600px;}
.y18f{bottom:231.895950px;}
.y113{bottom:233.972850px;}
.y16e{bottom:237.607200px;}
.y134{bottom:239.574150px;}
.yb1{bottom:245.869200px;}
.y83{bottom:245.912400px;}
.y75{bottom:245.917800px;}
.y13f{bottom:245.923200px;}
.y15{bottom:245.923350px;}
.y9f{bottom:245.925600px;}
.ye2{bottom:245.935200px;}
.y146{bottom:245.937600px;}
.y8f{bottom:245.944800px;}
.ybd{bottom:245.947200px;}
.y3f{bottom:245.959200px;}
.y18e{bottom:246.149700px;}
.y112{bottom:248.074350px;}
.y16d{bottom:256.113450px;}
.y133{bottom:257.928150px;}
.y18d{bottom:260.403450px;}
.y111{bottom:262.175850px;}
.yb0{bottom:266.124600px;}
.y82{bottom:266.167800px;}
.y74{bottom:266.173200px;}
.y63{bottom:266.178000px;}
.ye1{bottom:266.182800px;}
.y145{bottom:266.185200px;}
.yee{bottom:266.187600px;}
.y8e{bottom:266.192400px;}
.ybc{bottom:266.194800px;}
.y3e{bottom:266.206800px;}
.y16c{bottom:270.367200px;}
.y13e{bottom:270.818550px;}
.y132{bottom:272.027850px;}
.y110{bottom:276.277350px;}
.y18c{bottom:278.748450px;}
.y16b{bottom:284.620950px;}
.yaf{bottom:286.380000px;}
.y14d{bottom:286.390800px;}
.yc8{bottom:286.396200px;}
.y81{bottom:286.423200px;}
.y14{bottom:286.423350px;}
.y62{bottom:286.425600px;}
.ye0{bottom:286.430400px;}
.y144{bottom:286.432800px;}
.yed{bottom:286.435200px;}
.y8d{bottom:286.440000px;}
.y9e{bottom:286.442400px;}
.y3d{bottom:286.454400px;}
.y10f{bottom:290.378850px;}
.y131{bottom:290.381850px;}
.y18b{bottom:293.002200px;}
.y16a{bottom:303.127200px;}
.y10e{bottom:304.480350px;}
.yae{bottom:306.635400px;}
.y14c{bottom:306.646200px;}
.yc7{bottom:306.651600px;}
.y80{bottom:306.673200px;}
.y73{bottom:306.673950px;}
.ydf{bottom:306.678000px;}
.y61{bottom:306.680400px;}
.yec{bottom:306.682800px;}
.y8c{bottom:306.687600px;}
.y9d{bottom:306.690000px;}
.y3c{bottom:306.702000px;}
.y18a{bottom:307.255950px;}
.y169{bottom:317.380950px;}
.y10d{bottom:318.581850px;}
.y189{bottom:321.509700px;}
.yad{bottom:326.890800px;}
.y14b{bottom:326.901600px;}
.yc6{bottom:326.907000px;}
.y72{bottom:326.923200px;}
.yde{bottom:326.925600px;}
.y60{bottom:326.928000px;}
.yeb{bottom:326.930400px;}
.y8b{bottom:326.935200px;}
.y9c{bottom:326.937600px;}
.yce{bottom:326.940000px;}
.y3b{bottom:326.949600px;}
.y168{bottom:331.634700px;}
.y10c{bottom:332.681850px;}
.y188{bottom:335.763450px;}
.y167{bottom:345.888450px;}
.yac{bottom:347.146200px;}
.y14a{bottom:347.157000px;}
.yc5{bottom:347.162400px;}
.ydd{bottom:347.173200px;}
.y71{bottom:347.173950px;}
.y5f{bottom:347.175600px;}
.ydc{bottom:347.178000px;}
.y7f{bottom:347.182800px;}
.y9b{bottom:347.185200px;}
.ycd{bottom:347.187600px;}
.y3a{bottom:347.197200px;}
.y187{bottom:350.017200px;}
.y166{bottom:360.142200px;}
.y186{bottom:364.270950px;}
.y13{bottom:367.387350px;}
.yab{bottom:367.401600px;}
.y149{bottom:367.412400px;}
.yc4{bottom:367.417800px;}
.y70{bottom:367.423200px;}
.ydb{bottom:367.425600px;}
.y7e{bottom:367.430400px;}
.y9a{bottom:367.432800px;}
.y5e{bottom:367.435200px;}
.y39{bottom:367.444800px;}
.y165{bottom:374.395950px;}
.y185{bottom:378.524700px;}
.y12{bottom:387.640350px;}
.yaa{bottom:387.657000px;}
.y148{bottom:387.667800px;}
.y6f{bottom:387.673200px;}
.y7d{bottom:387.678000px;}
.y99{bottom:387.680400px;}
.y5d{bottom:387.682800px;}
.y38{bottom:387.692400px;}
.y164{bottom:388.649700px;}
.y184{bottom:397.030950px;}
.y163{bottom:402.903450px;}
.y11{bottom:407.893350px;}
.yda{bottom:407.901600px;}
.ya9{bottom:407.912400px;}
.y6e{bottom:407.923200px;}
.y7c{bottom:407.925600px;}
.y98{bottom:407.928000px;}
.y5c{bottom:407.930400px;}
.y37{bottom:407.940000px;}
.y183{bottom:411.284700px;}
.y162{bottom:421.394250px;}
.y182{bottom:425.538450px;}
.y10{bottom:428.146350px;}
.yd9{bottom:428.157000px;}
.ya8{bottom:428.167800px;}
.y6d{bottom:428.173200px;}
.y97{bottom:428.175600px;}
.y5b{bottom:428.178000px;}
.y10b{bottom:428.182800px;}
.y36{bottom:428.187600px;}
.ycc{bottom:429.783300px;}
.y161{bottom:435.648000px;}
.ycb{bottom:443.580600px;}
.y181{bottom:444.044700px;}
.yf{bottom:448.399350px;}
.yd8{bottom:448.412400px;}
.y6c{bottom:448.423200px;}
.y5a{bottom:448.425600px;}
.y10a{bottom:448.430400px;}
.y35{bottom:448.435200px;}
.y130{bottom:448.452000px;}
.y160{bottom:449.901750px;}
.y180{bottom:458.298450px;}
.y15f{bottom:464.155500px;}
.ye{bottom:468.652350px;}
.yd7{bottom:468.667800px;}
.y59{bottom:468.673200px;}
.yea{bottom:468.675600px;}
.y109{bottom:468.678000px;}
.y34{bottom:468.682800px;}
.y12f{bottom:468.699600px;}
.y17f{bottom:472.552200px;}
.y6b{bottom:473.418450px;}
.y15e{bottom:482.630100px;}
.y17e{bottom:486.805950px;}
.y57{bottom:488.874600px;}
.yd{bottom:488.905350px;}
.yd6{bottom:488.923200px;}
.y108{bottom:488.925600px;}
.y33{bottom:488.930400px;}
.y12e{bottom:488.947200px;}
.y143{bottom:488.976450px;}
.y142{bottom:488.981700px;}
.y8a{bottom:489.555000px;}
.y58{bottom:493.568550px;}
.y15d{bottom:496.883850px;}
.y17d{bottom:501.059700px;}
.y141{bottom:502.779000px;}
.y56{bottom:509.130000px;}
.yc{bottom:509.158350px;}
.y6a{bottom:509.173200px;}
.y107{bottom:509.175600px;}
.y32{bottom:509.178000px;}
.y12d{bottom:509.194800px;}
.ya7{bottom:509.773500px;}
.y15c{bottom:511.137600px;}
.y17c{bottom:515.313450px;}
.y140{bottom:516.576300px;}
.ya6{bottom:523.570800px;}
.y15b{bottom:525.391350px;}
.yf2{bottom:526.781400px;}
.y55{bottom:529.385400px;}
.yb{bottom:529.411350px;}
.y31{bottom:529.425600px;}
.y106{bottom:529.440000px;}
.y12c{bottom:529.442400px;}
.y17b{bottom:529.567200px;}
.yd5{bottom:531.011700px;}
.y15a{bottom:539.645100px;}
.ye9{bottom:540.578700px;}
.y17a{bottom:543.820950px;}
.y54{bottom:549.640800px;}
.ya{bottom:549.664350px;}
.y30{bottom:549.673200px;}
.y105{bottom:549.687600px;}
.y12b{bottom:549.690000px;}
.y159{bottom:558.151350px;}
.y179{bottom:562.327200px;}
.y7b{bottom:562.901550px;}
.y2f{bottom:569.836800px;}
.y53{bottom:569.896200px;}
.y9{bottom:569.917350px;}
.y104{bottom:569.935200px;}
.y12a{bottom:569.937600px;}
.y158{bottom:572.405100px;}
.y178{bottom:576.580950px;}
.y2e{bottom:590.092200px;}
.y52{bottom:590.151600px;}
.y8{bottom:590.170350px;}
.y103{bottom:590.182800px;}
.y129{bottom:590.185200px;}
.y177{bottom:590.834700px;}
.y157{bottom:590.911350px;}
.y2d{bottom:610.347600px;}
.y51{bottom:610.407000px;}
.y7{bottom:610.423350px;}
.y102{bottom:610.430400px;}
.y128{bottom:610.432800px;}
.y2c{bottom:630.603000px;}
.y50{bottom:630.662400px;}
.y156{bottom:630.673200px;}
.y101{bottom:630.678000px;}
.y127{bottom:630.680400px;}
.y2b{bottom:650.858400px;}
.y4f{bottom:650.917800px;}
.y6{bottom:650.923350px;}
.y100{bottom:650.925600px;}
.y126{bottom:650.928000px;}
.y19b{bottom:650.930400px;}
.y2a{bottom:671.113800px;}
.y4e{bottom:671.173200px;}
.y125{bottom:671.175600px;}
.y19a{bottom:671.178600px;}
.y29{bottom:691.369200px;}
.yff{bottom:691.407000px;}
.y199{bottom:691.426800px;}
.y124{bottom:691.442400px;}
.y28{bottom:711.624600px;}
.yfe{bottom:711.662400px;}
.y4d{bottom:711.673200px;}
.y198{bottom:711.675000px;}
.y123{bottom:711.690000px;}
.y155{bottom:711.694800px;}
.y27{bottom:731.880000px;}
.yfd{bottom:731.917800px;}
.y197{bottom:731.923200px;}
.y122{bottom:731.937600px;}
.y154{bottom:731.942400px;}
.y26{bottom:752.135400px;}
.yfa{bottom:752.157000px;}
.y5{bottom:752.165850px;}
.yfc{bottom:752.173200px;}
.y121{bottom:752.185200px;}
.y153{bottom:752.190000px;}
.yfb{bottom:756.818550px;}
.y25{bottom:772.390800px;}
.yf9{bottom:772.412400px;}
.y120{bottom:772.432800px;}
.y152{bottom:772.437600px;}
.y24{bottom:792.646200px;}
.yf8{bottom:792.667800px;}
.y4{bottom:792.669600px;}
.y11f{bottom:792.680400px;}
.y4c{bottom:792.685200px;}
.y23{bottom:812.901600px;}
.yf5{bottom:812.917800px;}
.yf7{bottom:812.923200px;}
.y11e{bottom:812.928000px;}
.y4b{bottom:812.932800px;}
.yf6{bottom:817.568550px;}
.y22{bottom:833.157000px;}
.yf4{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y11d{bottom:833.175600px;}
.y4a{bottom:833.180400px;}
.y21{bottom:853.412400px;}
.y11c{bottom:853.423200px;}
.y49{bottom:853.428000px;}
.yf3{bottom:869.920200px;}
.y20{bottom:873.667800px;}
.y48{bottom:873.675600px;}
.y1f{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y1{bottom:952.912500px;}
.y1e{bottom:952.953150px;}
.y47{bottom:953.019600px;}
.he{height:23.552734px;}
.h14{height:24.059244px;}
.h9{height:34.942800px;}
.hd{height:35.830800px;}
.h11{height:36.078000px;}
.h1d{height:36.085200px;}
.h12{height:36.085800px;}
.h20{height:36.091800px;}
.h21{height:36.121800px;}
.h1c{height:36.145800px;}
.ha{height:36.315000px;}
.h23{height:36.489600px;}
.hb{height:38.139600px;}
.h8{height:40.566600px;}
.h25{height:40.672800px;}
.hc{height:41.002800px;}
.h13{height:41.439000px;}
.h15{height:41.553600px;}
.h6{height:41.641200px;}
.h2{height:41.670000px;}
.h1f{height:42.471989px;}
.h16{height:42.491189px;}
.h1e{height:42.510389px;}
.h1b{height:42.519989px;}
.h1a{height:42.529589px;}
.hf{height:42.539189px;}
.h19{height:42.548789px;}
.h10{height:42.558389px;}
.h17{height:42.567989px;}
.h18{height:42.577589px;}
.h22{height:46.494000px;}
.h5{height:47.220000px;}
.h24{height:48.164400px;}
.h7{height:54.734400px;}
.h3{height:56.671200px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x15{left:89.292113px;}
.x3{left:93.543300px;}
.xd{left:95.551062px;}
.x5{left:99.930750px;}
.x8{left:110.551200px;}
.xe{left:112.462200px;}
.xf{left:121.069950px;}
.x2{left:123.585300px;}
.x6{left:227.561550px;}
.x7{left:231.957900px;}
.x4{left:338.124750px;}
.x12{left:342.019650px;}
.x13{left:359.787300px;}
.x16{left:372.045900px;}
.x9{left:384.017250px;}
.xa{left:388.321200px;}
.xc{left:511.512000px;}
.x10{left:552.109650px;}
.x11{left:560.717250px;}
.xb{left:585.040650px;}
.x14{left:610.330800px;}
@media print{
.v2{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.651733pt;}
.ls8{letter-spacing:-0.902400pt;}
.ls9{letter-spacing:-0.746667pt;}
.lsb{letter-spacing:-0.501333pt;}
.lsa{letter-spacing:-0.496000pt;}
.lsc{letter-spacing:-0.400000pt;}
.ls7{letter-spacing:-0.394667pt;}
.ls5{letter-spacing:-0.250667pt;}
.ls6{letter-spacing:-0.248000pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls4{letter-spacing:-0.149333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.197333pt;}
.ls3{letter-spacing:0.631467pt;}
.ws3a{word-spacing:-14.839467pt;}
.wsb9{word-spacing:-14.681600pt;}
.wsfe{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.666667pt;}
.wsfc{word-spacing:-10.400000pt;}
.wsae{word-spacing:-10.378667pt;}
.ws3d{word-spacing:-9.333333pt;}
.wsd1{word-spacing:-9.184000pt;}
.ws12e{word-spacing:-8.960000pt;}
.wsfd{word-spacing:-8.000000pt;}
.ws1{word-spacing:-7.893333pt;}
.ws18{word-spacing:-7.696000pt;}
.ws3c{word-spacing:-7.466667pt;}
.wsaf{word-spacing:-7.317333pt;}
.ws3b{word-spacing:-5.845547pt;}
.wsf8{word-spacing:-2.957867pt;}
.wsf5{word-spacing:-2.907733pt;}
.ws49{word-spacing:-2.876800pt;}
.wsbb{word-spacing:-2.827200pt;}
.ws4b{word-spacing:-2.807467pt;}
.ws8b{word-spacing:-2.757333pt;}
.ws93{word-spacing:-2.728000pt;}
.wsff{word-spacing:-2.707200pt;}
.wsa1{word-spacing:-2.678400pt;}
.ws6b{word-spacing:-2.657067pt;}
.wsa8{word-spacing:-2.556800pt;}
.ws92{word-spacing:-2.529600pt;}
.ws1e{word-spacing:-2.430400pt;}
.ws3f{word-spacing:-2.406400pt;}
.ws44{word-spacing:-2.380800pt;}
.ws71{word-spacing:-2.356267pt;}
.ws2a{word-spacing:-2.256000pt;}
.ws46{word-spacing:-2.232000pt;}
.ws95{word-spacing:-2.155733pt;}
.ws14{word-spacing:-2.132800pt;}
.wse7{word-spacing:-2.105600pt;}
.ws20{word-spacing:-2.083200pt;}
.ws6a{word-spacing:-2.005333pt;}
.ws61{word-spacing:-1.984000pt;}
.ws27{word-spacing:-1.955200pt;}
.wsa5{word-spacing:-1.905067pt;}
.ws67{word-spacing:-1.854933pt;}
.ws83{word-spacing:-1.835200pt;}
.ws4{word-spacing:-1.834667pt;}
.wsbe{word-spacing:-1.804800pt;}
.wsd8{word-spacing:-1.704533pt;}
.ws91{word-spacing:-1.686400pt;}
.ws77{word-spacing:-1.587200pt;}
.ws6c{word-spacing:-1.554133pt;}
.ws96{word-spacing:-1.539200pt;}
.wsdb{word-spacing:-1.530667pt;}
.wsf6{word-spacing:-1.504000pt;}
.ws40{word-spacing:-1.453867pt;}
.ws7b{word-spacing:-1.438400pt;}
.wsd5{word-spacing:-1.403733pt;}
.ws118{word-spacing:-1.400000pt;}
.ws25{word-spacing:-1.388800pt;}
.ws36{word-spacing:-1.353600pt;}
.ws84{word-spacing:-1.289600pt;}
.wsb8{word-spacing:-1.262933pt;}
.ws41{word-spacing:-1.253333pt;}
.ws37{word-spacing:-1.203200pt;}
.ws59{word-spacing:-1.194667pt;}
.ws11{word-spacing:-1.190400pt;}
.ws12a{word-spacing:-1.160000pt;}
.wsb7{word-spacing:-1.157333pt;}
.ws6e{word-spacing:-1.153067pt;}
.wsfa{word-spacing:-1.140800pt;}
.ws89{word-spacing:-1.102933pt;}
.wsa0{word-spacing:-1.065600pt;}
.ws81{word-spacing:-1.052800pt;}
.wsde{word-spacing:-1.045333pt;}
.wsc2{word-spacing:-1.002667pt;}
.ws12{word-spacing:-0.942400pt;}
.wsf2{word-spacing:-0.892800pt;}
.ws11f{word-spacing:-0.840000pt;}
.ws3e{word-spacing:-0.828800pt;}
.wsc{word-spacing:-0.825600pt;}
.wsee{word-spacing:-0.802133pt;}
.ws17{word-spacing:-0.793600pt;}
.wsda{word-spacing:-0.784000pt;}
.ws72{word-spacing:-0.752000pt;}
.ws79{word-spacing:-0.744000pt;}
.ws30{word-spacing:-0.701867pt;}
.ws75{word-spacing:-0.670933pt;}
.ws99{word-spacing:-0.651733pt;}
.ws16{word-spacing:-0.644800pt;}
.wsd{word-spacing:-0.642133pt;}
.ws130{word-spacing:-0.627200pt;}
.wsab{word-spacing:-0.601600pt;}
.wsc7{word-spacing:-0.597333pt;}
.ws22{word-spacing:-0.595200pt;}
.wsb6{word-spacing:-0.560000pt;}
.ws8e{word-spacing:-0.551467pt;}
.ws132{word-spacing:-0.537600pt;}
.ws56{word-spacing:-0.506667pt;}
.wsa4{word-spacing:-0.501333pt;}
.ws9{word-spacing:-0.458667pt;}
.ws42{word-spacing:-0.451200pt;}
.wsc8{word-spacing:-0.448000pt;}
.ws78{word-spacing:-0.446400pt;}
.wsa{word-spacing:-0.412800pt;}
.wscf{word-spacing:-0.410667pt;}
.wsb5{word-spacing:-0.401067pt;}
.ws76{word-spacing:-0.396800pt;}
.ws19{word-spacing:-0.394667pt;}
.ws53{word-spacing:-0.373333pt;}
.ws4c{word-spacing:-0.350933pt;}
.ws62{word-spacing:-0.315733pt;}
.ws85{word-spacing:-0.300800pt;}
.ws52{word-spacing:-0.261333pt;}
.ws73{word-spacing:-0.250667pt;}
.wse0{word-spacing:-0.224000pt;}
.ws58{word-spacing:-0.200533pt;}
.ws23{word-spacing:-0.198400pt;}
.ws70{word-spacing:-0.150400pt;}
.wsdf{word-spacing:-0.074667pt;}
.ws65{word-spacing:-0.050133pt;}
.ws1b{word-spacing:-0.049600pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.045867pt;}
.ws80{word-spacing:0.050133pt;}
.wscd{word-spacing:0.074667pt;}
.wsd6{word-spacing:0.100267pt;}
.ws51{word-spacing:0.112000pt;}
.wscb{word-spacing:0.149333pt;}
.ws2f{word-spacing:0.150400pt;}
.ws1a{word-spacing:0.198400pt;}
.ws63{word-spacing:0.200533pt;}
.wsf3{word-spacing:0.248000pt;}
.ws29{word-spacing:0.250667pt;}
.ws4e{word-spacing:0.300800pt;}
.ws12c{word-spacing:0.320000pt;}
.ws7{word-spacing:0.321067pt;}
.ws6d{word-spacing:0.350933pt;}
.wse8{word-spacing:0.373333pt;}
.wse4{word-spacing:0.384000pt;}
.wsc1{word-spacing:0.401067pt;}
.ws21{word-spacing:0.446400pt;}
.ws31{word-spacing:0.451200pt;}
.ws124{word-spacing:0.480000pt;}
.wse1{word-spacing:0.485333pt;}
.wsad{word-spacing:0.522667pt;}
.ws74{word-spacing:0.545600pt;}
.ws38{word-spacing:0.551467pt;}
.ws111{word-spacing:0.560000pt;}
.wsbc{word-spacing:0.595200pt;}
.ws100{word-spacing:0.601600pt;}
.wsb{word-spacing:0.642133pt;}
.ws1d{word-spacing:0.644800pt;}
.ws98{word-spacing:0.651733pt;}
.ws102{word-spacing:0.701867pt;}
.ws5{word-spacing:0.733867pt;}
.wse2{word-spacing:0.744000pt;}
.ws4a{word-spacing:0.752000pt;}
.wsfb{word-spacing:0.789333pt;}
.ws47{word-spacing:0.793600pt;}
.wsd3{word-spacing:0.802133pt;}
.wsd7{word-spacing:0.852267pt;}
.ws7d{word-spacing:0.892800pt;}
.ws6f{word-spacing:0.902400pt;}
.ws7a{word-spacing:0.942400pt;}
.ws2d{word-spacing:0.952533pt;}
.wsac{word-spacing:0.970667pt;}
.wsba{word-spacing:0.992000pt;}
.ws35{word-spacing:1.002667pt;}
.wsca{word-spacing:1.008000pt;}
.wsa3{word-spacing:1.153067pt;}
.ws10b{word-spacing:1.160000pt;}
.wse3{word-spacing:1.190400pt;}
.ws12d{word-spacing:1.200000pt;}
.ws39{word-spacing:1.203200pt;}
.ws2e{word-spacing:1.253333pt;}
.ws5e{word-spacing:1.289600pt;}
.ws64{word-spacing:1.303467pt;}
.ws116{word-spacing:1.320000pt;}
.ws87{word-spacing:1.353600pt;}
.wsc9{word-spacing:1.381333pt;}
.ws9e{word-spacing:1.388800pt;}
.ws107{word-spacing:1.400000pt;}
.ws4d{word-spacing:1.403733pt;}
.wscc{word-spacing:1.418667pt;}
.ws15{word-spacing:1.488000pt;}
.wsc5{word-spacing:1.530667pt;}
.ws5d{word-spacing:1.554133pt;}
.wsdd{word-spacing:1.605333pt;}
.ws9f{word-spacing:1.636800pt;}
.wsa7{word-spacing:1.654400pt;}
.wse{word-spacing:1.742933pt;}
.ws10a{word-spacing:1.760000pt;}
.wsa2{word-spacing:1.785600pt;}
.ws8{word-spacing:1.788800pt;}
.ws24{word-spacing:1.884800pt;}
.ws8f{word-spacing:1.905067pt;}
.ws45{word-spacing:1.934400pt;}
.wsc3{word-spacing:1.955200pt;}
.wsdc{word-spacing:1.978667pt;}
.ws13{word-spacing:1.984000pt;}
.ws8a{word-spacing:2.055467pt;}
.ws9a{word-spacing:2.132800pt;}
.wsb0{word-spacing:2.155733pt;}
.wsf{word-spacing:2.201600pt;}
.ws9d{word-spacing:2.331200pt;}
.wsf7{word-spacing:2.356267pt;}
.ws8c{word-spacing:2.506667pt;}
.ws9c{word-spacing:2.579200pt;}
.ws119{word-spacing:2.600000pt;}
.ws7c{word-spacing:2.628800pt;}
.ws28{word-spacing:2.657067pt;}
.ws1f{word-spacing:2.678400pt;}
.ws5c{word-spacing:2.707200pt;}
.ws66{word-spacing:2.757333pt;}
.ws11a{word-spacing:2.760000pt;}
.wsf4{word-spacing:2.762667pt;}
.ws88{word-spacing:2.807467pt;}
.wsa9{word-spacing:2.857600pt;}
.ws2c{word-spacing:3.008000pt;}
.ws94{word-spacing:3.025600pt;}
.wse9{word-spacing:3.038933pt;}
.ws60{word-spacing:3.124800pt;}
.ws4f{word-spacing:3.158400pt;}
.ws9b{word-spacing:3.174400pt;}
.ws26{word-spacing:3.273600pt;}
.wsea{word-spacing:3.275733pt;}
.ws11e{word-spacing:3.280000pt;}
.ws97{word-spacing:3.358933pt;}
.ws43{word-spacing:3.459200pt;}
.ws1c{word-spacing:3.472000pt;}
.ws90{word-spacing:3.509333pt;}
.wsd9{word-spacing:3.559467pt;}
.wsf1{word-spacing:3.571200pt;}
.wsc6{word-spacing:3.621333pt;}
.ws69{word-spacing:3.659733pt;}
.ws57{word-spacing:3.709867pt;}
.ws131{word-spacing:3.718400pt;}
.wsb3{word-spacing:3.760000pt;}
.ws54{word-spacing:3.788800pt;}
.wsbf{word-spacing:3.810133pt;}
.wsce{word-spacing:3.957333pt;}
.wsa6{word-spacing:3.960533pt;}
.ws115{word-spacing:4.080000pt;}
.ws11b{word-spacing:4.200000pt;}
.ws34{word-spacing:4.211200pt;}
.wsf9{word-spacing:4.216000pt;}
.ws2b{word-spacing:4.261333pt;}
.wsd2{word-spacing:4.311467pt;}
.wsc4{word-spacing:4.368000pt;}
.ws101{word-spacing:4.512000pt;}
.ws10d{word-spacing:4.560000pt;}
.wsc0{word-spacing:4.562133pt;}
.wsec{word-spacing:4.612267pt;}
.ws117{word-spacing:4.720000pt;}
.ws68{word-spacing:4.762667pt;}
.wsbd{word-spacing:4.862933pt;}
.ws5f{word-spacing:4.960000pt;}
.ws7e{word-spacing:5.059200pt;}
.ws82{word-spacing:5.063467pt;}
.ws123{word-spacing:5.080000pt;}
.wsd4{word-spacing:5.113600pt;}
.wsb4{word-spacing:5.213867pt;}
.wsb1{word-spacing:5.464533pt;}
.ws48{word-spacing:5.505600pt;}
.wse6{word-spacing:5.564800pt;}
.ws7f{word-spacing:5.753600pt;}
.wseb{word-spacing:5.865600pt;}
.wsaa{word-spacing:5.915733pt;}
.ws11d{word-spacing:6.000000pt;}
.ws10{word-spacing:6.001600pt;}
.wsb2{word-spacing:6.116267pt;}
.wse5{word-spacing:6.517333pt;}
.ws11c{word-spacing:6.520000pt;}
.ws5a{word-spacing:6.567467pt;}
.wsed{word-spacing:6.617600pt;}
.ws86{word-spacing:6.768000pt;}
.ws10e{word-spacing:6.960000pt;}
.ws126{word-spacing:7.040000pt;}
.wsf0{word-spacing:7.064533pt;}
.ws33{word-spacing:7.269333pt;}
.ws12b{word-spacing:7.560000pt;}
.ws108{word-spacing:7.680000pt;}
.ws120{word-spacing:7.720000pt;}
.ws105{word-spacing:7.880000pt;}
.ws122{word-spacing:8.040000pt;}
.ws5b{word-spacing:8.522667pt;}
.ws104{word-spacing:8.640000pt;}
.ws109{word-spacing:8.760000pt;}
.ws10c{word-spacing:8.800000pt;}
.ws32{word-spacing:8.823467pt;}
.ws8d{word-spacing:9.074133pt;}
.ws12f{word-spacing:9.273600pt;}
.ws55{word-spacing:9.373333pt;}
.ws110{word-spacing:9.480000pt;}
.ws125{word-spacing:9.640000pt;}
.ws114{word-spacing:9.800000pt;}
.ws106{word-spacing:10.400000pt;}
.ws127{word-spacing:10.640000pt;}
.ws10f{word-spacing:11.320000pt;}
.ws112{word-spacing:11.360000pt;}
.ws129{word-spacing:11.520000pt;}
.ws121{word-spacing:11.840000pt;}
.wsef{word-spacing:11.879467pt;}
.ws103{word-spacing:14.520000pt;}
.ws128{word-spacing:15.360000pt;}
.ws113{word-spacing:19.200000pt;}
.wsd0{word-spacing:36.512000pt;}
.ws50{word-spacing:56.522667pt;}
.ws2{word-spacing:1815.840000pt;}
._d{margin-left:-23.580320pt;}
._1b{margin-left:-17.356160pt;}
._14{margin-left:-15.672041pt;}
._10{margin-left:-14.365547pt;}
._13{margin-left:-13.439978pt;}
._16{margin-left:-9.557387pt;}
._6{margin-left:-6.398400pt;}
._8{margin-left:-5.491947pt;}
._f{margin-left:-4.464640pt;}
._7{margin-left:-3.530507pt;}
._5{margin-left:-2.568533pt;}
._4{margin-left:-0.983093pt;}
._0{width:0.973760pt;}
._2{width:2.106240pt;}
._1{width:3.039573pt;}
._3{width:4.884427pt;}
._1a{width:6.612480pt;}
._19{width:8.880000pt;}
._c{width:21.376000pt;}
._15{width:32.143780pt;}
._18{width:36.138447pt;}
._12{width:37.071780pt;}
._11{width:55.402447pt;}
._a{width:56.373113pt;}
._e{width:57.567780pt;}
._17{width:114.137469pt;}
._9{width:115.597605pt;}
._b{width:117.255293pt;}
.fsa{font-size:28.916800pt;}
.fsb{font-size:29.227733pt;}
.fsd{font-size:29.538667pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:39.466667pt;}
.fs0{font-size:40.000000pt;}
.fs10{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fse{font-size:46.933333pt;}
.fsf{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs9{font-size:50.133333pt;}
.fsc{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs5{font-size:67.200000pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:58.009733pt;}
.yd4{bottom:92.560000pt;}
.y1c{bottom:92.564933pt;}
.y151{bottom:92.579200pt;}
.y13d{bottom:92.588800pt;}
.ya5{bottom:92.593600pt;}
.ye8{bottom:92.595867pt;}
.yf1{bottom:92.596800pt;}
.y11b{bottom:92.596933pt;}
.y67{bottom:92.597200pt;}
.yca{bottom:92.598400pt;}
.yc3{bottom:92.598533pt;}
.y69{bottom:92.600800pt;}
.yb7{bottom:92.602667pt;}
.ybb{bottom:92.609067pt;}
.y96{bottom:92.632533pt;}
.y46{bottom:92.645333pt;}
.y176{bottom:98.506400pt;}
.y68{bottom:104.865067pt;}
.y66{bottom:105.130133pt;}
.ye7{bottom:105.130533pt;}
.y7a{bottom:105.131867pt;}
.y196{bottom:106.113600pt;}
.y13c{bottom:108.903467pt;}
.y11a{bottom:108.909867pt;}
.yf0{bottom:108.911467pt;}
.yd3{bottom:110.564800pt;}
.y1b{bottom:110.569733pt;}
.y150{bottom:110.584000pt;}
.ya4{bottom:110.598400pt;}
.yb6{bottom:110.600533pt;}
.yba{bottom:110.606933pt;}
.y95{bottom:110.630400pt;}
.y45{bottom:110.643200pt;}
.y175{bottom:111.176400pt;}
.y79{bottom:117.665200pt;}
.y195{bottom:118.783600pt;}
.y13b{bottom:121.438133pt;}
.y65{bottom:121.444800pt;}
.y119{bottom:125.224533pt;}
.y174{bottom:127.626400pt;}
.yd2{bottom:128.569600pt;}
.y1a{bottom:128.574533pt;}
.y14f{bottom:128.588800pt;}
.ya3{bottom:128.598400pt;}
.yb9{bottom:128.604800pt;}
.yc2{bottom:128.609067pt;}
.y94{bottom:128.628267pt;}
.y44{bottom:128.641067pt;}
.y13a{bottom:133.972800pt;}
.y194{bottom:135.233600pt;}
.y64{bottom:137.757867pt;}
.y173{bottom:140.296400pt;}
.y118{bottom:141.522533pt;}
.y139{bottom:146.507467pt;}
.yb5{bottom:146.531200pt;}
.yd1{bottom:146.574400pt;}
.y19{bottom:146.579333pt;}
.y89{bottom:146.593600pt;}
.yc9{bottom:146.598400pt;}
.yb8{bottom:146.602667pt;}
.yc1{bottom:146.606933pt;}
.y14e{bottom:146.609067pt;}
.y93{bottom:146.626133pt;}
.y43{bottom:146.638933pt;}
.y193{bottom:147.903600pt;}
.yef{bottom:154.070800pt;}
.y172{bottom:156.746400pt;}
.y117{bottom:157.837200pt;}
.y138{bottom:159.042133pt;}
.y192{bottom:164.353600pt;}
.yb4{bottom:164.536000pt;}
.y86{bottom:164.574400pt;}
.yd0{bottom:164.579200pt;}
.y18{bottom:164.584133pt;}
.y88{bottom:164.598400pt;}
.y78{bottom:164.600533pt;}
.ye6{bottom:164.602667pt;}
.yc0{bottom:164.604800pt;}
.ya2{bottom:164.606933pt;}
.y92{bottom:164.624000pt;}
.y42{bottom:164.636800pt;}
.y87{bottom:168.727600pt;}
.y171{bottom:169.416400pt;}
.y116{bottom:170.371867pt;}
.y137{bottom:171.576800pt;}
.y191{bottom:177.023600pt;}
.y170{bottom:182.086400pt;}
.yb3{bottom:182.540800pt;}
.y85{bottom:182.579200pt;}
.ycf{bottom:182.584000pt;}
.y17{bottom:182.588933pt;}
.y77{bottom:182.598400pt;}
.ye5{bottom:182.600533pt;}
.ybf{bottom:182.602667pt;}
.ya1{bottom:182.604800pt;}
.y91{bottom:182.621867pt;}
.y41{bottom:182.634667pt;}
.y115{bottom:182.906533pt;}
.y136{bottom:184.109867pt;}
.y190{bottom:193.459733pt;}
.y114{bottom:195.441200pt;}
.y16f{bottom:198.536400pt;}
.y135{bottom:200.424533pt;}
.yb2{bottom:200.545600pt;}
.y84{bottom:200.584000pt;}
.y76{bottom:200.588800pt;}
.y16{bottom:200.593733pt;}
.ye4{bottom:200.598400pt;}
.ybe{bottom:200.600533pt;}
.ya0{bottom:200.602667pt;}
.ye3{bottom:200.611200pt;}
.y147{bottom:200.613333pt;}
.y90{bottom:200.619733pt;}
.y40{bottom:200.632533pt;}
.y18f{bottom:206.129733pt;}
.y113{bottom:207.975867pt;}
.y16e{bottom:211.206400pt;}
.y134{bottom:212.954800pt;}
.yb1{bottom:218.550400pt;}
.y83{bottom:218.588800pt;}
.y75{bottom:218.593600pt;}
.y13f{bottom:218.598400pt;}
.y15{bottom:218.598533pt;}
.y9f{bottom:218.600533pt;}
.ye2{bottom:218.609067pt;}
.y146{bottom:218.611200pt;}
.y8f{bottom:218.617600pt;}
.ybd{bottom:218.619733pt;}
.y3f{bottom:218.630400pt;}
.y18e{bottom:218.799733pt;}
.y112{bottom:220.510533pt;}
.y16d{bottom:227.656400pt;}
.y133{bottom:229.269467pt;}
.y18d{bottom:231.469733pt;}
.y111{bottom:233.045200pt;}
.yb0{bottom:236.555200pt;}
.y82{bottom:236.593600pt;}
.y74{bottom:236.598400pt;}
.y63{bottom:236.602667pt;}
.ye1{bottom:236.606933pt;}
.y145{bottom:236.609067pt;}
.yee{bottom:236.611200pt;}
.y8e{bottom:236.615467pt;}
.ybc{bottom:236.617600pt;}
.y3e{bottom:236.628267pt;}
.y16c{bottom:240.326400pt;}
.y13e{bottom:240.727600pt;}
.y132{bottom:241.802533pt;}
.y110{bottom:245.579867pt;}
.y18c{bottom:247.776400pt;}
.y16b{bottom:252.996400pt;}
.yaf{bottom:254.560000pt;}
.y14d{bottom:254.569600pt;}
.yc8{bottom:254.574400pt;}
.y81{bottom:254.598400pt;}
.y14{bottom:254.598533pt;}
.y62{bottom:254.600533pt;}
.ye0{bottom:254.604800pt;}
.y144{bottom:254.606933pt;}
.yed{bottom:254.609067pt;}
.y8d{bottom:254.613333pt;}
.y9e{bottom:254.615467pt;}
.y3d{bottom:254.626133pt;}
.y10f{bottom:258.114533pt;}
.y131{bottom:258.117200pt;}
.y18b{bottom:260.446400pt;}
.y16a{bottom:269.446400pt;}
.y10e{bottom:270.649200pt;}
.yae{bottom:272.564800pt;}
.y14c{bottom:272.574400pt;}
.yc7{bottom:272.579200pt;}
.y80{bottom:272.598400pt;}
.y73{bottom:272.599067pt;}
.ydf{bottom:272.602667pt;}
.y61{bottom:272.604800pt;}
.yec{bottom:272.606933pt;}
.y8c{bottom:272.611200pt;}
.y9d{bottom:272.613333pt;}
.y3c{bottom:272.624000pt;}
.y18a{bottom:273.116400pt;}
.y169{bottom:282.116400pt;}
.y10d{bottom:283.183867pt;}
.y189{bottom:285.786400pt;}
.yad{bottom:290.569600pt;}
.y14b{bottom:290.579200pt;}
.yc6{bottom:290.584000pt;}
.y72{bottom:290.598400pt;}
.yde{bottom:290.600533pt;}
.y60{bottom:290.602667pt;}
.yeb{bottom:290.604800pt;}
.y8b{bottom:290.609067pt;}
.y9c{bottom:290.611200pt;}
.yce{bottom:290.613333pt;}
.y3b{bottom:290.621867pt;}
.y168{bottom:294.786400pt;}
.y10c{bottom:295.717200pt;}
.y188{bottom:298.456400pt;}
.y167{bottom:307.456400pt;}
.yac{bottom:308.574400pt;}
.y14a{bottom:308.584000pt;}
.yc5{bottom:308.588800pt;}
.ydd{bottom:308.598400pt;}
.y71{bottom:308.599067pt;}
.y5f{bottom:308.600533pt;}
.ydc{bottom:308.602667pt;}
.y7f{bottom:308.606933pt;}
.y9b{bottom:308.609067pt;}
.ycd{bottom:308.611200pt;}
.y3a{bottom:308.619733pt;}
.y187{bottom:311.126400pt;}
.y166{bottom:320.126400pt;}
.y186{bottom:323.796400pt;}
.y13{bottom:326.566533pt;}
.yab{bottom:326.579200pt;}
.y149{bottom:326.588800pt;}
.yc4{bottom:326.593600pt;}
.y70{bottom:326.598400pt;}
.ydb{bottom:326.600533pt;}
.y7e{bottom:326.604800pt;}
.y9a{bottom:326.606933pt;}
.y5e{bottom:326.609067pt;}
.y39{bottom:326.617600pt;}
.y165{bottom:332.796400pt;}
.y185{bottom:336.466400pt;}
.y12{bottom:344.569200pt;}
.yaa{bottom:344.584000pt;}
.y148{bottom:344.593600pt;}
.y6f{bottom:344.598400pt;}
.y7d{bottom:344.602667pt;}
.y99{bottom:344.604800pt;}
.y5d{bottom:344.606933pt;}
.y38{bottom:344.615467pt;}
.y164{bottom:345.466400pt;}
.y184{bottom:352.916400pt;}
.y163{bottom:358.136400pt;}
.y11{bottom:362.571867pt;}
.yda{bottom:362.579200pt;}
.ya9{bottom:362.588800pt;}
.y6e{bottom:362.598400pt;}
.y7c{bottom:362.600533pt;}
.y98{bottom:362.602667pt;}
.y5c{bottom:362.604800pt;}
.y37{bottom:362.613333pt;}
.y183{bottom:365.586400pt;}
.y162{bottom:374.572667pt;}
.y182{bottom:378.256400pt;}
.y10{bottom:380.574533pt;}
.yd9{bottom:380.584000pt;}
.ya8{bottom:380.593600pt;}
.y6d{bottom:380.598400pt;}
.y97{bottom:380.600533pt;}
.y5b{bottom:380.602667pt;}
.y10b{bottom:380.606933pt;}
.y36{bottom:380.611200pt;}
.ycc{bottom:382.029600pt;}
.y161{bottom:387.242667pt;}
.ycb{bottom:394.293867pt;}
.y181{bottom:394.706400pt;}
.yf{bottom:398.577200pt;}
.yd8{bottom:398.588800pt;}
.y6c{bottom:398.598400pt;}
.y5a{bottom:398.600533pt;}
.y10a{bottom:398.604800pt;}
.y35{bottom:398.609067pt;}
.y130{bottom:398.624000pt;}
.y160{bottom:399.912667pt;}
.y180{bottom:407.376400pt;}
.y15f{bottom:412.582667pt;}
.ye{bottom:416.579867pt;}
.yd7{bottom:416.593600pt;}
.y59{bottom:416.598400pt;}
.yea{bottom:416.600533pt;}
.y109{bottom:416.602667pt;}
.y34{bottom:416.606933pt;}
.y12f{bottom:416.621867pt;}
.y17f{bottom:420.046400pt;}
.y6b{bottom:420.816400pt;}
.y15e{bottom:429.004533pt;}
.y17e{bottom:432.716400pt;}
.y57{bottom:434.555200pt;}
.yd{bottom:434.582533pt;}
.yd6{bottom:434.598400pt;}
.y108{bottom:434.600533pt;}
.y33{bottom:434.604800pt;}
.y12e{bottom:434.619733pt;}
.y143{bottom:434.645733pt;}
.y142{bottom:434.650400pt;}
.y8a{bottom:435.160000pt;}
.y58{bottom:438.727600pt;}
.y15d{bottom:441.674533pt;}
.y17d{bottom:445.386400pt;}
.y141{bottom:446.914667pt;}
.y56{bottom:452.560000pt;}
.yc{bottom:452.585200pt;}
.y6a{bottom:452.598400pt;}
.y107{bottom:452.600533pt;}
.y32{bottom:452.602667pt;}
.y12d{bottom:452.617600pt;}
.ya7{bottom:453.132000pt;}
.y15c{bottom:454.344533pt;}
.y17c{bottom:458.056400pt;}
.y140{bottom:459.178933pt;}
.ya6{bottom:465.396267pt;}
.y15b{bottom:467.014533pt;}
.yf2{bottom:468.250133pt;}
.y55{bottom:470.564800pt;}
.yb{bottom:470.587867pt;}
.y31{bottom:470.600533pt;}
.y106{bottom:470.613333pt;}
.y12c{bottom:470.615467pt;}
.y17b{bottom:470.726400pt;}
.yd5{bottom:472.010400pt;}
.y15a{bottom:479.684533pt;}
.ye9{bottom:480.514400pt;}
.y17a{bottom:483.396400pt;}
.y54{bottom:488.569600pt;}
.ya{bottom:488.590533pt;}
.y30{bottom:488.598400pt;}
.y105{bottom:488.611200pt;}
.y12b{bottom:488.613333pt;}
.y159{bottom:496.134533pt;}
.y179{bottom:499.846400pt;}
.y7b{bottom:500.356933pt;}
.y2f{bottom:506.521600pt;}
.y53{bottom:506.574400pt;}
.y9{bottom:506.593200pt;}
.y104{bottom:506.609067pt;}
.y12a{bottom:506.611200pt;}
.y158{bottom:508.804533pt;}
.y178{bottom:512.516400pt;}
.y2e{bottom:524.526400pt;}
.y52{bottom:524.579200pt;}
.y8{bottom:524.595867pt;}
.y103{bottom:524.606933pt;}
.y129{bottom:524.609067pt;}
.y177{bottom:525.186400pt;}
.y157{bottom:525.254533pt;}
.y2d{bottom:542.531200pt;}
.y51{bottom:542.584000pt;}
.y7{bottom:542.598533pt;}
.y102{bottom:542.604800pt;}
.y128{bottom:542.606933pt;}
.y2c{bottom:560.536000pt;}
.y50{bottom:560.588800pt;}
.y156{bottom:560.598400pt;}
.y101{bottom:560.602667pt;}
.y127{bottom:560.604800pt;}
.y2b{bottom:578.540800pt;}
.y4f{bottom:578.593600pt;}
.y6{bottom:578.598533pt;}
.y100{bottom:578.600533pt;}
.y126{bottom:578.602667pt;}
.y19b{bottom:578.604800pt;}
.y2a{bottom:596.545600pt;}
.y4e{bottom:596.598400pt;}
.y125{bottom:596.600533pt;}
.y19a{bottom:596.603200pt;}
.y29{bottom:614.550400pt;}
.yff{bottom:614.584000pt;}
.y199{bottom:614.601600pt;}
.y124{bottom:614.615467pt;}
.y28{bottom:632.555200pt;}
.yfe{bottom:632.588800pt;}
.y4d{bottom:632.598400pt;}
.y198{bottom:632.600000pt;}
.y123{bottom:632.613333pt;}
.y155{bottom:632.617600pt;}
.y27{bottom:650.560000pt;}
.yfd{bottom:650.593600pt;}
.y197{bottom:650.598400pt;}
.y122{bottom:650.611200pt;}
.y154{bottom:650.615467pt;}
.y26{bottom:668.564800pt;}
.yfa{bottom:668.584000pt;}
.y5{bottom:668.591867pt;}
.yfc{bottom:668.598400pt;}
.y121{bottom:668.609067pt;}
.y153{bottom:668.613333pt;}
.yfb{bottom:672.727600pt;}
.y25{bottom:686.569600pt;}
.yf9{bottom:686.588800pt;}
.y120{bottom:686.606933pt;}
.y152{bottom:686.611200pt;}
.y24{bottom:704.574400pt;}
.yf8{bottom:704.593600pt;}
.y4{bottom:704.595200pt;}
.y11f{bottom:704.604800pt;}
.y4c{bottom:704.609067pt;}
.y23{bottom:722.579200pt;}
.yf5{bottom:722.593600pt;}
.yf7{bottom:722.598400pt;}
.y11e{bottom:722.602667pt;}
.y4b{bottom:722.606933pt;}
.yf6{bottom:726.727600pt;}
.y22{bottom:740.584000pt;}
.yf4{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y11d{bottom:740.600533pt;}
.y4a{bottom:740.604800pt;}
.y21{bottom:758.588800pt;}
.y11c{bottom:758.598400pt;}
.y49{bottom:758.602667pt;}
.yf3{bottom:773.262400pt;}
.y20{bottom:776.593600pt;}
.y48{bottom:776.600533pt;}
.y1f{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y1{bottom:847.033333pt;}
.y1e{bottom:847.069467pt;}
.y47{bottom:847.128533pt;}
.he{height:20.935763pt;}
.h14{height:21.385995pt;}
.h9{height:31.060267pt;}
.hd{height:31.849600pt;}
.h11{height:32.069333pt;}
.h1d{height:32.075733pt;}
.h12{height:32.076267pt;}
.h20{height:32.081600pt;}
.h21{height:32.108267pt;}
.h1c{height:32.129600pt;}
.ha{height:32.280000pt;}
.h23{height:32.435200pt;}
.hb{height:33.901867pt;}
.h8{height:36.059200pt;}
.h25{height:36.153600pt;}
.hc{height:36.446933pt;}
.h13{height:36.834667pt;}
.h15{height:36.936533pt;}
.h6{height:37.014400pt;}
.h2{height:37.040000pt;}
.h1f{height:37.752879pt;}
.h16{height:37.769946pt;}
.h1e{height:37.787012pt;}
.h1b{height:37.795546pt;}
.h1a{height:37.804079pt;}
.hf{height:37.812612pt;}
.h19{height:37.821146pt;}
.h10{height:37.829679pt;}
.h17{height:37.838212pt;}
.h18{height:37.846746pt;}
.h22{height:41.328000pt;}
.h5{height:41.973333pt;}
.h24{height:42.812800pt;}
.h7{height:48.652800pt;}
.h3{height:50.374400pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x15{left:79.370767pt;}
.x3{left:83.149600pt;}
.xd{left:84.934277pt;}
.x5{left:88.827333pt;}
.x8{left:98.267733pt;}
.xe{left:99.966400pt;}
.xf{left:107.617733pt;}
.x2{left:109.853600pt;}
.x6{left:202.276933pt;}
.x7{left:206.184800pt;}
.x4{left:300.555333pt;}
.x12{left:304.017467pt;}
.x13{left:319.810933pt;}
.x16{left:330.707467pt;}
.x9{left:341.348667pt;}
.xa{left:345.174400pt;}
.xc{left:454.677333pt;}
.x10{left:490.764133pt;}
.x11{left:498.415333pt;}
.xb{left:520.036133pt;}
.x14{left:542.516267pt;}
}




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