
    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_cd3cc3460d0cd517ee688900.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_aa398d772c5ae47798c89aab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;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_a9439da67399fdf57f3cffb7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_96007a9eda7fb9dad9eef80d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_b85aa5bd5a75c27b92f9e232.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_122f5d36ae8def26da87f876.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_fa92c0037e1dd60c03bc3ca0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_0535eb1ed26d536454544149.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.761230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.fff{font-family:fff;line-height:0.760254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a3776269d1699ef2183a750b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ea955172fdba38e72e1c7917.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d915534eb98e9366c9c98712.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9ed68d03ebb61a10e247823a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5aa9a5d0685f0fe81cb09ba0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a74d2cb68b48c2df3cb783d9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_156fddf15ac0ef2b8e1097dc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.180000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:18.180000px;}
.ls29{letter-spacing:-1.764000px;}
.ls2a{letter-spacing:-1.728000px;}
.ls2e{letter-spacing:-1.620000px;}
.ls34{letter-spacing:-1.278000px;}
.ls36{letter-spacing:-1.242000px;}
.ls35{letter-spacing:-1.206000px;}
.ls2d{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.324000px;}
.ls2f{letter-spacing:-0.306000px;}
.ls26{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.270000px;}
.ls38{letter-spacing:-0.234000px;}
.ls19{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.097800px;}
.ls5{letter-spacing:-0.078000px;}
.ls2b{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031680px;}
.ls3c{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.234000px;}
.ls22{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls0{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.385800px;}
.ls3f{letter-spacing:0.450000px;}
.lse{letter-spacing:0.522000px;}
.lsa{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.558000px;}
.ls18{letter-spacing:0.630000px;}
.ls2{letter-spacing:0.670320px;}
.ls1c{letter-spacing:0.702000px;}
.ls21{letter-spacing:0.738000px;}
.ls12{letter-spacing:0.756000px;}
.ls3d{letter-spacing:0.774000px;}
.ls3b{letter-spacing:0.936000px;}
.ls31{letter-spacing:1.116000px;}
.ls15{letter-spacing:1.224000px;}
.lsb{letter-spacing:1.242000px;}
.ls7{letter-spacing:1.260000px;}
.ls16{letter-spacing:1.278000px;}
.lsd{letter-spacing:1.350000px;}
.ls2c{letter-spacing:1.386000px;}
.ls1b{letter-spacing:1.422000px;}
.ls1f{letter-spacing:1.458000px;}
.lsf{letter-spacing:1.476000px;}
.ls11{letter-spacing:1.494000px;}
.ls3a{letter-spacing:1.530000px;}
.ls33{letter-spacing:1.602000px;}
.ls9{letter-spacing:1.620000px;}
.ls30{letter-spacing:1.674000px;}
.ls1a{letter-spacing:1.728000px;}
.ls20{letter-spacing:1.764000px;}
.ls14{letter-spacing:2.124000px;}
.ls1e{letter-spacing:4.266000px;}
.ls1d{letter-spacing:4.986000px;}
.ls3e{letter-spacing:12.186000px;}
.ls13{letter-spacing:15.066000px;}
.ls28{letter-spacing:15.804000px;}
.ls32{letter-spacing:16.506000px;}
.ls10{letter-spacing:34.506000px;}
.ls37{letter-spacing:61.866000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-20.437920px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.966720px;}
.ws4{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.336000px;}
.ws1b{word-spacing:-15.318000px;}
.ws22{word-spacing:-15.246000px;}
.ws19{word-spacing:-15.192000px;}
.ws8{word-spacing:-14.958600px;}
.ws24{word-spacing:-14.652000px;}
.wsf{word-spacing:-14.508000px;}
.ws26{word-spacing:-14.490000px;}
.ws23{word-spacing:-14.472000px;}
.wsc{word-spacing:-14.364000px;}
.ws1a{word-spacing:-14.274000px;}
.ws10{word-spacing:-14.238000px;}
.ws1c{word-spacing:-14.130000px;}
.ws21{word-spacing:-13.950000px;}
.ws6{word-spacing:-13.716000px;}
.wse{word-spacing:-13.536000px;}
.ws15{word-spacing:-13.230000px;}
.ws0{word-spacing:-13.069200px;}
.ws25{word-spacing:-13.068000px;}
.wsa{word-spacing:-13.049400px;}
.wsd{word-spacing:-13.014000px;}
.ws11{word-spacing:-12.852000px;}
.ws18{word-spacing:-12.834000px;}
.ws12{word-spacing:-12.744000px;}
.ws14{word-spacing:-12.726000px;}
.ws13{word-spacing:-12.690000px;}
.ws1f{word-spacing:-12.510000px;}
.ws20{word-spacing:-12.474000px;}
.ws1e{word-spacing:-12.438000px;}
.ws17{word-spacing:-11.286000px;}
.ws16{word-spacing:-11.250000px;}
.ws7{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.576000px;}
.ws1{word-spacing:-8.856000px;}
.ws9{word-spacing:0.000000px;}
._a{margin-left:-2.963760px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._4{width:2.376000px;}
._6{width:3.784320px;}
._2{width:5.676480px;}
._3{width:6.968160px;}
._8{width:8.019120px;}
._7{width:9.072720px;}
._9{width:10.380240px;}
._19{width:11.908560px;}
._5{width:14.334720px;}
._c{width:15.884640px;}
._1a{width:16.967520px;}
._d{width:18.023280px;}
._15{width:19.842720px;}
._20{width:21.195600px;}
._17{width:22.723680px;}
._18{width:24.651600px;}
._2b{width:25.679280px;}
._21{width:26.716800px;}
._16{width:28.460880px;}
._11{width:29.816640px;}
._31{width:30.872400px;}
._f{width:31.922640px;}
._b{width:33.733920px;}
._2c{width:35.238480px;}
._2f{width:36.569520px;}
._36{width:37.588560px;}
._12{width:38.739840px;}
._2e{width:40.578480px;}
._32{width:41.585760px;}
._2d{width:42.622080px;}
._13{width:43.767600px;}
._26{width:45.365760px;}
._35{width:46.728960px;}
._27{width:48.173760px;}
._22{width:50.318640px;}
._29{width:51.558720px;}
._e{width:52.760880px;}
._14{width:54.110640px;}
._23{width:55.111200px;}
._24{width:57.148320px;}
._25{width:58.233840px;}
._33{width:59.292000px;}
._34{width:60.477120px;}
._3b{width:61.743840px;}
._37{width:62.910000px;}
._38{width:64.548000px;}
._39{width:66.364800px;}
._10{width:67.667760px;}
._1e{width:69.311520px;}
._3c{width:70.440720px;}
._2a{width:77.460720px;}
._1f{width:85.651680px;}
._1c{width:89.094000px;}
._1b{width:90.250800px;}
._3a{width:97.148880px;}
._1d{width:114.635520px;}
._28{width:125.904480px;}
._30{width:129.672960px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsb{font-size:2.880000px;}
.fsf{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fse{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.y4b{bottom:-18.390000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.440000px;}
.y36{bottom:1.605000px;}
.y13{bottom:1.620000px;}
.y1b{bottom:2.160000px;}
.y26{bottom:2.340000px;}
.y4a{bottom:2.850000px;}
.y1d{bottom:3.060000px;}
.y21{bottom:3.240000px;}
.y4d{bottom:3.420000px;}
.y23{bottom:3.600000px;}
.y1f{bottom:4.500000px;}
.y40{bottom:6.465000px;}
.y3c{bottom:6.645000px;}
.y42{bottom:6.660000px;}
.yd8{bottom:7.725000px;}
.ycb{bottom:7.740000px;}
.ye1{bottom:7.920000px;}
.y1ac{bottom:9.165000px;}
.y146{bottom:10.800000px;}
.y34{bottom:10.965000px;}
.yd0{bottom:10.980000px;}
.ydb{bottom:11.010000px;}
.y50{bottom:11.700000px;}
.y3a{bottom:12.405000px;}
.y51{bottom:13.680000px;}
.y11{bottom:13.860000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y38{bottom:16.365000px;}
.y52{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.y19b{bottom:18.180000px;}
.y158{bottom:18.360000px;}
.y19{bottom:19.080000px;}
.y49{bottom:27.330000px;}
.y1ab{bottom:30.585000px;}
.y163{bottom:33.825000px;}
.ye3{bottom:33.840000px;}
.y33{bottom:34.005000px;}
.ycf{bottom:34.020000px;}
.yda{bottom:34.050000px;}
.y8{bottom:45.540000px;}
.y18{bottom:47.160000px;}
.y53{bottom:47.520000px;}
.y48{bottom:50.550000px;}
.y1aa{bottom:52.230000px;}
.yc{bottom:53.280000px;}
.y162{bottom:56.865000px;}
.yce{bottom:56.880000px;}
.y32{bottom:57.045000px;}
.y145{bottom:57.060000px;}
.y3{bottom:58.320000px;}
.y4f{bottom:63.720000px;}
.y47{bottom:73.590000px;}
.y1a9{bottom:73.650000px;}
.y1{bottom:74.520000px;}
.y17{bottom:75.240000px;}
.y7{bottom:76.680000px;}
.y31{bottom:79.905000px;}
.ycd{bottom:79.920000px;}
.y46{bottom:97.350000px;}
.y161{bottom:102.945000px;}
.y30{bottom:102.990000px;}
.y16{bottom:103.320000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y16e{bottom:109.080000px;}
.y15f{bottom:111.780000px;}
.y137{bottom:112.680000px;}
.y1bb{bottom:114.120000px;}
.y110{bottom:114.480000px;}
.y1b9{bottom:115.740000px;}
.yf5{bottom:116.280000px;}
.y263{bottom:118.080000px;}
.y82{bottom:118.620000px;}
.yb1{bottom:119.340000px;}
.y168{bottom:119.520000px;}
.y20b{bottom:120.060000px;}
.y198{bottom:121.320000px;}
.ydf{bottom:121.500000px;}
.yc9{bottom:121.860000px;}
.y2f{bottom:126.030000px;}
.y15{bottom:131.400000px;}
.y16d{bottom:132.120000px;}
.y136{bottom:135.540000px;}
.y1ba{bottom:136.440000px;}
.y10f{bottom:136.620000px;}
.y1b8{bottom:137.160000px;}
.y156{bottom:137.700000px;}
.yf4{bottom:138.600000px;}
.y262{bottom:139.860000px;}
.y81{bottom:140.760000px;}
.yb0{bottom:141.660000px;}
.yde{bottom:143.640000px;}
.y20a{bottom:143.820000px;}
.yc8{bottom:144.000000px;}
.y1e4{bottom:144.180000px;}
.y197{bottom:144.360000px;}
.y2e{bottom:149.070000px;}
.y44{bottom:154.440000px;}
.y135{bottom:158.580000px;}
.y1b7{bottom:158.760000px;}
.y10e{bottom:158.940000px;}
.yf3{bottom:160.740000px;}
.y261{bottom:161.640000px;}
.y80{bottom:163.080000px;}
.yaf{bottom:163.800000px;}
.y167{bottom:163.980000px;}
.ydd{bottom:165.960000px;}
.yc7{bottom:166.320000px;}
.y1e3{bottom:166.860000px;}
.y196{bottom:167.400000px;}
.y209{bottom:167.580000px;}
.y2d{bottom:172.110000px;}
.y43{bottom:177.480000px;}
.y1b6{bottom:180.180000px;}
.y10d{bottom:181.260000px;}
.y134{bottom:181.620000px;}
.yf2{bottom:183.060000px;}
.y260{bottom:183.420000px;}
.y155{bottom:183.960000px;}
.y7f{bottom:185.220000px;}
.yae{bottom:186.120000px;}
.ydc{bottom:188.100000px;}
.yc6{bottom:188.460000px;}
.y41{bottom:189.540000px;}
.y195{bottom:190.260000px;}
.y208{bottom:191.520000px;}
.y2c{bottom:195.150000px;}
.yd9{bottom:200.340000px;}
.y10c{bottom:201.240000px;}
.y1b5{bottom:201.600000px;}
.y234{bottom:203.040000px;}
.y133{bottom:204.660000px;}
.yf1{bottom:205.200000px;}
.y25f{bottom:205.380000px;}
.y154{bottom:207.030000px;}
.y7e{bottom:207.570000px;}
.yad{bottom:208.290000px;}
.y166{bottom:208.470000px;}
.y3f{bottom:209.025000px;}
.yc5{bottom:210.810000px;}
.y1e2{bottom:212.250000px;}
.y194{bottom:213.330000px;}
.y207{bottom:215.310000px;}
.y2b{bottom:218.010000px;}
.y10b{bottom:220.710000px;}
.y233{bottom:222.510000px;}
.y1b4{bottom:223.050000px;}
.y25e{bottom:227.190000px;}
.yf0{bottom:227.550000px;}
.y132{bottom:227.730000px;}
.y3e{bottom:228.285000px;}
.y7d{bottom:229.890000px;}
.y153{bottom:230.250000px;}
.yac{bottom:230.610000px;}
.yc4{bottom:233.130000px;}
.y1e1{bottom:234.930000px;}
.y193{bottom:236.370000px;}
.y206{bottom:239.070000px;}
.y2a{bottom:241.050000px;}
.y10a{bottom:243.030000px;}
.y1b3{bottom:244.650000px;}
.y232{bottom:244.830000px;}
.yd7{bottom:246.465000px;}
.y25d{bottom:246.810000px;}
.y3d{bottom:247.725000px;}
.yef{bottom:249.690000px;}
.y131{bottom:250.770000px;}
.y7c{bottom:252.030000px;}
.yab{bottom:252.750000px;}
.y165{bottom:252.930000px;}
.y152{bottom:253.290000px;}
.yc3{bottom:255.270000px;}
.y1e0{bottom:257.610000px;}
.y192{bottom:259.410000px;}
.y205{bottom:262.830000px;}
.y29{bottom:264.090000px;}
.y109{bottom:265.170000px;}
.y25c{bottom:265.890000px;}
.y1b2{bottom:266.070000px;}
.y231{bottom:266.970000px;}
.y3b{bottom:267.165000px;}
.yee{bottom:272.010000px;}
.y130{bottom:273.630000px;}
.y7b{bottom:274.350000px;}
.yaa{bottom:275.070000px;}
.y164{bottom:275.250000px;}
.y151{bottom:276.510000px;}
.yc2{bottom:277.590000px;}
.y1df{bottom:280.290000px;}
.y191{bottom:282.450000px;}
.y204{bottom:286.590000px;}
.y39{bottom:286.605000px;}
.y28{bottom:287.130000px;}
.y108{bottom:287.490000px;}
.y25b{bottom:287.670000px;}
.y230{bottom:289.290000px;}
.yed{bottom:294.330000px;}
.y7a{bottom:296.490000px;}
.y12f{bottom:296.670000px;}
.ya9{bottom:297.390000px;}
.yc1{bottom:299.730000px;}
.y1de{bottom:302.970000px;}
.y190{bottom:305.490000px;}
.y1b1{bottom:309.090000px;}
.y22f{bottom:309.270000px;}
.y25a{bottom:309.450000px;}
.y107{bottom:309.630000px;}
.y203{bottom:310.350000px;}
.y37{bottom:311.805000px;}
.yec{bottom:316.470000px;}
.y79{bottom:318.810000px;}
.ya8{bottom:319.530000px;}
.y12e{bottom:319.710000px;}
.yc0{bottom:322.050000px;}
.y150{bottom:322.770000px;}
.y1dd{bottom:325.650000px;}
.y18f{bottom:328.350000px;}
.y22e{bottom:328.890000px;}
.y259{bottom:329.070000px;}
.y1b0{bottom:330.510000px;}
.y106{bottom:331.950000px;}
.y160{bottom:331.965000px;}
.y202{bottom:334.110000px;}
.y35{bottom:337.725000px;}
.yeb{bottom:338.790000px;}
.y78{bottom:340.950000px;}
.ya7{bottom:341.850000px;}
.y12d{bottom:342.750000px;}
.ybf{bottom:344.190000px;}
.y27{bottom:344.385000px;}
.y14f{bottom:345.990000px;}
.y258{bottom:348.150000px;}
.y1dc{bottom:348.330000px;}
.y22d{bottom:351.030000px;}
.y18e{bottom:351.390000px;}
.y1af{bottom:351.930000px;}
.y105{bottom:353.190000px;}
.y201{bottom:357.870000px;}
.yea{bottom:360.930000px;}
.y77{bottom:363.270000px;}
.ya6{bottom:363.990000px;}
.y12c{bottom:365.790000px;}
.ybe{bottom:366.510000px;}
.y14e{bottom:369.030000px;}
.y257{bottom:369.930000px;}
.y1db{bottom:371.010000px;}
.y22c{bottom:373.350000px;}
.y1ae{bottom:373.530000px;}
.y104{bottom:373.890000px;}
.y18d{bottom:374.430000px;}
.y200{bottom:381.630000px;}
.ye9{bottom:383.250000px;}
.y76{bottom:385.590000px;}
.ya5{bottom:386.310000px;}
.ybd{bottom:388.650000px;}
.y12b{bottom:388.830000px;}
.y256{bottom:391.710000px;}
.y14d{bottom:392.250000px;}
.y1ad{bottom:393.510000px;}
.y1da{bottom:393.690000px;}
.y22b{bottom:395.490000px;}
.y103{bottom:396.210000px;}
.y18c{bottom:397.470000px;}
.y1a8{bottom:403.065000px;}
.ye8{bottom:405.390000px;}
.y75{bottom:407.730000px;}
.ya4{bottom:408.450000px;}
.ybc{bottom:410.970000px;}
.y12a{bottom:411.690000px;}
.y255{bottom:413.670000px;}
.y14c{bottom:415.290000px;}
.y1d9{bottom:416.370000px;}
.y22a{bottom:417.810000px;}
.y102{bottom:418.530000px;}
.y18b{bottom:420.510000px;}
.ye7{bottom:427.710000px;}
.y1ff{bottom:429.150000px;}
.y74{bottom:430.050000px;}
.ya3{bottom:430.770000px;}
.ybb{bottom:433.290000px;}
.y129{bottom:434.730000px;}
.y229{bottom:437.790000px;}
.y14b{bottom:438.510000px;}
.y1d8{bottom:439.050000px;}
.y101{bottom:440.670000px;}
.y18a{bottom:443.595000px;}
.ye6{bottom:450.075000px;}
.y73{bottom:452.235000px;}
.y254{bottom:452.415000px;}
.ya2{bottom:452.955000px;}
.y1fe{bottom:453.135000px;}
.yba{bottom:455.475000px;}
.y228{bottom:457.455000px;}
.y128{bottom:457.815000px;}
.y14a{bottom:461.595000px;}
.y1d7{bottom:461.955000px;}
.y100{bottom:463.035000px;}
.y189{bottom:466.455000px;}
.ye5{bottom:472.215000px;}
.y253{bottom:474.195000px;}
.y72{bottom:474.555000px;}
.ya1{bottom:475.275000px;}
.y1fd{bottom:476.895000px;}
.yb9{bottom:477.795000px;}
.y227{bottom:479.595000px;}
.y127{bottom:480.855000px;}
.y1d6{bottom:484.635000px;}
.y149{bottom:484.815000px;}
.yff{bottom:485.175000px;}
.y1a7{bottom:488.955000px;}
.y188{bottom:489.495000px;}
.ye4{bottom:494.535000px;}
.y252{bottom:495.975000px;}
.y71{bottom:496.695000px;}
.ya0{bottom:497.595000px;}
.yb8{bottom:499.935000px;}
.y1fc{bottom:500.655000px;}
.y226{bottom:501.915000px;}
.y15e{bottom:502.995000px;}
.y126{bottom:503.895000px;}
.ye2{bottom:506.775000px;}
.y1d5{bottom:507.315000px;}
.yfe{bottom:507.495000px;}
.y148{bottom:507.855000px;}
.y187{bottom:512.535000px;}
.y15d{bottom:517.575000px;}
.y251{bottom:517.755000px;}
.y70{bottom:519.015000px;}
.y9f{bottom:519.735000px;}
.yb7{bottom:522.255000px;}
.y225{bottom:524.055000px;}
.y1fb{bottom:524.415000px;}
.y125{bottom:526.935000px;}
.yfd{bottom:529.635000px;}
.y147{bottom:529.995000px;}
.y16c{bottom:531.615000px;}
.y15c{bottom:532.875000px;}
.y186{bottom:535.575000px;}
.y250{bottom:539.535000px;}
.y144{bottom:540.795000px;}
.y6f{bottom:541.155000px;}
.y9e{bottom:542.055000px;}
.y16b{bottom:542.415000px;}
.y16a{bottom:543.675000px;}
.y224{bottom:544.035000px;}
.yb6{bottom:544.395000px;}
.y15b{bottom:548.175000px;}
.y124{bottom:549.795000px;}
.yfc{bottom:551.955000px;}
.ye0{bottom:552.675000px;}
.y185{bottom:555.915000px;}
.y24f{bottom:561.315000px;}
.y6e{bottom:563.475000px;}
.y223{bottom:563.655000px;}
.y9d{bottom:564.195000px;}
.yb5{bottom:566.715000px;}
.y1fa{bottom:571.935000px;}
.y123{bottom:572.835000px;}
.yfb{bottom:574.275000px;}
.y1d4{bottom:575.355000px;}
.y184{bottom:576.435000px;}
.y15a{bottom:578.775000px;}
.y24e{bottom:580.935000px;}
.y6d{bottom:585.795000px;}
.y222{bottom:585.975000px;}
.y9c{bottom:586.515000px;}
.yb4{bottom:589.035000px;}
.y159{bottom:594.255000px;}
.y1f9{bottom:595.695000px;}
.y122{bottom:595.875000px;}
.yfa{bottom:596.415000px;}
.y1d3{bottom:598.035000px;}
.y183{bottom:599.475000px;}
.y24d{bottom:600.015000px;}
.y6c{bottom:607.935000px;}
.y221{bottom:608.115000px;}
.y9b{bottom:608.655000px;}
.y143{bottom:610.095000px;}
.y157{bottom:610.275000px;}
.yb3{bottom:611.175000px;}
.yf9{bottom:618.735000px;}
.y121{bottom:618.915000px;}
.y1f8{bottom:619.455000px;}
.y1d2{bottom:620.715000px;}
.y24c{bottom:621.975000px;}
.y182{bottom:622.515000px;}
.y6b{bottom:630.255000px;}
.y220{bottom:630.435000px;}
.y9a{bottom:630.975000px;}
.yb2{bottom:632.415000px;}
.y169{bottom:635.655000px;}
.yf8{bottom:640.875000px;}
.y120{bottom:641.955000px;}
.y1f7{bottom:643.215000px;}
.y1d1{bottom:643.395000px;}
.y25{bottom:643.575000px;}
.y24b{bottom:643.755000px;}
.y181{bottom:645.555000px;}
.y21f{bottom:650.415000px;}
.y6a{bottom:652.395000px;}
.yf7{bottom:653.115000px;}
.y99{bottom:653.295000px;}
.y24{bottom:653.835000px;}
.y24a{bottom:663.375000px;}
.y11f{bottom:664.815000px;}
.y1d0{bottom:666.075000px;}
.y1f6{bottom:666.975000px;}
.y180{bottom:668.415000px;}
.y22{bottom:669.135000px;}
.y21e{bottom:669.855000px;}
.y69{bottom:674.715000px;}
.y98{bottom:675.435000px;}
.y249{bottom:682.485000px;}
.y20{bottom:686.265000px;}
.y11e{bottom:687.885000px;}
.y1cf{bottom:688.785000px;}
.y1f5{bottom:690.765000px;}
.y17f{bottom:691.485000px;}
.y21d{bottom:692.205000px;}
.yd6{bottom:696.165000px;}
.y68{bottom:696.885000px;}
.y97{bottom:697.785000px;}
.yf6{bottom:699.225000px;}
.y248{bottom:704.265000px;}
.y1e{bottom:704.625000px;}
.y11d{bottom:710.925000px;}
.y1ce{bottom:711.465000px;}
.y21c{bottom:714.345000px;}
.y17e{bottom:714.525000px;}
.yd5{bottom:718.485000px;}
.y67{bottom:719.205000px;}
.y96{bottom:719.925000px;}
.y1c{bottom:721.545000px;}
.y247{bottom:726.045000px;}
.y11c{bottom:733.965000px;}
.y1cd{bottom:734.145000px;}
.y21b{bottom:736.665000px;}
.y1a{bottom:736.845000px;}
.y17d{bottom:737.565000px;}
.y1f4{bottom:738.465000px;}
.yd4{bottom:740.625000px;}
.y66{bottom:741.525000px;}
.y95{bottom:742.245000px;}
.y14{bottom:745.305000px;}
.y246{bottom:745.665000px;}
.y21a{bottom:756.645000px;}
.y1cc{bottom:756.825000px;}
.y11b{bottom:757.005000px;}
.y17c{bottom:760.605000px;}
.y1f3{bottom:762.225000px;}
.yd3{bottom:762.945000px;}
.y65{bottom:763.665000px;}
.y94{bottom:764.385000px;}
.y245{bottom:764.745000px;}
.y219{bottom:776.265000px;}
.y1cb{bottom:779.505000px;}
.y11a{bottom:780.045000px;}
.y17b{bottom:783.465000px;}
.yd2{bottom:785.085000px;}
.y64{bottom:785.985000px;}
.y244{bottom:786.525000px;}
.y93{bottom:786.705000px;}
.y218{bottom:798.405000px;}
.y1ca{bottom:802.185000px;}
.y119{bottom:802.905000px;}
.y17a{bottom:806.505000px;}
.yd1{bottom:807.405000px;}
.y63{bottom:808.125000px;}
.y243{bottom:808.305000px;}
.y92{bottom:809.025000px;}
.y1f2{bottom:809.745000px;}
.ycc{bottom:819.645000px;}
.y217{bottom:820.725000px;}
.y1c9{bottom:824.865000px;}
.y118{bottom:825.945000px;}
.y179{bottom:829.545000px;}
.y242{bottom:830.265000px;}
.y62{bottom:830.445000px;}
.y91{bottom:831.165000px;}
.y1f1{bottom:833.505000px;}
.y216{bottom:842.865000px;}
.y1c8{bottom:847.545000px;}
.y117{bottom:848.985000px;}
.y241{bottom:849.885000px;}
.y61{bottom:852.585000px;}
.y90{bottom:853.485000px;}
.y1f0{bottom:857.265000px;}
.y215{bottom:863.025000px;}
.y240{bottom:868.965000px;}
.y1c7{bottom:870.225000px;}
.y1a6{bottom:871.665000px;}
.y116{bottom:872.025000px;}
.y178{bottom:872.925000px;}
.y60{bottom:874.905000px;}
.y8f{bottom:875.625000px;}
.y1ef{bottom:881.025000px;}
.y214{bottom:882.465000px;}
.y12{bottom:885.525000px;}
.y142{bottom:888.045000px;}
.y23f{bottom:890.745000px;}
.y1a5{bottom:891.105000px;}
.y1c6{bottom:892.905000px;}
.y177{bottom:893.445000px;}
.y10{bottom:894.705000px;}
.y115{bottom:895.065000px;}
.y5f{bottom:897.225000px;}
.y8e{bottom:897.945000px;}
.y1ee{bottom:904.785000px;}
.y1a4{bottom:905.685000px;}
.y141{bottom:911.310000px;}
.yca{bottom:911.670000px;}
.y23e{bottom:912.570000px;}
.y1c5{bottom:915.810000px;}
.y176{bottom:916.530000px;}
.y114{bottom:918.150000px;}
.y5e{bottom:919.410000px;}
.y8d{bottom:920.130000px;}
.y1a3{bottom:920.490000px;}
.ye{bottom:922.650000px;}
.y213{bottom:926.970000px;}
.yb{bottom:927.870000px;}
.y1ed{bottom:928.590000px;}
.y140{bottom:934.350000px;}
.y1a2{bottom:935.430000px;}
.y1c4{bottom:938.490000px;}
.y175{bottom:939.570000px;}
.y113{bottom:941.010000px;}
.y5d{bottom:941.730000px;}
.y8c{bottom:942.450000px;}
.y212{bottom:949.290000px;}
.y1a1{bottom:950.370000px;}
.y1ec{bottom:952.350000px;}
.y23d{bottom:953.970000px;}
.y13f{bottom:957.570000px;}
.y1c3{bottom:961.170000px;}
.y174{bottom:962.610000px;}
.y5c{bottom:963.870000px;}
.y112{bottom:964.050000px;}
.y8b{bottom:964.590000px;}
.y1a0{bottom:965.310000px;}
.y211{bottom:969.270000px;}
.y23c{bottom:973.050000px;}
.y1eb{bottom:976.110000px;}
.y19f{bottom:980.070000px;}
.y13e{bottom:980.610000px;}
.y1c2{bottom:983.850000px;}
.y173{bottom:985.650000px;}
.y5b{bottom:986.190000px;}
.y8a{bottom:986.910000px;}
.y111{bottom:987.090000px;}
.y210{bottom:988.710000px;}
.y23b{bottom:994.830000px;}
.y19e{bottom:995.010000px;}
.y1ea{bottom:999.870000px;}
.y13d{bottom:1003.830000px;}
.y1c1{bottom:1006.530000px;}
.y5a{bottom:1008.330000px;}
.y172{bottom:1008.510000px;}
.y89{bottom:1009.230000px;}
.y19d{bottom:1009.950000px;}
.y20f{bottom:1011.030000px;}
.y266{bottom:1011.570000px;}
.ya{bottom:1013.550000px;}
.y23a{bottom:1016.610000px;}
.y1e9{bottom:1023.810000px;}
.y19c{bottom:1024.890000px;}
.y13c{bottom:1026.870000px;}
.y1c0{bottom:1029.210000px;}
.y4{bottom:1030.290000px;}
.y59{bottom:1030.650000px;}
.y88{bottom:1031.370000px;}
.y171{bottom:1031.550000px;}
.y20e{bottom:1033.350000px;}
.y265{bottom:1033.710000px;}
.y239{bottom:1038.570000px;}
.y199{bottom:1040.370000px;}
.y45{bottom:1043.280000px;}
.y1e8{bottom:1047.570000px;}
.y13b{bottom:1050.090000px;}
.y1bf{bottom:1051.890000px;}
.y58{bottom:1052.790000px;}
.y20d{bottom:1053.330000px;}
.y87{bottom:1053.690000px;}
.y170{bottom:1054.590000px;}
.y264{bottom:1055.490000px;}
.y19a{bottom:1056.030000px;}
.y238{bottom:1058.190000px;}
.y1e7{bottom:1071.330000px;}
.y20c{bottom:1072.770000px;}
.y13a{bottom:1073.130000px;}
.y1be{bottom:1074.570000px;}
.y57{bottom:1075.110000px;}
.y86{bottom:1075.830000px;}
.y237{bottom:1077.270000px;}
.y16f{bottom:1085.910000px;}
.y1e6{bottom:1095.090000px;}
.y139{bottom:1096.350000px;}
.y1bd{bottom:1097.250000px;}
.y56{bottom:1097.430000px;}
.y85{bottom:1098.150000px;}
.y236{bottom:1099.050000px;}
.y1e5{bottom:1118.850000px;}
.y138{bottom:1119.390000px;}
.y55{bottom:1119.570000px;}
.y1bc{bottom:1119.930000px;}
.y84{bottom:1120.290000px;}
.y235{bottom:1120.830000px;}
.y83{bottom:1142.610000px;}
.y54{bottom:1142.790000px;}
.y4e{bottom:1161.000000px;}
.y4c{bottom:1185.840000px;}
.h2c{height:1.999688px;}
.h49{height:4.356563px;}
.h9{height:5.205000px;}
.h21{height:6.645000px;}
.h11{height:8.460000px;}
.hd{height:9.180000px;}
.h1d{height:10.245000px;}
.ha{height:12.190430px;}
.h52{height:14.745000px;}
.h53{height:14.782500px;}
.h51{height:14.925000px;}
.h1b{height:15.285000px;}
.h13{height:15.300000px;}
.h44{height:15.465000px;}
.h22{height:16.543828px;}
.h15{height:16.920000px;}
.h19{height:17.130000px;}
.h32{height:17.640000px;}
.h16{height:18.360000px;}
.h29{height:19.245000px;}
.h27{height:19.425000px;}
.h2a{height:19.476000px;}
.h12{height:21.055781px;}
.he{height:22.975313px;}
.h4c{height:23.038500px;}
.h10{height:23.980781px;}
.h25{height:25.185000px;}
.h23{height:25.905000px;}
.h1e{height:27.228516px;}
.h33{height:27.898500px;}
.hb{height:27.922500px;}
.h2{height:28.798500px;}
.h24{height:29.145586px;}
.h50{height:29.865000px;}
.h43{height:30.585000px;}
.h4a{height:31.585078px;}
.h40{height:31.605469px;}
.h4e{height:34.307930px;}
.h35{height:34.684453px;}
.h36{height:36.509766px;}
.h28{height:40.472227px;}
.h1c{height:40.842773px;}
.h20{height:40.869141px;}
.h26{height:41.493516px;}
.h37{height:42.366094px;}
.h14{height:44.820000px;}
.hc{height:44.860781px;}
.h1a{height:45.199336px;}
.h4f{height:45.525000px;}
.h18{height:45.695391px;}
.h3d{height:45.885000px;}
.h3f{height:46.110000px;}
.h3b{height:46.116000px;}
.h17{height:50.100469px;}
.h3{height:50.597578px;}
.h2f{height:54.000000px;}
.h6{height:54.457031px;}
.h31{height:56.084062px;}
.h30{height:56.160000px;}
.h8{height:57.051211px;}
.h2e{height:63.180000px;}
.h4d{height:68.970000px;}
.h42{height:69.285000px;}
.h4{height:70.664062px;}
.h7{height:71.265000px;}
.h34{height:72.562500px;}
.h55{height:85.881000px;}
.h48{height:91.965000px;}
.h39{height:92.002500px;}
.h2d{height:114.660000px;}
.h2b{height:122.256000px;}
.h5{height:124.590000px;}
.hf{height:140.220000px;}
.h46{height:161.115000px;}
.h38{height:176.385000px;}
.h3c{height:246.270000px;}
.h41{height:267.150000px;}
.h3e{height:277.590000px;}
.h1f{height:299.175000px;}
.h54{height:374.970000px;}
.h45{height:381.313500px;}
.h47{height:385.800000px;}
.h4b{height:391.213500px;}
.h3a{height:439.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w19{width:80.301000px;}
.w18{width:82.245000px;}
.w17{width:90.576000px;}
.w16{width:93.060000px;}
.w1a{width:100.605000px;}
.w4{width:101.329500px;}
.w21{width:104.385000px;}
.w1f{width:104.421000px;}
.w20{width:104.616000px;}
.w1b{width:128.509500px;}
.w1e{width:128.685000px;}
.w9{width:154.429500px;}
.w1d{width:208.815000px;}
.w1c{width:209.040000px;}
.w15{width:228.259500px;}
.w8{width:243.915000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w13{width:324.015000px;}
.w14{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.w23{width:337.515000px;}
.w22{width:337.564500px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w2{width:414.424500px;}
.w7{width:431.164500px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x3e{left:5.385000px;}
.x16{left:6.465000px;}
.x8{left:7.725000px;}
.x1d{left:8.820000px;}
.x23{left:10.260000px;}
.x24{left:13.170000px;}
.x1f{left:14.430000px;}
.x1c{left:15.660000px;}
.x25{left:16.740000px;}
.x14{left:17.809500px;}
.x27{left:19.470000px;}
.x2a{left:20.700000px;}
.x26{left:21.780000px;}
.x29{left:23.430000px;}
.x28{left:24.840000px;}
.x35{left:26.805000px;}
.x34{left:27.930000px;}
.x36{left:28.965000px;}
.x2c{left:30.630000px;}
.x18{left:32.565000px;}
.x38{left:34.410000px;}
.x2b{left:37.080000px;}
.xc{left:38.370000px;}
.x3a{left:40.680000px;}
.x39{left:42.120000px;}
.x37{left:43.560000px;}
.x3b{left:46.440000px;}
.x3c{left:55.980000px;}
.x33{left:64.260000px;}
.x2f{left:90.210000px;}
.x30{left:104.430000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x13{left:122.025000px;}
.x19{left:143.445000px;}
.x15{left:164.385000px;}
.x4{left:197.490000px;}
.x6{left:209.385000px;}
.xd{left:221.115000px;}
.x2e{left:236.565000px;}
.x9{left:263.385000px;}
.xe{left:273.705000px;}
.x2d{left:286.228500px;}
.x3d{left:292.888500px;}
.xf{left:303.405000px;}
.x1a{left:324.030000px;}
.x1b{left:336.315000px;}
.x10{left:341.025000px;}
.x1e{left:429.375000px;}
.x17{left:444.720000px;}
.x12{left:450.480000px;}
.xa{left:458.220000px;}
.xb{left:462.705000px;}
.x20{left:519.960000px;}
.x3{left:521.220000px;}
.x7{left:540.120000px;}
.x32{left:550.020000px;}
.x11{left:573.990000px;}
.x21{left:602.220000px;}
.x31{left:654.450000px;}
.x22{left:682.530000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.160000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:16.160000pt;}
.ls29{letter-spacing:-1.568000pt;}
.ls2a{letter-spacing:-1.536000pt;}
.ls2e{letter-spacing:-1.440000pt;}
.ls34{letter-spacing:-1.136000pt;}
.ls36{letter-spacing:-1.104000pt;}
.ls35{letter-spacing:-1.072000pt;}
.ls2d{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.288000pt;}
.ls2f{letter-spacing:-0.272000pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.240000pt;}
.ls38{letter-spacing:-0.208000pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.086933pt;}
.ls5{letter-spacing:-0.069333pt;}
.ls2b{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.028160pt;}
.ls3c{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.208000pt;}
.ls22{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls0{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.342933pt;}
.ls3f{letter-spacing:0.400000pt;}
.lse{letter-spacing:0.464000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.496000pt;}
.ls18{letter-spacing:0.560000pt;}
.ls2{letter-spacing:0.595840pt;}
.ls1c{letter-spacing:0.624000pt;}
.ls21{letter-spacing:0.656000pt;}
.ls12{letter-spacing:0.672000pt;}
.ls3d{letter-spacing:0.688000pt;}
.ls3b{letter-spacing:0.832000pt;}
.ls31{letter-spacing:0.992000pt;}
.ls15{letter-spacing:1.088000pt;}
.lsb{letter-spacing:1.104000pt;}
.ls7{letter-spacing:1.120000pt;}
.ls16{letter-spacing:1.136000pt;}
.lsd{letter-spacing:1.200000pt;}
.ls2c{letter-spacing:1.232000pt;}
.ls1b{letter-spacing:1.264000pt;}
.ls1f{letter-spacing:1.296000pt;}
.lsf{letter-spacing:1.312000pt;}
.ls11{letter-spacing:1.328000pt;}
.ls3a{letter-spacing:1.360000pt;}
.ls33{letter-spacing:1.424000pt;}
.ls9{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.488000pt;}
.ls1a{letter-spacing:1.536000pt;}
.ls20{letter-spacing:1.568000pt;}
.ls14{letter-spacing:1.888000pt;}
.ls1e{letter-spacing:3.792000pt;}
.ls1d{letter-spacing:4.432000pt;}
.ls3e{letter-spacing:10.832000pt;}
.ls13{letter-spacing:13.392000pt;}
.ls28{letter-spacing:14.048000pt;}
.ls32{letter-spacing:14.672000pt;}
.ls10{letter-spacing:30.672000pt;}
.ls37{letter-spacing:54.992000pt;}
.ws5{word-spacing:-18.167040pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.192640pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-13.632000pt;}
.ws1b{word-spacing:-13.616000pt;}
.ws22{word-spacing:-13.552000pt;}
.ws19{word-spacing:-13.504000pt;}
.ws8{word-spacing:-13.296533pt;}
.ws24{word-spacing:-13.024000pt;}
.wsf{word-spacing:-12.896000pt;}
.ws26{word-spacing:-12.880000pt;}
.ws23{word-spacing:-12.864000pt;}
.wsc{word-spacing:-12.768000pt;}
.ws1a{word-spacing:-12.688000pt;}
.ws10{word-spacing:-12.656000pt;}
.ws1c{word-spacing:-12.560000pt;}
.ws21{word-spacing:-12.400000pt;}
.ws6{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.032000pt;}
.ws15{word-spacing:-11.760000pt;}
.ws0{word-spacing:-11.617067pt;}
.ws25{word-spacing:-11.616000pt;}
.wsa{word-spacing:-11.599467pt;}
.wsd{word-spacing:-11.568000pt;}
.ws11{word-spacing:-11.424000pt;}
.ws18{word-spacing:-11.408000pt;}
.ws12{word-spacing:-11.328000pt;}
.ws14{word-spacing:-11.312000pt;}
.ws13{word-spacing:-11.280000pt;}
.ws1f{word-spacing:-11.120000pt;}
.ws20{word-spacing:-11.088000pt;}
.ws1e{word-spacing:-11.056000pt;}
.ws17{word-spacing:-10.032000pt;}
.ws16{word-spacing:-10.000000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.512000pt;}
.ws1{word-spacing:-7.872000pt;}
.ws9{word-spacing:0.000000pt;}
._a{margin-left:-2.634453pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._4{width:2.112000pt;}
._6{width:3.363840pt;}
._2{width:5.045760pt;}
._3{width:6.193920pt;}
._8{width:7.128107pt;}
._7{width:8.064640pt;}
._9{width:9.226880pt;}
._19{width:10.585387pt;}
._5{width:12.741973pt;}
._c{width:14.119680pt;}
._1a{width:15.082240pt;}
._d{width:16.020693pt;}
._15{width:17.637973pt;}
._20{width:18.840533pt;}
._17{width:20.198827pt;}
._18{width:21.912533pt;}
._2b{width:22.826027pt;}
._21{width:23.748267pt;}
._16{width:25.298560pt;}
._11{width:26.503680pt;}
._31{width:27.442133pt;}
._f{width:28.375680pt;}
._b{width:29.985707pt;}
._2c{width:31.323093pt;}
._2f{width:32.506240pt;}
._36{width:33.412053pt;}
._12{width:34.435413pt;}
._2e{width:36.069760pt;}
._32{width:36.965120pt;}
._2d{width:37.886293pt;}
._13{width:38.904533pt;}
._26{width:40.325120pt;}
._35{width:41.536853pt;}
._27{width:42.821120pt;}
._22{width:44.727680pt;}
._29{width:45.829973pt;}
._e{width:46.898560pt;}
._14{width:48.098347pt;}
._23{width:48.987733pt;}
._24{width:50.798507pt;}
._25{width:51.763413pt;}
._33{width:52.704000pt;}
._34{width:53.757440pt;}
._3b{width:54.883413pt;}
._37{width:55.920000pt;}
._38{width:57.376000pt;}
._39{width:58.990933pt;}
._10{width:60.149120pt;}
._1e{width:61.610240pt;}
._3c{width:62.613973pt;}
._2a{width:68.853973pt;}
._1f{width:76.134827pt;}
._1c{width:79.194667pt;}
._1b{width:80.222933pt;}
._3a{width:86.354560pt;}
._1d{width:101.898240pt;}
._28{width:111.915093pt;}
._30{width:115.264853pt;}
.fsb{font-size:2.560000pt;}
.fsf{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fse{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.y4b{bottom:-16.346667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.280000pt;}
.y36{bottom:1.426667pt;}
.y13{bottom:1.440000pt;}
.y1b{bottom:1.920000pt;}
.y26{bottom:2.080000pt;}
.y4a{bottom:2.533333pt;}
.y1d{bottom:2.720000pt;}
.y21{bottom:2.880000pt;}
.y4d{bottom:3.040000pt;}
.y23{bottom:3.200000pt;}
.y1f{bottom:4.000000pt;}
.y40{bottom:5.746667pt;}
.y3c{bottom:5.906667pt;}
.y42{bottom:5.920000pt;}
.yd8{bottom:6.866667pt;}
.ycb{bottom:6.880000pt;}
.ye1{bottom:7.040000pt;}
.y1ac{bottom:8.146667pt;}
.y146{bottom:9.600000pt;}
.y34{bottom:9.746667pt;}
.yd0{bottom:9.760000pt;}
.ydb{bottom:9.786667pt;}
.y50{bottom:10.400000pt;}
.y3a{bottom:11.026667pt;}
.y51{bottom:12.160000pt;}
.y11{bottom:12.320000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y38{bottom:14.546667pt;}
.y52{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.y19b{bottom:16.160000pt;}
.y158{bottom:16.320000pt;}
.y19{bottom:16.960000pt;}
.y49{bottom:24.293333pt;}
.y1ab{bottom:27.186667pt;}
.y163{bottom:30.066667pt;}
.ye3{bottom:30.080000pt;}
.y33{bottom:30.226667pt;}
.ycf{bottom:30.240000pt;}
.yda{bottom:30.266667pt;}
.y8{bottom:40.480000pt;}
.y18{bottom:41.920000pt;}
.y53{bottom:42.240000pt;}
.y48{bottom:44.933333pt;}
.y1aa{bottom:46.426667pt;}
.yc{bottom:47.360000pt;}
.y162{bottom:50.546667pt;}
.yce{bottom:50.560000pt;}
.y32{bottom:50.706667pt;}
.y145{bottom:50.720000pt;}
.y3{bottom:51.840000pt;}
.y4f{bottom:56.640000pt;}
.y47{bottom:65.413333pt;}
.y1a9{bottom:65.466667pt;}
.y1{bottom:66.240000pt;}
.y17{bottom:66.880000pt;}
.y7{bottom:68.160000pt;}
.y31{bottom:71.026667pt;}
.ycd{bottom:71.040000pt;}
.y46{bottom:86.533333pt;}
.y161{bottom:91.506667pt;}
.y30{bottom:91.546667pt;}
.y16{bottom:91.840000pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y16e{bottom:96.960000pt;}
.y15f{bottom:99.360000pt;}
.y137{bottom:100.160000pt;}
.y1bb{bottom:101.440000pt;}
.y110{bottom:101.760000pt;}
.y1b9{bottom:102.880000pt;}
.yf5{bottom:103.360000pt;}
.y263{bottom:104.960000pt;}
.y82{bottom:105.440000pt;}
.yb1{bottom:106.080000pt;}
.y168{bottom:106.240000pt;}
.y20b{bottom:106.720000pt;}
.y198{bottom:107.840000pt;}
.ydf{bottom:108.000000pt;}
.yc9{bottom:108.320000pt;}
.y2f{bottom:112.026667pt;}
.y15{bottom:116.800000pt;}
.y16d{bottom:117.440000pt;}
.y136{bottom:120.480000pt;}
.y1ba{bottom:121.280000pt;}
.y10f{bottom:121.440000pt;}
.y1b8{bottom:121.920000pt;}
.y156{bottom:122.400000pt;}
.yf4{bottom:123.200000pt;}
.y262{bottom:124.320000pt;}
.y81{bottom:125.120000pt;}
.yb0{bottom:125.920000pt;}
.yde{bottom:127.680000pt;}
.y20a{bottom:127.840000pt;}
.yc8{bottom:128.000000pt;}
.y1e4{bottom:128.160000pt;}
.y197{bottom:128.320000pt;}
.y2e{bottom:132.506667pt;}
.y44{bottom:137.280000pt;}
.y135{bottom:140.960000pt;}
.y1b7{bottom:141.120000pt;}
.y10e{bottom:141.280000pt;}
.yf3{bottom:142.880000pt;}
.y261{bottom:143.680000pt;}
.y80{bottom:144.960000pt;}
.yaf{bottom:145.600000pt;}
.y167{bottom:145.760000pt;}
.ydd{bottom:147.520000pt;}
.yc7{bottom:147.840000pt;}
.y1e3{bottom:148.320000pt;}
.y196{bottom:148.800000pt;}
.y209{bottom:148.960000pt;}
.y2d{bottom:152.986667pt;}
.y43{bottom:157.760000pt;}
.y1b6{bottom:160.160000pt;}
.y10d{bottom:161.120000pt;}
.y134{bottom:161.440000pt;}
.yf2{bottom:162.720000pt;}
.y260{bottom:163.040000pt;}
.y155{bottom:163.520000pt;}
.y7f{bottom:164.640000pt;}
.yae{bottom:165.440000pt;}
.ydc{bottom:167.200000pt;}
.yc6{bottom:167.520000pt;}
.y41{bottom:168.480000pt;}
.y195{bottom:169.120000pt;}
.y208{bottom:170.240000pt;}
.y2c{bottom:173.466667pt;}
.yd9{bottom:178.080000pt;}
.y10c{bottom:178.880000pt;}
.y1b5{bottom:179.200000pt;}
.y234{bottom:180.480000pt;}
.y133{bottom:181.920000pt;}
.yf1{bottom:182.400000pt;}
.y25f{bottom:182.560000pt;}
.y154{bottom:184.026667pt;}
.y7e{bottom:184.506667pt;}
.yad{bottom:185.146667pt;}
.y166{bottom:185.306667pt;}
.y3f{bottom:185.800000pt;}
.yc5{bottom:187.386667pt;}
.y1e2{bottom:188.666667pt;}
.y194{bottom:189.626667pt;}
.y207{bottom:191.386667pt;}
.y2b{bottom:193.786667pt;}
.y10b{bottom:196.186667pt;}
.y233{bottom:197.786667pt;}
.y1b4{bottom:198.266667pt;}
.y25e{bottom:201.946667pt;}
.yf0{bottom:202.266667pt;}
.y132{bottom:202.426667pt;}
.y3e{bottom:202.920000pt;}
.y7d{bottom:204.346667pt;}
.y153{bottom:204.666667pt;}
.yac{bottom:204.986667pt;}
.yc4{bottom:207.226667pt;}
.y1e1{bottom:208.826667pt;}
.y193{bottom:210.106667pt;}
.y206{bottom:212.506667pt;}
.y2a{bottom:214.266667pt;}
.y10a{bottom:216.026667pt;}
.y1b3{bottom:217.466667pt;}
.y232{bottom:217.626667pt;}
.yd7{bottom:219.080000pt;}
.y25d{bottom:219.386667pt;}
.y3d{bottom:220.200000pt;}
.yef{bottom:221.946667pt;}
.y131{bottom:222.906667pt;}
.y7c{bottom:224.026667pt;}
.yab{bottom:224.666667pt;}
.y165{bottom:224.826667pt;}
.y152{bottom:225.146667pt;}
.yc3{bottom:226.906667pt;}
.y1e0{bottom:228.986667pt;}
.y192{bottom:230.586667pt;}
.y205{bottom:233.626667pt;}
.y29{bottom:234.746667pt;}
.y109{bottom:235.706667pt;}
.y25c{bottom:236.346667pt;}
.y1b2{bottom:236.506667pt;}
.y231{bottom:237.306667pt;}
.y3b{bottom:237.480000pt;}
.yee{bottom:241.786667pt;}
.y130{bottom:243.226667pt;}
.y7b{bottom:243.866667pt;}
.yaa{bottom:244.506667pt;}
.y164{bottom:244.666667pt;}
.y151{bottom:245.786667pt;}
.yc2{bottom:246.746667pt;}
.y1df{bottom:249.146667pt;}
.y191{bottom:251.066667pt;}
.y204{bottom:254.746667pt;}
.y39{bottom:254.760000pt;}
.y28{bottom:255.226667pt;}
.y108{bottom:255.546667pt;}
.y25b{bottom:255.706667pt;}
.y230{bottom:257.146667pt;}
.yed{bottom:261.626667pt;}
.y7a{bottom:263.546667pt;}
.y12f{bottom:263.706667pt;}
.ya9{bottom:264.346667pt;}
.yc1{bottom:266.426667pt;}
.y1de{bottom:269.306667pt;}
.y190{bottom:271.546667pt;}
.y1b1{bottom:274.746667pt;}
.y22f{bottom:274.906667pt;}
.y25a{bottom:275.066667pt;}
.y107{bottom:275.226667pt;}
.y203{bottom:275.866667pt;}
.y37{bottom:277.160000pt;}
.yec{bottom:281.306667pt;}
.y79{bottom:283.386667pt;}
.ya8{bottom:284.026667pt;}
.y12e{bottom:284.186667pt;}
.yc0{bottom:286.266667pt;}
.y150{bottom:286.906667pt;}
.y1dd{bottom:289.466667pt;}
.y18f{bottom:291.866667pt;}
.y22e{bottom:292.346667pt;}
.y259{bottom:292.506667pt;}
.y1b0{bottom:293.786667pt;}
.y106{bottom:295.066667pt;}
.y160{bottom:295.080000pt;}
.y202{bottom:296.986667pt;}
.y35{bottom:300.200000pt;}
.yeb{bottom:301.146667pt;}
.y78{bottom:303.066667pt;}
.ya7{bottom:303.866667pt;}
.y12d{bottom:304.666667pt;}
.ybf{bottom:305.946667pt;}
.y27{bottom:306.120000pt;}
.y14f{bottom:307.546667pt;}
.y258{bottom:309.466667pt;}
.y1dc{bottom:309.626667pt;}
.y22d{bottom:312.026667pt;}
.y18e{bottom:312.346667pt;}
.y1af{bottom:312.826667pt;}
.y105{bottom:313.946667pt;}
.y201{bottom:318.106667pt;}
.yea{bottom:320.826667pt;}
.y77{bottom:322.906667pt;}
.ya6{bottom:323.546667pt;}
.y12c{bottom:325.146667pt;}
.ybe{bottom:325.786667pt;}
.y14e{bottom:328.026667pt;}
.y257{bottom:328.826667pt;}
.y1db{bottom:329.786667pt;}
.y22c{bottom:331.866667pt;}
.y1ae{bottom:332.026667pt;}
.y104{bottom:332.346667pt;}
.y18d{bottom:332.826667pt;}
.y200{bottom:339.226667pt;}
.ye9{bottom:340.666667pt;}
.y76{bottom:342.746667pt;}
.ya5{bottom:343.386667pt;}
.ybd{bottom:345.466667pt;}
.y12b{bottom:345.626667pt;}
.y256{bottom:348.186667pt;}
.y14d{bottom:348.666667pt;}
.y1ad{bottom:349.786667pt;}
.y1da{bottom:349.946667pt;}
.y22b{bottom:351.546667pt;}
.y103{bottom:352.186667pt;}
.y18c{bottom:353.306667pt;}
.y1a8{bottom:358.280000pt;}
.ye8{bottom:360.346667pt;}
.y75{bottom:362.426667pt;}
.ya4{bottom:363.066667pt;}
.ybc{bottom:365.306667pt;}
.y12a{bottom:365.946667pt;}
.y255{bottom:367.706667pt;}
.y14c{bottom:369.146667pt;}
.y1d9{bottom:370.106667pt;}
.y22a{bottom:371.386667pt;}
.y102{bottom:372.026667pt;}
.y18b{bottom:373.786667pt;}
.ye7{bottom:380.186667pt;}
.y1ff{bottom:381.466667pt;}
.y74{bottom:382.266667pt;}
.ya3{bottom:382.906667pt;}
.ybb{bottom:385.146667pt;}
.y129{bottom:386.426667pt;}
.y229{bottom:389.146667pt;}
.y14b{bottom:389.786667pt;}
.y1d8{bottom:390.266667pt;}
.y101{bottom:391.706667pt;}
.y18a{bottom:394.306667pt;}
.ye6{bottom:400.066667pt;}
.y73{bottom:401.986667pt;}
.y254{bottom:402.146667pt;}
.ya2{bottom:402.626667pt;}
.y1fe{bottom:402.786667pt;}
.yba{bottom:404.866667pt;}
.y228{bottom:406.626667pt;}
.y128{bottom:406.946667pt;}
.y14a{bottom:410.306667pt;}
.y1d7{bottom:410.626667pt;}
.y100{bottom:411.586667pt;}
.y189{bottom:414.626667pt;}
.ye5{bottom:419.746667pt;}
.y253{bottom:421.506667pt;}
.y72{bottom:421.826667pt;}
.ya1{bottom:422.466667pt;}
.y1fd{bottom:423.906667pt;}
.yb9{bottom:424.706667pt;}
.y227{bottom:426.306667pt;}
.y127{bottom:427.426667pt;}
.y1d6{bottom:430.786667pt;}
.y149{bottom:430.946667pt;}
.yff{bottom:431.266667pt;}
.y1a7{bottom:434.626667pt;}
.y188{bottom:435.106667pt;}
.ye4{bottom:439.586667pt;}
.y252{bottom:440.866667pt;}
.y71{bottom:441.506667pt;}
.ya0{bottom:442.306667pt;}
.yb8{bottom:444.386667pt;}
.y1fc{bottom:445.026667pt;}
.y226{bottom:446.146667pt;}
.y15e{bottom:447.106667pt;}
.y126{bottom:447.906667pt;}
.ye2{bottom:450.466667pt;}
.y1d5{bottom:450.946667pt;}
.yfe{bottom:451.106667pt;}
.y148{bottom:451.426667pt;}
.y187{bottom:455.586667pt;}
.y15d{bottom:460.066667pt;}
.y251{bottom:460.226667pt;}
.y70{bottom:461.346667pt;}
.y9f{bottom:461.986667pt;}
.yb7{bottom:464.226667pt;}
.y225{bottom:465.826667pt;}
.y1fb{bottom:466.146667pt;}
.y125{bottom:468.386667pt;}
.yfd{bottom:470.786667pt;}
.y147{bottom:471.106667pt;}
.y16c{bottom:472.546667pt;}
.y15c{bottom:473.666667pt;}
.y186{bottom:476.066667pt;}
.y250{bottom:479.586667pt;}
.y144{bottom:480.706667pt;}
.y6f{bottom:481.026667pt;}
.y9e{bottom:481.826667pt;}
.y16b{bottom:482.146667pt;}
.y16a{bottom:483.266667pt;}
.y224{bottom:483.586667pt;}
.yb6{bottom:483.906667pt;}
.y15b{bottom:487.266667pt;}
.y124{bottom:488.706667pt;}
.yfc{bottom:490.626667pt;}
.ye0{bottom:491.266667pt;}
.y185{bottom:494.146667pt;}
.y24f{bottom:498.946667pt;}
.y6e{bottom:500.866667pt;}
.y223{bottom:501.026667pt;}
.y9d{bottom:501.506667pt;}
.yb5{bottom:503.746667pt;}
.y1fa{bottom:508.386667pt;}
.y123{bottom:509.186667pt;}
.yfb{bottom:510.466667pt;}
.y1d4{bottom:511.426667pt;}
.y184{bottom:512.386667pt;}
.y15a{bottom:514.466667pt;}
.y24e{bottom:516.386667pt;}
.y6d{bottom:520.706667pt;}
.y222{bottom:520.866667pt;}
.y9c{bottom:521.346667pt;}
.yb4{bottom:523.586667pt;}
.y159{bottom:528.226667pt;}
.y1f9{bottom:529.506667pt;}
.y122{bottom:529.666667pt;}
.yfa{bottom:530.146667pt;}
.y1d3{bottom:531.586667pt;}
.y183{bottom:532.866667pt;}
.y24d{bottom:533.346667pt;}
.y6c{bottom:540.386667pt;}
.y221{bottom:540.546667pt;}
.y9b{bottom:541.026667pt;}
.y143{bottom:542.306667pt;}
.y157{bottom:542.466667pt;}
.yb3{bottom:543.266667pt;}
.yf9{bottom:549.986667pt;}
.y121{bottom:550.146667pt;}
.y1f8{bottom:550.626667pt;}
.y1d2{bottom:551.746667pt;}
.y24c{bottom:552.866667pt;}
.y182{bottom:553.346667pt;}
.y6b{bottom:560.226667pt;}
.y220{bottom:560.386667pt;}
.y9a{bottom:560.866667pt;}
.yb2{bottom:562.146667pt;}
.y169{bottom:565.026667pt;}
.yf8{bottom:569.666667pt;}
.y120{bottom:570.626667pt;}
.y1f7{bottom:571.746667pt;}
.y1d1{bottom:571.906667pt;}
.y25{bottom:572.066667pt;}
.y24b{bottom:572.226667pt;}
.y181{bottom:573.826667pt;}
.y21f{bottom:578.146667pt;}
.y6a{bottom:579.906667pt;}
.yf7{bottom:580.546667pt;}
.y99{bottom:580.706667pt;}
.y24{bottom:581.186667pt;}
.y24a{bottom:589.666667pt;}
.y11f{bottom:590.946667pt;}
.y1d0{bottom:592.066667pt;}
.y1f6{bottom:592.866667pt;}
.y180{bottom:594.146667pt;}
.y22{bottom:594.786667pt;}
.y21e{bottom:595.426667pt;}
.y69{bottom:599.746667pt;}
.y98{bottom:600.386667pt;}
.y249{bottom:606.653333pt;}
.y20{bottom:610.013333pt;}
.y11e{bottom:611.453333pt;}
.y1cf{bottom:612.253333pt;}
.y1f5{bottom:614.013333pt;}
.y17f{bottom:614.653333pt;}
.y21d{bottom:615.293333pt;}
.yd6{bottom:618.813333pt;}
.y68{bottom:619.453333pt;}
.y97{bottom:620.253333pt;}
.yf6{bottom:621.533333pt;}
.y248{bottom:626.013333pt;}
.y1e{bottom:626.333333pt;}
.y11d{bottom:631.933333pt;}
.y1ce{bottom:632.413333pt;}
.y21c{bottom:634.973333pt;}
.y17e{bottom:635.133333pt;}
.yd5{bottom:638.653333pt;}
.y67{bottom:639.293333pt;}
.y96{bottom:639.933333pt;}
.y1c{bottom:641.373333pt;}
.y247{bottom:645.373333pt;}
.y11c{bottom:652.413333pt;}
.y1cd{bottom:652.573333pt;}
.y21b{bottom:654.813333pt;}
.y1a{bottom:654.973333pt;}
.y17d{bottom:655.613333pt;}
.y1f4{bottom:656.413333pt;}
.yd4{bottom:658.333333pt;}
.y66{bottom:659.133333pt;}
.y95{bottom:659.773333pt;}
.y14{bottom:662.493333pt;}
.y246{bottom:662.813333pt;}
.y21a{bottom:672.573333pt;}
.y1cc{bottom:672.733333pt;}
.y11b{bottom:672.893333pt;}
.y17c{bottom:676.093333pt;}
.y1f3{bottom:677.533333pt;}
.yd3{bottom:678.173333pt;}
.y65{bottom:678.813333pt;}
.y94{bottom:679.453333pt;}
.y245{bottom:679.773333pt;}
.y219{bottom:690.013333pt;}
.y1cb{bottom:692.893333pt;}
.y11a{bottom:693.373333pt;}
.y17b{bottom:696.413333pt;}
.yd2{bottom:697.853333pt;}
.y64{bottom:698.653333pt;}
.y244{bottom:699.133333pt;}
.y93{bottom:699.293333pt;}
.y218{bottom:709.693333pt;}
.y1ca{bottom:713.053333pt;}
.y119{bottom:713.693333pt;}
.y17a{bottom:716.893333pt;}
.yd1{bottom:717.693333pt;}
.y63{bottom:718.333333pt;}
.y243{bottom:718.493333pt;}
.y92{bottom:719.133333pt;}
.y1f2{bottom:719.773333pt;}
.ycc{bottom:728.573333pt;}
.y217{bottom:729.533333pt;}
.y1c9{bottom:733.213333pt;}
.y118{bottom:734.173333pt;}
.y179{bottom:737.373333pt;}
.y242{bottom:738.013333pt;}
.y62{bottom:738.173333pt;}
.y91{bottom:738.813333pt;}
.y1f1{bottom:740.893333pt;}
.y216{bottom:749.213333pt;}
.y1c8{bottom:753.373333pt;}
.y117{bottom:754.653333pt;}
.y241{bottom:755.453333pt;}
.y61{bottom:757.853333pt;}
.y90{bottom:758.653333pt;}
.y1f0{bottom:762.013333pt;}
.y215{bottom:767.133333pt;}
.y240{bottom:772.413333pt;}
.y1c7{bottom:773.533333pt;}
.y1a6{bottom:774.813333pt;}
.y116{bottom:775.133333pt;}
.y178{bottom:775.933333pt;}
.y60{bottom:777.693333pt;}
.y8f{bottom:778.333333pt;}
.y1ef{bottom:783.133333pt;}
.y214{bottom:784.413333pt;}
.y12{bottom:787.133333pt;}
.y142{bottom:789.373333pt;}
.y23f{bottom:791.773333pt;}
.y1a5{bottom:792.093333pt;}
.y1c6{bottom:793.693333pt;}
.y177{bottom:794.173333pt;}
.y10{bottom:795.293333pt;}
.y115{bottom:795.613333pt;}
.y5f{bottom:797.533333pt;}
.y8e{bottom:798.173333pt;}
.y1ee{bottom:804.253333pt;}
.y1a4{bottom:805.053333pt;}
.y141{bottom:810.053333pt;}
.yca{bottom:810.373333pt;}
.y23e{bottom:811.173333pt;}
.y1c5{bottom:814.053333pt;}
.y176{bottom:814.693333pt;}
.y114{bottom:816.133333pt;}
.y5e{bottom:817.253333pt;}
.y8d{bottom:817.893333pt;}
.y1a3{bottom:818.213333pt;}
.ye{bottom:820.133333pt;}
.y213{bottom:823.973333pt;}
.yb{bottom:824.773333pt;}
.y1ed{bottom:825.413333pt;}
.y140{bottom:830.533333pt;}
.y1a2{bottom:831.493333pt;}
.y1c4{bottom:834.213333pt;}
.y175{bottom:835.173333pt;}
.y113{bottom:836.453333pt;}
.y5d{bottom:837.093333pt;}
.y8c{bottom:837.733333pt;}
.y212{bottom:843.813333pt;}
.y1a1{bottom:844.773333pt;}
.y1ec{bottom:846.533333pt;}
.y23d{bottom:847.973333pt;}
.y13f{bottom:851.173333pt;}
.y1c3{bottom:854.373333pt;}
.y174{bottom:855.653333pt;}
.y5c{bottom:856.773333pt;}
.y112{bottom:856.933333pt;}
.y8b{bottom:857.413333pt;}
.y1a0{bottom:858.053333pt;}
.y211{bottom:861.573333pt;}
.y23c{bottom:864.933333pt;}
.y1eb{bottom:867.653333pt;}
.y19f{bottom:871.173333pt;}
.y13e{bottom:871.653333pt;}
.y1c2{bottom:874.533333pt;}
.y173{bottom:876.133333pt;}
.y5b{bottom:876.613333pt;}
.y8a{bottom:877.253333pt;}
.y111{bottom:877.413333pt;}
.y210{bottom:878.853333pt;}
.y23b{bottom:884.293333pt;}
.y19e{bottom:884.453333pt;}
.y1ea{bottom:888.773333pt;}
.y13d{bottom:892.293333pt;}
.y1c1{bottom:894.693333pt;}
.y5a{bottom:896.293333pt;}
.y172{bottom:896.453333pt;}
.y89{bottom:897.093333pt;}
.y19d{bottom:897.733333pt;}
.y20f{bottom:898.693333pt;}
.y266{bottom:899.173333pt;}
.ya{bottom:900.933333pt;}
.y23a{bottom:903.653333pt;}
.y1e9{bottom:910.053333pt;}
.y19c{bottom:911.013333pt;}
.y13c{bottom:912.773333pt;}
.y1c0{bottom:914.853333pt;}
.y4{bottom:915.813333pt;}
.y59{bottom:916.133333pt;}
.y88{bottom:916.773333pt;}
.y171{bottom:916.933333pt;}
.y20e{bottom:918.533333pt;}
.y265{bottom:918.853333pt;}
.y239{bottom:923.173333pt;}
.y199{bottom:924.773333pt;}
.y45{bottom:927.360000pt;}
.y1e8{bottom:931.173333pt;}
.y13b{bottom:933.413333pt;}
.y1bf{bottom:935.013333pt;}
.y58{bottom:935.813333pt;}
.y20d{bottom:936.293333pt;}
.y87{bottom:936.613333pt;}
.y170{bottom:937.413333pt;}
.y264{bottom:938.213333pt;}
.y19a{bottom:938.693333pt;}
.y238{bottom:940.613333pt;}
.y1e7{bottom:952.293333pt;}
.y20c{bottom:953.573333pt;}
.y13a{bottom:953.893333pt;}
.y1be{bottom:955.173333pt;}
.y57{bottom:955.653333pt;}
.y86{bottom:956.293333pt;}
.y237{bottom:957.573333pt;}
.y16f{bottom:965.253333pt;}
.y1e6{bottom:973.413333pt;}
.y139{bottom:974.533333pt;}
.y1bd{bottom:975.333333pt;}
.y56{bottom:975.493333pt;}
.y85{bottom:976.133333pt;}
.y236{bottom:976.933333pt;}
.y1e5{bottom:994.533333pt;}
.y138{bottom:995.013333pt;}
.y55{bottom:995.173333pt;}
.y1bc{bottom:995.493333pt;}
.y84{bottom:995.813333pt;}
.y235{bottom:996.293333pt;}
.y83{bottom:1015.653333pt;}
.y54{bottom:1015.813333pt;}
.y4e{bottom:1032.000000pt;}
.y4c{bottom:1054.080000pt;}
.h2c{height:1.777500pt;}
.h49{height:3.872500pt;}
.h9{height:4.626667pt;}
.h21{height:5.906667pt;}
.h11{height:7.520000pt;}
.hd{height:8.160000pt;}
.h1d{height:9.106667pt;}
.ha{height:10.835938pt;}
.h52{height:13.106667pt;}
.h53{height:13.140000pt;}
.h51{height:13.266667pt;}
.h1b{height:13.586667pt;}
.h13{height:13.600000pt;}
.h44{height:13.746667pt;}
.h22{height:14.705625pt;}
.h15{height:15.040000pt;}
.h19{height:15.226667pt;}
.h32{height:15.680000pt;}
.h16{height:16.320000pt;}
.h29{height:17.106667pt;}
.h27{height:17.266667pt;}
.h2a{height:17.312000pt;}
.h12{height:18.716250pt;}
.he{height:20.422500pt;}
.h4c{height:20.478667pt;}
.h10{height:21.316250pt;}
.h25{height:22.386667pt;}
.h23{height:23.026667pt;}
.h1e{height:24.203125pt;}
.h33{height:24.798667pt;}
.hb{height:24.820000pt;}
.h2{height:25.598667pt;}
.h24{height:25.907187pt;}
.h50{height:26.546667pt;}
.h43{height:27.186667pt;}
.h4a{height:28.075625pt;}
.h40{height:28.093750pt;}
.h4e{height:30.495937pt;}
.h35{height:30.830625pt;}
.h36{height:32.453125pt;}
.h28{height:35.975313pt;}
.h1c{height:36.304688pt;}
.h20{height:36.328125pt;}
.h26{height:36.883125pt;}
.h37{height:37.658750pt;}
.h14{height:39.840000pt;}
.hc{height:39.876250pt;}
.h1a{height:40.177188pt;}
.h4f{height:40.466667pt;}
.h18{height:40.618125pt;}
.h3d{height:40.786667pt;}
.h3f{height:40.986667pt;}
.h3b{height:40.992000pt;}
.h17{height:44.533750pt;}
.h3{height:44.975625pt;}
.h2f{height:48.000000pt;}
.h6{height:48.406250pt;}
.h31{height:49.852500pt;}
.h30{height:49.920000pt;}
.h8{height:50.712187pt;}
.h2e{height:56.160000pt;}
.h4d{height:61.306667pt;}
.h42{height:61.586667pt;}
.h4{height:62.812500pt;}
.h7{height:63.346667pt;}
.h34{height:64.500000pt;}
.h55{height:76.338667pt;}
.h48{height:81.746667pt;}
.h39{height:81.780000pt;}
.h2d{height:101.920000pt;}
.h2b{height:108.672000pt;}
.h5{height:110.746667pt;}
.hf{height:124.640000pt;}
.h46{height:143.213333pt;}
.h38{height:156.786667pt;}
.h3c{height:218.906667pt;}
.h41{height:237.466667pt;}
.h3e{height:246.746667pt;}
.h1f{height:265.933333pt;}
.h54{height:333.306667pt;}
.h45{height:338.945333pt;}
.h47{height:342.933333pt;}
.h4b{height:347.745333pt;}
.h3a{height:390.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w19{width:71.378667pt;}
.w18{width:73.106667pt;}
.w17{width:80.512000pt;}
.w16{width:82.720000pt;}
.w1a{width:89.426667pt;}
.w4{width:90.070667pt;}
.w21{width:92.786667pt;}
.w1f{width:92.818667pt;}
.w20{width:92.992000pt;}
.w1b{width:114.230667pt;}
.w1e{width:114.386667pt;}
.w9{width:137.270667pt;}
.w1d{width:185.613333pt;}
.w1c{width:185.813333pt;}
.w15{width:202.897333pt;}
.w8{width:216.813333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w13{width:288.013333pt;}
.w14{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.w23{width:300.013333pt;}
.w22{width:300.057333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w2{width:368.377333pt;}
.w7{width:383.257333pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x3e{left:4.786667pt;}
.x16{left:5.746667pt;}
.x8{left:6.866667pt;}
.x1d{left:7.840000pt;}
.x23{left:9.120000pt;}
.x24{left:11.706667pt;}
.x1f{left:12.826667pt;}
.x1c{left:13.920000pt;}
.x25{left:14.880000pt;}
.x14{left:15.830667pt;}
.x27{left:17.306667pt;}
.x2a{left:18.400000pt;}
.x26{left:19.360000pt;}
.x29{left:20.826667pt;}
.x28{left:22.080000pt;}
.x35{left:23.826667pt;}
.x34{left:24.826667pt;}
.x36{left:25.746667pt;}
.x2c{left:27.226667pt;}
.x18{left:28.946667pt;}
.x38{left:30.586667pt;}
.x2b{left:32.960000pt;}
.xc{left:34.106667pt;}
.x3a{left:36.160000pt;}
.x39{left:37.440000pt;}
.x37{left:38.720000pt;}
.x3b{left:41.280000pt;}
.x3c{left:49.760000pt;}
.x33{left:57.120000pt;}
.x2f{left:80.186667pt;}
.x30{left:92.826667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x13{left:108.466667pt;}
.x19{left:127.506667pt;}
.x15{left:146.120000pt;}
.x4{left:175.546667pt;}
.x6{left:186.120000pt;}
.xd{left:196.546667pt;}
.x2e{left:210.280000pt;}
.x9{left:234.120000pt;}
.xe{left:243.293333pt;}
.x2d{left:254.425333pt;}
.x3d{left:260.345333pt;}
.xf{left:269.693333pt;}
.x1a{left:288.026667pt;}
.x1b{left:298.946667pt;}
.x10{left:303.133333pt;}
.x1e{left:381.666667pt;}
.x17{left:395.306667pt;}
.x12{left:400.426667pt;}
.xa{left:407.306667pt;}
.xb{left:411.293333pt;}
.x20{left:462.186667pt;}
.x3{left:463.306667pt;}
.x7{left:480.106667pt;}
.x32{left:488.906667pt;}
.x11{left:510.213333pt;}
.x21{left:535.306667pt;}
.x31{left:581.733333pt;}
.x22{left:606.693333pt;}
}




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