
    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_14b61c5db1420ef8149a0162.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_457ceaf17ab34ecd4a4a4f0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_4826f1ffd80edd580fd377a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_ad78b21d4329261688c1ecde.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_9a12425f7922176bcdf12d1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_4e0fef12ed06fbc2fd31ad1c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_85c32dce789f59e36fd6d9a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.649414;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_c770edc76e2989f2f4942e28.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m4{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);}
.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);}
.m6{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,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);}
.v18{vertical-align:-77.040000px;}
.v17{vertical-align:-64.800000px;}
.v1e{vertical-align:-63.360000px;}
.v1c{vertical-align:-60.600000px;}
.v13{vertical-align:-53.280000px;}
.v12{vertical-align:-50.400000px;}
.vd{vertical-align:-41.760000px;}
.va{vertical-align:-38.880000px;}
.v15{vertical-align:-36.720000px;}
.v1f{vertical-align:-28.080000px;}
.v5{vertical-align:-26.640000px;}
.v21{vertical-align:-24.480000px;}
.v14{vertical-align:-22.320000px;}
.v1a{vertical-align:-20.160000px;}
.v9{vertical-align:-16.560000px;}
.v2{vertical-align:-14.400000px;}
.v20{vertical-align:-12.960000px;}
.v1d{vertical-align:-11.520000px;}
.vf{vertical-align:-10.080000px;}
.v16{vertical-align:-7.200000px;}
.v22{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v23{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:1.440000px;}
.v8{vertical-align:2.880000px;}
.v24{vertical-align:7.920000px;}
.v10{vertical-align:10.080000px;}
.v3{vertical-align:14.400000px;}
.ve{vertical-align:17.280000px;}
.v11{vertical-align:24.480000px;}
.v1{vertical-align:27.360000px;}
.v6{vertical-align:29.520000px;}
.v4{vertical-align:41.040000px;}
.v19{vertical-align:47.520000px;}
.vc{vertical-align:59.760000px;}
.vb{vertical-align:74.160000px;}
.ls2{letter-spacing:-0.720000px;}
.ls66{letter-spacing:-0.379200px;}
.ls75{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.358800px;}
.ls5e{letter-spacing:-0.288000px;}
.ls64{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.172800px;}
.ls1{letter-spacing:-0.144000px;}
.ls65{letter-spacing:-0.106200px;}
.ls5c{letter-spacing:-0.082200px;}
.ls5{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.087120px;}
.ls3{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.172200px;}
.ls4{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.245400px;}
.ls42{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.317400px;}
.ls51{letter-spacing:0.324000px;}
.ls4b{letter-spacing:0.331200px;}
.ls5a{letter-spacing:0.336000px;}
.ls6a{letter-spacing:0.351600px;}
.ls1a{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.361200px;}
.ls18{letter-spacing:0.385200px;}
.ls63{letter-spacing:0.504000px;}
.ls77{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.864000px;}
.ls2a{letter-spacing:1.152000px;}
.ls2b{letter-spacing:1.224000px;}
.ls10{letter-spacing:1.440000px;}
.ls70{letter-spacing:1.512000px;}
.ls78{letter-spacing:1.656000px;}
.ls16{letter-spacing:1.728000px;}
.ls11{letter-spacing:1.800000px;}
.ls34{letter-spacing:1.812960px;}
.ls17{letter-spacing:1.872000px;}
.ls26{letter-spacing:2.016000px;}
.ls67{letter-spacing:2.081520px;}
.ls2e{letter-spacing:2.160000px;}
.ls74{letter-spacing:2.261520px;}
.ls76{letter-spacing:2.340000px;}
.lsf{letter-spacing:2.376000px;}
.ls9{letter-spacing:2.520000px;}
.ls19{letter-spacing:2.545200px;}
.ls6d{letter-spacing:2.550240px;}
.ls27{letter-spacing:2.556000px;}
.ls6f{letter-spacing:2.670240px;}
.ls43{letter-spacing:2.782080px;}
.ls3b{letter-spacing:2.801520px;}
.ls13{letter-spacing:2.880000px;}
.ls12{letter-spacing:3.096000px;}
.ls2c{letter-spacing:3.265200px;}
.ls6e{letter-spacing:3.270240px;}
.ls3c{letter-spacing:3.521520px;}
.ls61{letter-spacing:3.600000px;}
.lsa{letter-spacing:3.700800px;}
.ls29{letter-spacing:3.845520px;}
.ls3a{letter-spacing:3.888000px;}
.ls28{letter-spacing:3.917520px;}
.ls20{letter-spacing:3.939120px;}
.ls2f{letter-spacing:3.960000px;}
.ls25{letter-spacing:4.147200px;}
.lsb{letter-spacing:4.237200px;}
.ls62{letter-spacing:4.361040px;}
.lsc{letter-spacing:4.608000px;}
.ls15{letter-spacing:4.637520px;}
.ls45{letter-spacing:4.659120px;}
.ls14{letter-spacing:4.692960px;}
.ls5f{letter-spacing:4.757520px;}
.ls4e{letter-spacing:4.829760px;}
.ls21{letter-spacing:4.867200px;}
.ls6b{letter-spacing:4.961520px;}
.ls38{letter-spacing:5.140800px;}
.ls39{letter-spacing:5.328000px;}
.ls1c{letter-spacing:5.343840px;}
.ls3e{letter-spacing:5.357520px;}
.ls58{letter-spacing:5.477520px;}
.ls53{letter-spacing:5.508000px;}
.ls55{letter-spacing:5.662080px;}
.ls30{letter-spacing:5.677200px;}
.ls69{letter-spacing:5.681520px;}
.ls44{letter-spacing:5.755680px;}
.ls49{letter-spacing:6.480000px;}
.ls6c{letter-spacing:6.984000px;}
.ls5b{letter-spacing:7.632000px;}
.ls7{letter-spacing:9.504000px;}
.ls73{letter-spacing:10.721520px;}
.ls3d{letter-spacing:11.880000px;}
.ls37{letter-spacing:14.772960px;}
.ls1d{letter-spacing:15.421680px;}
.ls3f{letter-spacing:16.141680px;}
.ls41{letter-spacing:16.200000px;}
.ls1f{letter-spacing:16.601040px;}
.ls52{letter-spacing:17.069760px;}
.ls46{letter-spacing:18.385200px;}
.ls4d{letter-spacing:19.105200px;}
.ls40{letter-spacing:19.267200px;}
.ls32{letter-spacing:19.540800px;}
.ls1b{letter-spacing:19.800000px;}
.ls59{letter-spacing:19.944000px;}
.lse{letter-spacing:20.077200px;}
.lsd{letter-spacing:20.260800px;}
.ls35{letter-spacing:20.545200px;}
.ls31{letter-spacing:20.797200px;}
.ls36{letter-spacing:22.692960px;}
.ls4c{letter-spacing:22.705200px;}
.ls57{letter-spacing:24.797520px;}
.ls2d{letter-spacing:30.067200px;}
.ls54{letter-spacing:46.627200px;}
.ls56{letter-spacing:50.227200px;}
.ls8{letter-spacing:57.744000px;}
.ls48{letter-spacing:60.865200px;}
.ls50{letter-spacing:81.025200px;}
.ls71{letter-spacing:401.880000px;}
.ls72{letter-spacing:416.340000px;}
.ls4f{letter-spacing:640.920000px;}
.ls68{letter-spacing:1138.980000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.wse{word-spacing:-27.720000px;}
.ws23{word-spacing:-18.864000px;}
.ws22{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws24{word-spacing:-17.784000px;}
.ws8{word-spacing:-15.840000px;}
.ws21{word-spacing:-15.552000px;}
.ws27{word-spacing:-15.480000px;}
.wsb{word-spacing:-11.491800px;}
.wsa{word-spacing:-11.418600px;}
.ws9{word-spacing:-11.246400px;}
.wsc{word-spacing:-11.073600px;}
.ws19{word-spacing:-9.548400px;}
.ws14{word-spacing:-9.518400px;}
.ws16{word-spacing:-9.187200px;}
.ws15{word-spacing:-9.105000px;}
.ws13{word-spacing:-8.828400px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:3.600000px;}
.ws20{word-spacing:3.672000px;}
.ws1a{word-spacing:3.792000px;}
.wsd{word-spacing:3.936000px;}
.ws17{word-spacing:4.104000px;}
.ws1d{word-spacing:4.392000px;}
.wsf{word-spacing:4.536000px;}
.ws1f{word-spacing:4.656000px;}
.ws12{word-spacing:7.807320px;}
.ws11{word-spacing:9.576720px;}
.ws26{word-spacing:10.584000px;}
.ws1e{word-spacing:12.127320px;}
.ws1c{word-spacing:12.247320px;}
.ws18{word-spacing:13.896720px;}
.ws25{word-spacing:14.745360px;}
.ws10{word-spacing:558.300000px;}
._21{margin-left:-16.665120px;}
._1e{margin-left:-14.400000px;}
._22{margin-left:-13.363920px;}
._1f{margin-left:-11.867040px;}
._1d{margin-left:-8.280000px;}
._1c{margin-left:-6.840000px;}
._5{margin-left:-5.040000px;}
._6{margin-left:-3.888000px;}
._7{margin-left:-2.736000px;}
._3{margin-left:-1.432080px;}
._4{width:1.442400px;}
._9{width:3.312000px;}
._a{width:4.392000px;}
._b{width:5.472000px;}
._8{width:6.840000px;}
._c{width:8.484000px;}
._15{width:9.639360px;}
._e{width:10.656000px;}
._f{width:11.664000px;}
._10{width:12.888000px;}
._11{width:14.400000px;}
._12{width:15.784080px;}
._1b{width:16.976160px;}
._18{width:19.512000px;}
._19{width:20.517600px;}
._2{width:21.600000px;}
._16{width:23.253600px;}
._1a{width:24.484800px;}
._17{width:25.632000px;}
._20{width:26.815920px;}
._37{width:28.144080px;}
._d{width:29.448000px;}
._3a{width:30.528000px;}
._44{width:31.680000px;}
._13{width:35.712000px;}
._14{width:37.152000px;}
._47{width:40.188000px;}
._38{width:45.781680px;}
._33{width:70.707360px;}
._45{width:75.660000px;}
._32{width:76.680000px;}
._36{width:83.952000px;}
._43{width:94.692000px;}
._40{width:97.797600px;}
._3c{width:101.029680px;}
._35{width:104.329680px;}
._3d{width:111.828000px;}
._3b{width:113.953680px;}
._3e{width:125.700000px;}
._46{width:130.848000px;}
._34{width:140.557680px;}
._0{width:151.260000px;}
._42{width:158.040000px;}
._39{width:164.676000px;}
._3f{width:190.776000px;}
._41{width:198.000000px;}
._25{width:416.162640px;}
._23{width:521.916720px;}
._24{width:784.916640px;}
._2d{width:819.468720px;}
._2f{width:843.547200px;}
._2c{width:915.795120px;}
._28{width:917.278320px;}
._2a{width:929.652000px;}
._30{width:932.606400px;}
._2b{width:954.297600px;}
._2e{width:975.590400px;}
._29{width:989.635680px;}
._26{width:1009.871520px;}
._31{width:1048.180080px;}
._27{width:1098.392160px;}
._1{width:1343.100000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y66{bottom:3.960000px;}
.y70{bottom:3.990000px;}
.y6d{bottom:4.140000px;}
.y15c{bottom:4.680000px;}
.y166{bottom:4.860000px;}
.y164{bottom:5.040000px;}
.y79{bottom:5.400000px;}
.y162{bottom:5.580000px;}
.y15e{bottom:5.760000px;}
.y160{bottom:6.120000px;}
.y16c{bottom:7.200000px;}
.y16a{bottom:7.380000px;}
.y1a0{bottom:8.100000px;}
.y19d{bottom:8.280000px;}
.y1a9{bottom:8.460000px;}
.y199{bottom:8.640000px;}
.y1dc{bottom:8.715000px;}
.y63{bottom:11.880000px;}
.y15f{bottom:12.420000px;}
.y64{bottom:14.220000px;}
.y195{bottom:14.400000px;}
.y1af{bottom:17.355000px;}
.y1df{bottom:17.385000px;}
.y1a2{bottom:18.720000px;}
.y1a3{bottom:18.900000px;}
.y65{bottom:24.660000px;}
.y193{bottom:25.020000px;}
.y1a8{bottom:29.160000px;}
.y198{bottom:29.340000px;}
.y19f{bottom:29.880000px;}
.y19c{bottom:30.060000px;}
.y191{bottom:39.780000px;}
.y197{bottom:50.040000px;}
.y19b{bottom:50.760000px;}
.y192{bottom:54.720000px;}
.y5c{bottom:57.060000px;}
.y2{bottom:57.096000px;}
.y196{bottom:71.100000px;}
.y19a{bottom:71.460000px;}
.y19e{bottom:71.820000px;}
.y5b{bottom:86.760000px;}
.y1{bottom:86.796000px;}
.y61{bottom:131.580000px;}
.y139{bottom:139.716000px;}
.yb6{bottom:142.596000px;}
.y158{bottom:143.676000px;}
.y59{bottom:146.376000px;}
.y41{bottom:148.536000px;}
.y1d8{bottom:154.650000px;}
.y14c{bottom:158.790000px;}
.y21{bottom:162.030000px;}
.y60{bottom:162.750000px;}
.y228{bottom:163.290000px;}
.yd4{bottom:163.470000px;}
.yf3{bottom:165.450000px;}
.y18f{bottom:170.310000px;}
.y138{bottom:170.850000px;}
.yb5{bottom:173.550000px;}
.y157{bottom:175.350000px;}
.y58{bottom:177.510000px;}
.y1c8{bottom:177.690000px;}
.y181{bottom:178.050000px;}
.y40{bottom:179.490000px;}
.y118{bottom:181.830000px;}
.y1d7{bottom:185.790000px;}
.y84{bottom:188.490000px;}
.y7d{bottom:189.210000px;}
.y201{bottom:191.010000px;}
.y20{bottom:192.990000px;}
.yd2{bottom:195.150000px;}
.y14b{bottom:198.930000px;}
.yd3{bottom:201.810000px;}
.y137{bottom:202.350000px;}
.yb4{bottom:204.690000px;}
.y156{bottom:207.030000px;}
.yf2{bottom:207.930000px;}
.y57{bottom:208.470000px;}
.y1c7{bottom:208.650000px;}
.y180{bottom:209.190000px;}
.y18e{bottom:210.270000px;}
.y3f{bottom:210.630000px;}
.y200{bottom:211.710000px;}
.y7c{bottom:212.790000px;}
.y227{bottom:213.690000px;}
.y1d6{bottom:217.110000px;}
.y83{bottom:219.630000px;}
.y1f{bottom:224.130000px;}
.yd0{bottom:226.650000px;}
.y113{bottom:230.250000px;}
.yd1{bottom:233.490000px;}
.y226{bottom:234.390000px;}
.yb3{bottom:235.650000px;}
.y7b{bottom:236.370000px;}
.y114{bottom:236.910000px;}
.y56{bottom:238.710000px;}
.y14a{bottom:238.890000px;}
.y116{bottom:239.430000px;}
.y99{bottom:239.610000px;}
.y115{bottom:239.970000px;}
.y117{bottom:240.150000px;}
.y1ff{bottom:241.410000px;}
.y3e{bottom:241.590000px;}
.yf1{bottom:241.770000px;}
.y110{bottom:242.130000px;}
.y136{bottom:242.310000px;}
.y1d5{bottom:248.970000px;}
.y18d{bottom:250.410000px;}
.y82{bottom:250.590000px;}
.y1e{bottom:254.370000px;}
.y225{bottom:255.090000px;}
.y7a{bottom:259.950000px;}
.yce{bottom:261.930000px;}
.y1fe{bottom:262.110000px;}
.yb2{bottom:266.790000px;}
.y112{bottom:267.330000px;}
.y111{bottom:267.510000px;}
.ycf{bottom:268.590000px;}
.y155{bottom:270.030000px;}
.y1c6{bottom:271.290000px;}
.y17f{bottom:271.470000px;}
.y3d{bottom:272.730000px;}
.yf0{bottom:273.450000px;}
.y149{bottom:279.030000px;}
.y98{bottom:279.570000px;}
.y1d4{bottom:280.470000px;}
.y18c{bottom:281.595000px;}
.y55{bottom:281.775000px;}
.y1fd{bottom:282.855000px;}
.y78{bottom:283.710000px;}
.y224{bottom:284.835000px;}
.ycc{bottom:293.655000px;}
.y1d{bottom:297.435000px;}
.yb1{bottom:297.795000px;}
.ycd{bottom:300.495000px;}
.y10f{bottom:302.475000px;}
.y17e{bottom:303.195000px;}
.y3c{bottom:303.735000px;}
.y135{bottom:304.455000px;}
.y223{bottom:305.535000px;}
.yef{bottom:307.155000px;}
.y77{bottom:307.335000px;}
.y148{bottom:310.035000px;}
.y154{bottom:310.215000px;}
.y97{bottom:310.755000px;}
.y1fc{bottom:312.555000px;}
.y54{bottom:312.735000px;}
.y18b{bottom:313.275000px;}
.y1d3{bottom:320.655000px;}
.ycb{bottom:325.335000px;}
.y222{bottom:326.235000px;}
.y76{bottom:330.915000px;}
.y1fb{bottom:333.255000px;}
.y1c5{bottom:333.435000px;}
.y17d{bottom:334.695000px;}
.y3b{bottom:334.875000px;}
.y134{bottom:335.595000px;}
.y165{bottom:336.675000px;}
.y1c{bottom:337.395000px;}
.yb0{bottom:337.935000px;}
.yee{bottom:338.835000px;}
.y147{bottom:341.175000px;}
.y96{bottom:341.715000px;}
.y10e{bottom:342.615000px;}
.y53{bottom:343.875000px;}
.y18a{bottom:344.955000px;}
.y1d2{bottom:351.615000px;}
.y1fa{bottom:353.955000px;}
.y75{bottom:354.495000px;}
.y221{bottom:355.935000px;}
.y163{bottom:362.775000px;}
.y1c4{bottom:364.575000px;}
.y17c{bottom:365.655000px;}
.y133{bottom:366.555000px;}
.yca{bottom:367.275000px;}
.y1b{bottom:367.635000px;}
.yaf{bottom:368.895000px;}
.yed{bottom:370.515000px;}
.y146{bottom:372.135000px;}
.y95{bottom:372.855000px;}
.y3a{bottom:374.835000px;}
.y220{bottom:376.635000px;}
.y10d{bottom:376.995000px;}
.y74{bottom:378.255000px;}
.y1ae{bottom:380.880000px;}
.y1d1{bottom:382.755000px;}
.y1f9{bottom:383.655000px;}
.y189{bottom:385.455000px;}
.y161{bottom:388.335000px;}
.y1c3{bottom:395.895000px;}
.y17b{bottom:396.795000px;}
.y21f{bottom:397.335000px;}
.y132{bottom:397.695000px;}
.y1ad{bottom:398.235000px;}
.y1b0{bottom:398.955000px;}
.yae{bottom:400.035000px;}
.y73{bottom:401.835000px;}
.y145{bottom:403.275000px;}
.y94{bottom:403.815000px;}
.y1f8{bottom:404.355000px;}
.y39{bottom:405.975000px;}
.yc8{bottom:407.595000px;}
.y10c{bottom:408.315000px;}
.y1a{bottom:410.655000px;}
.y1d0{bottom:413.715000px;}
.yc9{bottom:414.255000px;}
.y15d{bottom:415.155000px;}
.y21e{bottom:418.035000px;}
.y72{bottom:425.415000px;}
.y1c2{bottom:427.575000px;}
.y17a{bottom:427.935000px;}
.y131{bottom:428.655000px;}
.yad{bottom:430.995000px;}
.yec{bottom:432.975000px;}
.y1f7{bottom:434.055000px;}
.y93{bottom:434.955000px;}
.y38{bottom:436.935000px;}
.y239{bottom:438.735000px;}
.yc6{bottom:439.635000px;}
.y19{bottom:441.615000px;}
.y144{bottom:443.235000px;}
.y15b{bottom:443.955000px;}
.y1cf{bottom:444.855000px;}
.y52{bottom:445.935000px;}
.yc7{bottom:446.295000px;}
.y21d{bottom:447.735000px;}
.y71{bottom:448.995000px;}
.y1f6{bottom:454.755000px;}
.y1c1{bottom:459.075000px;}
.y179{bottom:459.435000px;}
.yac{bottom:461.955000px;}
.yeb{bottom:464.295000px;}
.y188{bottom:465.555000px;}
.y92{bottom:465.915000px;}
.y37{bottom:468.075000px;}
.y21c{bottom:468.435000px;}
.y130{bottom:469.155000px;}
.y15a{bottom:469.515000px;}
.yc5{bottom:471.495000px;}
.y18{bottom:472.755000px;}
.y10b{bottom:473.475000px;}
.y143{bottom:474.375000px;}
.y1ce{bottom:475.095000px;}
.y1f5{bottom:475.455000px;}
.y51{bottom:477.075000px;}
.y21b{bottom:489.135000px;}
.y1c0{bottom:490.755000px;}
.yab{bottom:493.095000px;}
.yea{bottom:495.975000px;}
.y6f{bottom:496.365000px;}
.y91{bottom:497.055000px;}
.y159{bottom:498.675000px;}
.y36{bottom:499.035000px;}
.y178{bottom:499.395000px;}
.yc4{bottom:503.175000px;}
.y17{bottom:503.715000px;}
.y1f4{bottom:505.155000px;}
.y142{bottom:505.335000px;}
.y187{bottom:505.515000px;}
.y109{bottom:507.315000px;}
.y50{bottom:508.035000px;}
.y21a{bottom:509.835000px;}
.y12f{bottom:511.635000px;}
.y10a{bottom:513.975000px;}
.y1cd{bottom:517.935000px;}
.y1da{bottom:519.660000px;}
.y6e{bottom:519.945000px;}
.y1bf{bottom:522.435000px;}
.yaa{bottom:524.055000px;}
.y1f3{bottom:525.855000px;}
.ye9{bottom:527.655000px;}
.y35{bottom:530.175000px;}
.y238{bottom:530.535000px;}
.y1db{bottom:531.720000px;}
.y177{bottom:533.775000px;}
.yc3{bottom:534.495000px;}
.y16{bottom:534.855000px;}
.y141{bottom:536.475000px;}
.y90{bottom:537.015000px;}
.y1d9{bottom:537.735000px;}
.y107{bottom:538.995000px;}
.y4f{bottom:539.175000px;}
.y219{bottom:539.535000px;}
.y6c{bottom:543.525000px;}
.y108{bottom:545.655000px;}
.y1f2{bottom:546.555000px;}
.y12d{bottom:553.395000px;}
.y153{bottom:553.755000px;}
.ya9{bottom:555.195000px;}
.y1cc{bottom:558.075000px;}
.y12e{bottom:560.055000px;}
.y218{bottom:560.235000px;}
.y34{bottom:561.135000px;}
.y1be{bottom:562.935000px;}
.y15{bottom:565.845000px;}
.y6b{bottom:567.285000px;}
.y140{bottom:567.465000px;}
.ye8{bottom:568.005000px;}
.y8f{bottom:568.185000px;}
.y4e{bottom:570.165000px;}
.y105{bottom:570.525000px;}
.y152{bottom:574.485000px;}
.y1f1{bottom:576.285000px;}
.y106{bottom:577.365000px;}
.y176{bottom:578.805000px;}
.y175{bottom:579.345000px;}
.y237{bottom:580.965000px;}
.y186{bottom:585.645000px;}
.ya8{bottom:586.185000px;}
.y217{bottom:589.965000px;}
.y6a{bottom:590.865000px;}
.y33{bottom:592.305000px;}
.y1bd{bottom:593.925000px;}
.y12c{bottom:594.465000px;}
.y14{bottom:596.985000px;}
.yc2{bottom:597.525000px;}
.y1cb{bottom:598.065000px;}
.y13f{bottom:598.605000px;}
.y8e{bottom:599.145000px;}
.y4d{bottom:601.305000px;}
.y236{bottom:601.665000px;}
.ye7{bottom:602.385000px;}
.y151{bottom:604.185000px;}
.y103{bottom:605.805000px;}
.y216{bottom:610.665000px;}
.y104{bottom:612.465000px;}
.y69{bottom:614.445000px;}
.y1f0{bottom:617.685000px;}
.y174{bottom:618.585000px;}
.y32{bottom:623.265000px;}
.y1bc{bottom:625.065000px;}
.y185{bottom:625.785000px;}
.ya7{bottom:626.325000px;}
.y13{bottom:627.945000px;}
.yc1{bottom:629.205000px;}
.y13e{bottom:629.565000px;}
.y8d{bottom:630.285000px;}
.y215{bottom:631.365000px;}
.y4c{bottom:632.265000px;}
.y12a{bottom:634.965000px;}
.ye6{bottom:636.045000px;}
.y101{bottom:637.485000px;}
.y68{bottom:638.025000px;}
.y1ca{bottom:638.205000px;}
.y150{bottom:644.145000px;}
.y102{bottom:644.325000px;}
.y12b{bottom:644.685000px;}
.y1ef{bottom:647.385000px;}
.y173{bottom:649.905000px;}
.y235{bottom:652.065000px;}
.y31{bottom:654.405000px;}
.y184{bottom:655.485000px;}
.y1bb{bottom:656.025000px;}
.y12{bottom:659.085000px;}
.y13d{bottom:659.805000px;}
.ya6{bottom:660.345000px;}
.yc0{bottom:660.885000px;}
.y214{bottom:661.065000px;}
.y8c{bottom:661.245000px;}
.y67{bottom:661.650000px;}
.y4b{bottom:663.405000px;}
.ye5{bottom:667.725000px;}
.y1ee{bottom:668.085000px;}
.y100{bottom:668.805000px;}
.y1c9{bottom:678.165000px;}
.y129{bottom:680.145000px;}
.y172{bottom:681.405000px;}
.y213{bottom:681.765000px;}
.y14f{bottom:684.105000px;}
.y183{bottom:685.005000px;}
.y30{bottom:685.365000px;}
.y1ba{bottom:687.165000px;}
.y62{bottom:687.390000px;}
.y1ed{bottom:688.785000px;}
.y11{bottom:690.045000px;}
.ya5{bottom:691.485000px;}
.y8b{bottom:692.385000px;}
.y4a{bottom:694.365000px;}
.ye3{bottom:701.385000px;}
.yff{bottom:702.285000px;}
.y212{bottom:702.465000px;}
.y13c{bottom:702.825000px;}
.ye4{bottom:708.045000px;}
.y171{bottom:712.365000px;}
.y2f{bottom:716.505000px;}
.y1b9{bottom:718.125000px;}
.y14e{bottom:718.305000px;}
.y1ec{bottom:718.485000px;}
.y128{bottom:720.825000px;}
.y10{bottom:721.005000px;}
.ya4{bottom:722.445000px;}
.y234{bottom:723.165000px;}
.y8a{bottom:723.345000px;}
.y182{bottom:725.145000px;}
.y49{bottom:725.505000px;}
.ybf{bottom:726.225000px;}
.y211{bottom:732.165000px;}
.ye2{bottom:733.065000px;}
.y13b{bottom:733.785000px;}
.yfe{bottom:735.945000px;}
.y1eb{bottom:739.185000px;}
.y170{bottom:743.685000px;}
.y1b8{bottom:749.265000px;}
.y1ab{bottom:751.605000px;}
.yf{bottom:752.145000px;}
.y210{bottom:752.865000px;}
.ya3{bottom:753.585000px;}
.y5f{bottom:753.990000px;}
.y89{bottom:754.485000px;}
.y2e{bottom:756.465000px;}
.y14d{bottom:758.265000px;}
.y1ea{bottom:759.705000px;}
.ybe{bottom:760.065000px;}
.y127{bottom:761.505000px;}
.ye0{bottom:764.925000px;}
.yfd{bottom:767.265000px;}
.y233{bottom:773.565000px;}
.ye1{bottom:774.645000px;}
.y5e{bottom:774.690000px;}
.y16f{bottom:775.365000px;}
.y1ac{bottom:781.305000px;}
.y20f{bottom:782.565000px;}
.ye{bottom:783.105000px;}
.ya2{bottom:784.545000px;}
.y88{bottom:785.445000px;}
.y2d{bottom:787.605000px;}
.y1b7{bottom:789.225000px;}
.y1e9{bottom:789.405000px;}
.ybd{bottom:791.745000px;}
.y232{bottom:794.265000px;}
.y1e1{bottom:794.700000px;}
.y5d{bottom:795.390000px;}
.y1de{bottom:795.960000px;}
.y13a{bottom:796.245000px;}
.y5a{bottom:796.605000px;}
.yfc{bottom:798.405000px;}
.y126{bottom:802.185000px;}
.y20e{bottom:803.265000px;}
.ydf{bottom:809.565000px;}
.y1e8{bottom:810.105000px;}
.y1a7{bottom:811.005000px;}
.y1e0{bottom:812.805000px;}
.y1dd{bottom:814.065000px;}
.yd{bottom:814.245000px;}
.y16e{bottom:815.325000px;}
.ya1{bottom:815.505000px;}
.y87{bottom:816.405000px;}
.y2c{bottom:818.565000px;}
.y231{bottom:823.965000px;}
.ybc{bottom:825.585000px;}
.y48{bottom:827.565000px;}
.y1e7{bottom:830.805000px;}
.y20d{bottom:832.965000px;}
.yfb{bottom:838.365000px;}
.y1aa{bottom:840.705000px;}
.y16d{bottom:841.785000px;}
.y124{bottom:844.485000px;}
.y230{bottom:844.665000px;}
.yc{bottom:845.205000px;}
.ya0{bottom:846.645000px;}
.y86{bottom:847.590000px;}
.y2b{bottom:849.750000px;}
.yde{bottom:849.930000px;}
.y125{bottom:851.190000px;}
.y20c{bottom:853.710000px;}
.ybb{bottom:857.310000px;}
.y47{bottom:858.750000px;}
.y1e6{bottom:860.550000px;}
.y22f{bottom:865.410000px;}
.y16b{bottom:866.490000px;}
.y1a5{bottom:870.450000px;}
.y20b{bottom:874.410000px;}
.yb{bottom:875.670000px;}
.y9f{bottom:877.650000px;}
.y85{bottom:877.830000px;}
.yfa{bottom:878.550000px;}
.y2a{bottom:880.710000px;}
.y1e5{bottom:881.250000px;}
.ydd{bottom:881.430000px;}
.y123{bottom:887.190000px;}
.y46{bottom:889.710000px;}
.y169{bottom:893.310000px;}
.y22e{bottom:895.110000px;}
.yba{bottom:897.630000px;}
.y1a6{bottom:900.150000px;}
.y20a{bottom:904.110000px;}
.ya{bottom:908.250000px;}
.y9e{bottom:908.790000px;}
.y1e4{bottom:910.950000px;}
.y29{bottom:911.850000px;}
.ydc{bottom:913.110000px;}
.y22d{bottom:915.810000px;}
.y1b6{bottom:918.150000px;}
.yf9{bottom:918.510000px;}
.y45{bottom:920.850000px;}
.y168{bottom:923.190000px;}
.y209{bottom:924.810000px;}
.y122{bottom:928.950000px;}
.y1a1{bottom:929.850000px;}
.y1e3{bottom:931.650000px;}
.yb9{bottom:937.770000px;}
.y9{bottom:937.950000px;}
.y9d{bottom:939.750000px;}
.y28{bottom:942.810000px;}
.y208{bottom:945.510000px;}
.ydb{bottom:946.950000px;}
.y44{bottom:951.810000px;}
.y1b5{bottom:958.110000px;}
.yf8{bottom:958.650000px;}
.y1a4{bottom:959.550000px;}
.y1e2{bottom:962.070000px;}
.y167{bottom:964.950000px;}
.y22c{bottom:966.210000px;}
.y8{bottom:967.650000px;}
.y9c{bottom:970.890000px;}
.y27{bottom:973.950000px;}
.y120{bottom:974.310000px;}
.y207{bottom:975.210000px;}
.yb8{bottom:977.730000px;}
.yda{bottom:978.630000px;}
.y121{bottom:980.970000px;}
.y43{bottom:982.950000px;}
.y7{bottom:988.350000px;}
.y190{bottom:989.970000px;}
.y206{bottom:995.910000px;}
.y1b4{bottom:998.250000px;}
.yf7{bottom:998.610000px;}
.y9b{bottom:1001.850000px;}
.yb7{bottom:1002.030000px;}
.y26{bottom:1004.910000px;}
.yd9{bottom:1010.130000px;}
.y42{bottom:1013.910000px;}
.y22b{bottom:1016.610000px;}
.y6{bottom:1018.050000px;}
.y205{bottom:1025.610000px;}
.y11d{bottom:1028.490000px;}
.y81{bottom:1036.050000px;}
.y22a{bottom:1037.310000px;}
.y11e{bottom:1037.670000px;}
.y1b3{bottom:1038.210000px;}
.y11f{bottom:1038.390000px;}
.yf6{bottom:1038.750000px;}
.y194{bottom:1041.090000px;}
.yd8{bottom:1041.810000px;}
.y9a{bottom:1041.990000px;}
.y25{bottom:1045.050000px;}
.y204{bottom:1046.310000px;}
.y5{bottom:1053.150000px;}
.y80{bottom:1067.010000px;}
.yd7{bottom:1073.490000px;}
.y24{bottom:1076.010000px;}
.y1b2{bottom:1078.350000px;}
.yf5{bottom:1078.710000px;}
.y11c{bottom:1085.730000px;}
.y229{bottom:1087.710000px;}
.y4{bottom:1090.050000px;}
.y203{bottom:1096.710000px;}
.y7f{bottom:1098.150000px;}
.yd6{bottom:1105.170000px;}
.y23{bottom:1107.150000px;}
.y1b1{bottom:1108.050000px;}
.yf4{bottom:1108.410000px;}
.y202{bottom:1117.410000px;}
.y11a{bottom:1124.430000px;}
.y119{bottom:1124.790000px;}
.y3{bottom:1126.230000px;}
.y7e{bottom:1129.110000px;}
.y11b{bottom:1134.540000px;}
.yd5{bottom:1137.780000px;}
.y22{bottom:1138.140000px;}
.hd{height:23.580000px;}
.hc{height:23.616000px;}
.he{height:23.760000px;}
.h20{height:24.696000px;}
.hb{height:24.840000px;}
.h1a{height:25.560000px;}
.h1d{height:26.100000px;}
.h1e{height:26.640000px;}
.h1c{height:26.820000px;}
.h19{height:28.440000px;}
.h1b{height:28.800000px;}
.h1f{height:28.980000px;}
.h26{height:29.700000px;}
.h28{height:29.736000px;}
.h18{height:32.580000px;}
.h2b{height:34.380000px;}
.h2c{height:43.560000px;}
.h29{height:43.740000px;}
.ha{height:45.360000px;}
.h4{height:47.344922px;}
.h23{height:50.400000px;}
.h12{height:56.786133px;}
.h25{height:59.400000px;}
.h27{height:59.436000px;}
.h7{height:70.628906px;}
.h2{height:70.664062px;}
.h6{height:72.562500px;}
.hf{height:74.004654px;}
.h5{height:74.704922px;}
.h10{height:79.980469px;}
.h2a{height:80.700469px;}
.h17{height:81.420469px;}
.h15{height:82.860469px;}
.h11{height:83.426133px;}
.h24{height:84.305973px;}
.h3{height:84.898125px;}
.h21{height:85.020469px;}
.h13{height:86.306133px;}
.h16{height:90.780469px;}
.h22{height:101.520000px;}
.h14{height:154.140469px;}
.h8{height:892.980000px;}
.h9{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:16.560000px;}
.w14{width:28.980000px;}
.w20{width:41.976000px;}
.w1e{width:55.476000px;}
.w10{width:73.620000px;}
.w21{width:73.800000px;}
.w1f{width:80.460000px;}
.wb{width:84.420000px;}
.w1d{width:85.140000px;}
.w1a{width:86.400000px;}
.w1c{width:92.376000px;}
.w19{width:93.276000px;}
.w15{width:95.760000px;}
.wa{width:95.796000px;}
.w1b{width:97.056000px;}
.w13{width:108.720000px;}
.w11{width:108.756000px;}
.w12{width:108.936000px;}
.w22{width:113.436000px;}
.w23{width:127.260000px;}
.w25{width:130.500000px;}
.w24{width:132.480000px;}
.w18{width:135.936000px;}
.w7{width:138.240000px;}
.wd{width:159.330000px;}
.w16{width:177.510000px;}
.w9{width:180.720000px;}
.we{width:189.210000px;}
.w8{width:212.610000px;}
.wf{width:222.690000px;}
.wc{width:287.130000px;}
.w6{width:308.370000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x72{left:8.100000px;}
.xf{left:9.540000px;}
.x7a{left:11.880000px;}
.x69{left:13.320000px;}
.x1e{left:15.300000px;}
.x26{left:16.740000px;}
.x6f{left:18.000000px;}
.x17{left:19.980000px;}
.x2a{left:21.954000px;}
.x6b{left:24.660000px;}
.x21{left:26.100000px;}
.x15{left:27.585000px;}
.x18{left:28.980000px;}
.x65{left:32.040000px;}
.x13{left:33.840000px;}
.x60{left:35.100000px;}
.x7e{left:37.440000px;}
.x1d{left:38.745000px;}
.x23{left:40.545000px;}
.x28{left:41.625000px;}
.x1a{left:43.200000px;}
.x67{left:47.700000px;}
.x70{left:49.890000px;}
.x30{left:51.654000px;}
.x2b{left:56.514000px;}
.x2e{left:59.394000px;}
.x5e{left:61.410000px;}
.x2f{left:62.454000px;}
.x20{left:64.080000px;}
.x22{left:65.700000px;}
.x11{left:67.140000px;}
.x32{left:73.434000px;}
.x1b{left:74.520000px;}
.x61{left:76.500000px;}
.x66{left:78.840000px;}
.xa{left:80.855987px;}
.x31{left:85.314000px;}
.x2c{left:86.400000px;}
.x1c{left:87.660000px;}
.x7b{left:88.950000px;}
.x27{left:90.174000px;}
.x1f{left:93.774000px;}
.xd{left:95.934000px;}
.x5f{left:98.130000px;}
.x19{left:99.714000px;}
.x6{left:101.195987px;}
.x68{left:104.400000px;}
.x1{left:107.855987px;}
.x73{left:109.836000px;}
.x2d{left:114.654000px;}
.x2{left:116.315987px;}
.x86{left:118.050000px;}
.x24{left:122.574000px;}
.x34{left:124.055987px;}
.x33{left:125.675987px;}
.x29{left:130.134000px;}
.xc{left:134.855981px;}
.x3{left:149.795987px;}
.x81{left:151.229987px;}
.xb{left:161.849981px;}
.x25{left:192.954000px;}
.x87{left:194.760000px;}
.x89{left:198.720000px;}
.x74{left:205.590000px;}
.x50{left:209.549987px;}
.x62{left:229.899000px;}
.x47{left:235.469987px;}
.x63{left:239.439000px;}
.x88{left:240.689987px;}
.x64{left:244.659000px;}
.x4c{left:265.934987px;}
.x48{left:269.354987px;}
.x3d{left:274.934987px;}
.x49{left:294.194987px;}
.x7c{left:297.975000px;}
.x4d{left:301.934987px;}
.x6a{left:303.555000px;}
.x4e{left:312.734987px;}
.x82{left:318.314987px;}
.x56{left:320.294987px;}
.x3b{left:326.954987px;}
.x57{left:330.554987px;}
.x40{left:334.694987px;}
.x59{left:337.214987px;}
.x3a{left:343.694987px;}
.x4f{left:346.934987px;}
.x55{left:348.014987px;}
.x54{left:353.054987px;}
.x53{left:357.914987px;}
.x58{left:359.534987px;}
.x5{left:367.094987px;}
.x8{left:368.714987px;}
.x5a{left:377.894987px;}
.x51{left:380.954987px;}
.x75{left:383.115000px;}
.x4a{left:387.254987px;}
.x3c{left:396.794987px;}
.x76{left:399.675000px;}
.x7{left:403.094987px;}
.x71{left:415.694987px;}
.x4b{left:422.564987px;}
.x7f{left:441.645000px;}
.xe{left:442.695000px;}
.x9{left:446.504987px;}
.x7d{left:455.145000px;}
.x4{left:460.004987px;}
.x41{left:468.284987px;}
.x5b{left:482.684987px;}
.x6c{left:485.925000px;}
.x43{left:487.004987px;}
.x52{left:503.024987px;}
.x44{left:506.084987px;}
.x80{left:515.445000px;}
.x5c{left:526.785000px;}
.x77{left:535.605000px;}
.x85{left:559.620000px;}
.x3f{left:577.364987px;}
.x10{left:580.935000px;}
.x6d{left:594.870000px;}
.x84{left:601.709987px;}
.x42{left:606.929987px;}
.x5d{left:622.590000px;}
.x78{left:628.890000px;}
.x45{left:644.369987px;}
.x35{left:672.269987px;}
.x6e{left:703.590000px;}
.x79{left:715.290000px;}
.x3e{left:720.509987px;}
.x46{left:728.069987px;}
.x37{left:757.979987px;}
.x36{left:760.319987px;}
.x39{left:773.819987px;}
.x38{left:784.799987px;}
.x12{left:793.545000px;}
.x83{left:810.899987px;}
.x14{left:974.265000px;}
.x16{left:1070.070000px;}
@media print{
.v18{vertical-align:-68.480000pt;}
.v17{vertical-align:-57.600000pt;}
.v1e{vertical-align:-56.320000pt;}
.v1c{vertical-align:-53.866667pt;}
.v13{vertical-align:-47.360000pt;}
.v12{vertical-align:-44.800000pt;}
.vd{vertical-align:-37.120000pt;}
.va{vertical-align:-34.560000pt;}
.v15{vertical-align:-32.640000pt;}
.v1f{vertical-align:-24.960000pt;}
.v5{vertical-align:-23.680000pt;}
.v21{vertical-align:-21.760000pt;}
.v14{vertical-align:-19.840000pt;}
.v1a{vertical-align:-17.920000pt;}
.v9{vertical-align:-14.720000pt;}
.v2{vertical-align:-12.800000pt;}
.v20{vertical-align:-11.520000pt;}
.v1d{vertical-align:-10.240000pt;}
.vf{vertical-align:-8.960000pt;}
.v16{vertical-align:-6.400000pt;}
.v22{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v23{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:1.280000pt;}
.v8{vertical-align:2.560000pt;}
.v24{vertical-align:7.040000pt;}
.v10{vertical-align:8.960000pt;}
.v3{vertical-align:12.800000pt;}
.ve{vertical-align:15.360000pt;}
.v11{vertical-align:21.760000pt;}
.v1{vertical-align:24.320000pt;}
.v6{vertical-align:26.240000pt;}
.v4{vertical-align:36.480000pt;}
.v19{vertical-align:42.240000pt;}
.vc{vertical-align:53.120000pt;}
.vb{vertical-align:65.920000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls66{letter-spacing:-0.337067pt;}
.ls75{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.318933pt;}
.ls5e{letter-spacing:-0.256000pt;}
.ls64{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.153600pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls65{letter-spacing:-0.094400pt;}
.ls5c{letter-spacing:-0.073067pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.077440pt;}
.ls3{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.153067pt;}
.ls4{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.218133pt;}
.ls42{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.282133pt;}
.ls51{letter-spacing:0.288000pt;}
.ls4b{letter-spacing:0.294400pt;}
.ls5a{letter-spacing:0.298667pt;}
.ls6a{letter-spacing:0.312533pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.321067pt;}
.ls18{letter-spacing:0.342400pt;}
.ls63{letter-spacing:0.448000pt;}
.ls77{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls2a{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls70{letter-spacing:1.344000pt;}
.ls78{letter-spacing:1.472000pt;}
.ls16{letter-spacing:1.536000pt;}
.ls11{letter-spacing:1.600000pt;}
.ls34{letter-spacing:1.611520pt;}
.ls17{letter-spacing:1.664000pt;}
.ls26{letter-spacing:1.792000pt;}
.ls67{letter-spacing:1.850240pt;}
.ls2e{letter-spacing:1.920000pt;}
.ls74{letter-spacing:2.010240pt;}
.ls76{letter-spacing:2.080000pt;}
.lsf{letter-spacing:2.112000pt;}
.ls9{letter-spacing:2.240000pt;}
.ls19{letter-spacing:2.262400pt;}
.ls6d{letter-spacing:2.266880pt;}
.ls27{letter-spacing:2.272000pt;}
.ls6f{letter-spacing:2.373547pt;}
.ls43{letter-spacing:2.472960pt;}
.ls3b{letter-spacing:2.490240pt;}
.ls13{letter-spacing:2.560000pt;}
.ls12{letter-spacing:2.752000pt;}
.ls2c{letter-spacing:2.902400pt;}
.ls6e{letter-spacing:2.906880pt;}
.ls3c{letter-spacing:3.130240pt;}
.ls61{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.289600pt;}
.ls29{letter-spacing:3.418240pt;}
.ls3a{letter-spacing:3.456000pt;}
.ls28{letter-spacing:3.482240pt;}
.ls20{letter-spacing:3.501440pt;}
.ls2f{letter-spacing:3.520000pt;}
.ls25{letter-spacing:3.686400pt;}
.lsb{letter-spacing:3.766400pt;}
.ls62{letter-spacing:3.876480pt;}
.lsc{letter-spacing:4.096000pt;}
.ls15{letter-spacing:4.122240pt;}
.ls45{letter-spacing:4.141440pt;}
.ls14{letter-spacing:4.171520pt;}
.ls5f{letter-spacing:4.228907pt;}
.ls4e{letter-spacing:4.293120pt;}
.ls21{letter-spacing:4.326400pt;}
.ls6b{letter-spacing:4.410240pt;}
.ls38{letter-spacing:4.569600pt;}
.ls39{letter-spacing:4.736000pt;}
.ls1c{letter-spacing:4.750080pt;}
.ls3e{letter-spacing:4.762240pt;}
.ls58{letter-spacing:4.868907pt;}
.ls53{letter-spacing:4.896000pt;}
.ls55{letter-spacing:5.032960pt;}
.ls30{letter-spacing:5.046400pt;}
.ls69{letter-spacing:5.050240pt;}
.ls44{letter-spacing:5.116160pt;}
.ls49{letter-spacing:5.760000pt;}
.ls6c{letter-spacing:6.208000pt;}
.ls5b{letter-spacing:6.784000pt;}
.ls7{letter-spacing:8.448000pt;}
.ls73{letter-spacing:9.530240pt;}
.ls3d{letter-spacing:10.560000pt;}
.ls37{letter-spacing:13.131520pt;}
.ls1d{letter-spacing:13.708160pt;}
.ls3f{letter-spacing:14.348160pt;}
.ls41{letter-spacing:14.400000pt;}
.ls1f{letter-spacing:14.756480pt;}
.ls52{letter-spacing:15.173120pt;}
.ls46{letter-spacing:16.342400pt;}
.ls4d{letter-spacing:16.982400pt;}
.ls40{letter-spacing:17.126400pt;}
.ls32{letter-spacing:17.369600pt;}
.ls1b{letter-spacing:17.600000pt;}
.ls59{letter-spacing:17.728000pt;}
.lse{letter-spacing:17.846400pt;}
.lsd{letter-spacing:18.009600pt;}
.ls35{letter-spacing:18.262400pt;}
.ls31{letter-spacing:18.486400pt;}
.ls36{letter-spacing:20.171520pt;}
.ls4c{letter-spacing:20.182400pt;}
.ls57{letter-spacing:22.042240pt;}
.ls2d{letter-spacing:26.726400pt;}
.ls54{letter-spacing:41.446400pt;}
.ls56{letter-spacing:44.646400pt;}
.ls8{letter-spacing:51.328000pt;}
.ls48{letter-spacing:54.102400pt;}
.ls50{letter-spacing:72.022400pt;}
.ls71{letter-spacing:357.226667pt;}
.ls72{letter-spacing:370.080000pt;}
.ls4f{letter-spacing:569.706667pt;}
.ls68{letter-spacing:1012.426667pt;}
.ws0{word-spacing:-64.000000pt;}
.wse{word-spacing:-24.640000pt;}
.ws23{word-spacing:-16.768000pt;}
.ws22{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws24{word-spacing:-15.808000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws21{word-spacing:-13.824000pt;}
.ws27{word-spacing:-13.760000pt;}
.wsb{word-spacing:-10.214933pt;}
.wsa{word-spacing:-10.149867pt;}
.ws9{word-spacing:-9.996800pt;}
.wsc{word-spacing:-9.843200pt;}
.ws19{word-spacing:-8.487467pt;}
.ws14{word-spacing:-8.460800pt;}
.ws16{word-spacing:-8.166400pt;}
.ws15{word-spacing:-8.093333pt;}
.ws13{word-spacing:-7.847467pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:3.200000pt;}
.ws20{word-spacing:3.264000pt;}
.ws1a{word-spacing:3.370667pt;}
.wsd{word-spacing:3.498667pt;}
.ws17{word-spacing:3.648000pt;}
.ws1d{word-spacing:3.904000pt;}
.wsf{word-spacing:4.032000pt;}
.ws1f{word-spacing:4.138667pt;}
.ws12{word-spacing:6.939840pt;}
.ws11{word-spacing:8.512640pt;}
.ws26{word-spacing:9.408000pt;}
.ws1e{word-spacing:10.779840pt;}
.ws1c{word-spacing:10.886507pt;}
.ws18{word-spacing:12.352640pt;}
.ws25{word-spacing:13.106987pt;}
.ws10{word-spacing:496.266667pt;}
._21{margin-left:-14.813440pt;}
._1e{margin-left:-12.800000pt;}
._22{margin-left:-11.879040pt;}
._1f{margin-left:-10.548480pt;}
._1d{margin-left:-7.360000pt;}
._1c{margin-left:-6.080000pt;}
._5{margin-left:-4.480000pt;}
._6{margin-left:-3.456000pt;}
._7{margin-left:-2.432000pt;}
._3{margin-left:-1.272960pt;}
._4{width:1.282133pt;}
._9{width:2.944000pt;}
._a{width:3.904000pt;}
._b{width:4.864000pt;}
._8{width:6.080000pt;}
._c{width:7.541333pt;}
._15{width:8.568320pt;}
._e{width:9.472000pt;}
._f{width:10.368000pt;}
._10{width:11.456000pt;}
._11{width:12.800000pt;}
._12{width:14.030293pt;}
._1b{width:15.089920pt;}
._18{width:17.344000pt;}
._19{width:18.237867pt;}
._2{width:19.200000pt;}
._16{width:20.669867pt;}
._1a{width:21.764267pt;}
._17{width:22.784000pt;}
._20{width:23.836373pt;}
._37{width:25.016960pt;}
._d{width:26.176000pt;}
._3a{width:27.136000pt;}
._44{width:28.160000pt;}
._13{width:31.744000pt;}
._14{width:33.024000pt;}
._47{width:35.722667pt;}
._38{width:40.694827pt;}
._33{width:62.850987pt;}
._45{width:67.253333pt;}
._32{width:68.160000pt;}
._36{width:74.624000pt;}
._43{width:84.170667pt;}
._40{width:86.931200pt;}
._3c{width:89.804160pt;}
._35{width:92.737493pt;}
._3d{width:99.402667pt;}
._3b{width:101.292160pt;}
._3e{width:111.733333pt;}
._46{width:116.309333pt;}
._34{width:124.940160pt;}
._0{width:134.453333pt;}
._42{width:140.480000pt;}
._39{width:146.378667pt;}
._3f{width:169.578667pt;}
._41{width:176.000000pt;}
._25{width:369.922347pt;}
._23{width:463.925973pt;}
._24{width:697.703680pt;}
._2d{width:728.416640pt;}
._2f{width:749.819733pt;}
._2c{width:814.040107pt;}
._28{width:815.358507pt;}
._2a{width:826.357333pt;}
._30{width:828.983467pt;}
._2b{width:848.264533pt;}
._2e{width:867.191467pt;}
._29{width:879.676160pt;}
._26{width:897.663573pt;}
._31{width:931.715627pt;}
._27{width:976.348587pt;}
._1{width:1193.866667pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:3.520000pt;}
.y70{bottom:3.546667pt;}
.y6d{bottom:3.680000pt;}
.y15c{bottom:4.160000pt;}
.y166{bottom:4.320000pt;}
.y164{bottom:4.480000pt;}
.y79{bottom:4.800000pt;}
.y162{bottom:4.960000pt;}
.y15e{bottom:5.120000pt;}
.y160{bottom:5.440000pt;}
.y16c{bottom:6.400000pt;}
.y16a{bottom:6.560000pt;}
.y1a0{bottom:7.200000pt;}
.y19d{bottom:7.360000pt;}
.y1a9{bottom:7.520000pt;}
.y199{bottom:7.680000pt;}
.y1dc{bottom:7.746667pt;}
.y63{bottom:10.560000pt;}
.y15f{bottom:11.040000pt;}
.y64{bottom:12.640000pt;}
.y195{bottom:12.800000pt;}
.y1af{bottom:15.426667pt;}
.y1df{bottom:15.453333pt;}
.y1a2{bottom:16.640000pt;}
.y1a3{bottom:16.800000pt;}
.y65{bottom:21.920000pt;}
.y193{bottom:22.240000pt;}
.y1a8{bottom:25.920000pt;}
.y198{bottom:26.080000pt;}
.y19f{bottom:26.560000pt;}
.y19c{bottom:26.720000pt;}
.y191{bottom:35.360000pt;}
.y197{bottom:44.480000pt;}
.y19b{bottom:45.120000pt;}
.y192{bottom:48.640000pt;}
.y5c{bottom:50.720000pt;}
.y2{bottom:50.752000pt;}
.y196{bottom:63.200000pt;}
.y19a{bottom:63.520000pt;}
.y19e{bottom:63.840000pt;}
.y5b{bottom:77.120000pt;}
.y1{bottom:77.152000pt;}
.y61{bottom:116.960000pt;}
.y139{bottom:124.192000pt;}
.yb6{bottom:126.752000pt;}
.y158{bottom:127.712000pt;}
.y59{bottom:130.112000pt;}
.y41{bottom:132.032000pt;}
.y1d8{bottom:137.466667pt;}
.y14c{bottom:141.146667pt;}
.y21{bottom:144.026667pt;}
.y60{bottom:144.666667pt;}
.y228{bottom:145.146667pt;}
.yd4{bottom:145.306667pt;}
.yf3{bottom:147.066667pt;}
.y18f{bottom:151.386667pt;}
.y138{bottom:151.866667pt;}
.yb5{bottom:154.266667pt;}
.y157{bottom:155.866667pt;}
.y58{bottom:157.786667pt;}
.y1c8{bottom:157.946667pt;}
.y181{bottom:158.266667pt;}
.y40{bottom:159.546667pt;}
.y118{bottom:161.626667pt;}
.y1d7{bottom:165.146667pt;}
.y84{bottom:167.546667pt;}
.y7d{bottom:168.186667pt;}
.y201{bottom:169.786667pt;}
.y20{bottom:171.546667pt;}
.yd2{bottom:173.466667pt;}
.y14b{bottom:176.826667pt;}
.yd3{bottom:179.386667pt;}
.y137{bottom:179.866667pt;}
.yb4{bottom:181.946667pt;}
.y156{bottom:184.026667pt;}
.yf2{bottom:184.826667pt;}
.y57{bottom:185.306667pt;}
.y1c7{bottom:185.466667pt;}
.y180{bottom:185.946667pt;}
.y18e{bottom:186.906667pt;}
.y3f{bottom:187.226667pt;}
.y200{bottom:188.186667pt;}
.y7c{bottom:189.146667pt;}
.y227{bottom:189.946667pt;}
.y1d6{bottom:192.986667pt;}
.y83{bottom:195.226667pt;}
.y1f{bottom:199.226667pt;}
.yd0{bottom:201.466667pt;}
.y113{bottom:204.666667pt;}
.yd1{bottom:207.546667pt;}
.y226{bottom:208.346667pt;}
.yb3{bottom:209.466667pt;}
.y7b{bottom:210.106667pt;}
.y114{bottom:210.586667pt;}
.y56{bottom:212.186667pt;}
.y14a{bottom:212.346667pt;}
.y116{bottom:212.826667pt;}
.y99{bottom:212.986667pt;}
.y115{bottom:213.306667pt;}
.y117{bottom:213.466667pt;}
.y1ff{bottom:214.586667pt;}
.y3e{bottom:214.746667pt;}
.yf1{bottom:214.906667pt;}
.y110{bottom:215.226667pt;}
.y136{bottom:215.386667pt;}
.y1d5{bottom:221.306667pt;}
.y18d{bottom:222.586667pt;}
.y82{bottom:222.746667pt;}
.y1e{bottom:226.106667pt;}
.y225{bottom:226.746667pt;}
.y7a{bottom:231.066667pt;}
.yce{bottom:232.826667pt;}
.y1fe{bottom:232.986667pt;}
.yb2{bottom:237.146667pt;}
.y112{bottom:237.626667pt;}
.y111{bottom:237.786667pt;}
.ycf{bottom:238.746667pt;}
.y155{bottom:240.026667pt;}
.y1c6{bottom:241.146667pt;}
.y17f{bottom:241.306667pt;}
.y3d{bottom:242.426667pt;}
.yf0{bottom:243.066667pt;}
.y149{bottom:248.026667pt;}
.y98{bottom:248.506667pt;}
.y1d4{bottom:249.306667pt;}
.y18c{bottom:250.306667pt;}
.y55{bottom:250.466667pt;}
.y1fd{bottom:251.426667pt;}
.y78{bottom:252.186667pt;}
.y224{bottom:253.186667pt;}
.ycc{bottom:261.026667pt;}
.y1d{bottom:264.386667pt;}
.yb1{bottom:264.706667pt;}
.ycd{bottom:267.106667pt;}
.y10f{bottom:268.866667pt;}
.y17e{bottom:269.506667pt;}
.y3c{bottom:269.986667pt;}
.y135{bottom:270.626667pt;}
.y223{bottom:271.586667pt;}
.yef{bottom:273.026667pt;}
.y77{bottom:273.186667pt;}
.y148{bottom:275.586667pt;}
.y154{bottom:275.746667pt;}
.y97{bottom:276.226667pt;}
.y1fc{bottom:277.826667pt;}
.y54{bottom:277.986667pt;}
.y18b{bottom:278.466667pt;}
.y1d3{bottom:285.026667pt;}
.ycb{bottom:289.186667pt;}
.y222{bottom:289.986667pt;}
.y76{bottom:294.146667pt;}
.y1fb{bottom:296.226667pt;}
.y1c5{bottom:296.386667pt;}
.y17d{bottom:297.506667pt;}
.y3b{bottom:297.666667pt;}
.y134{bottom:298.306667pt;}
.y165{bottom:299.266667pt;}
.y1c{bottom:299.906667pt;}
.yb0{bottom:300.386667pt;}
.yee{bottom:301.186667pt;}
.y147{bottom:303.266667pt;}
.y96{bottom:303.746667pt;}
.y10e{bottom:304.546667pt;}
.y53{bottom:305.666667pt;}
.y18a{bottom:306.626667pt;}
.y1d2{bottom:312.546667pt;}
.y1fa{bottom:314.626667pt;}
.y75{bottom:315.106667pt;}
.y221{bottom:316.386667pt;}
.y163{bottom:322.466667pt;}
.y1c4{bottom:324.066667pt;}
.y17c{bottom:325.026667pt;}
.y133{bottom:325.826667pt;}
.yca{bottom:326.466667pt;}
.y1b{bottom:326.786667pt;}
.yaf{bottom:327.906667pt;}
.yed{bottom:329.346667pt;}
.y146{bottom:330.786667pt;}
.y95{bottom:331.426667pt;}
.y3a{bottom:333.186667pt;}
.y220{bottom:334.786667pt;}
.y10d{bottom:335.106667pt;}
.y74{bottom:336.226667pt;}
.y1ae{bottom:338.560000pt;}
.y1d1{bottom:340.226667pt;}
.y1f9{bottom:341.026667pt;}
.y189{bottom:342.626667pt;}
.y161{bottom:345.186667pt;}
.y1c3{bottom:351.906667pt;}
.y17b{bottom:352.706667pt;}
.y21f{bottom:353.186667pt;}
.y132{bottom:353.506667pt;}
.y1ad{bottom:353.986667pt;}
.y1b0{bottom:354.626667pt;}
.yae{bottom:355.586667pt;}
.y73{bottom:357.186667pt;}
.y145{bottom:358.466667pt;}
.y94{bottom:358.946667pt;}
.y1f8{bottom:359.426667pt;}
.y39{bottom:360.866667pt;}
.yc8{bottom:362.306667pt;}
.y10c{bottom:362.946667pt;}
.y1a{bottom:365.026667pt;}
.y1d0{bottom:367.746667pt;}
.yc9{bottom:368.226667pt;}
.y15d{bottom:369.026667pt;}
.y21e{bottom:371.586667pt;}
.y72{bottom:378.146667pt;}
.y1c2{bottom:380.066667pt;}
.y17a{bottom:380.386667pt;}
.y131{bottom:381.026667pt;}
.yad{bottom:383.106667pt;}
.yec{bottom:384.866667pt;}
.y1f7{bottom:385.826667pt;}
.y93{bottom:386.626667pt;}
.y38{bottom:388.386667pt;}
.y239{bottom:389.986667pt;}
.yc6{bottom:390.786667pt;}
.y19{bottom:392.546667pt;}
.y144{bottom:393.986667pt;}
.y15b{bottom:394.626667pt;}
.y1cf{bottom:395.426667pt;}
.y52{bottom:396.386667pt;}
.yc7{bottom:396.706667pt;}
.y21d{bottom:397.986667pt;}
.y71{bottom:399.106667pt;}
.y1f6{bottom:404.226667pt;}
.y1c1{bottom:408.066667pt;}
.y179{bottom:408.386667pt;}
.yac{bottom:410.626667pt;}
.yeb{bottom:412.706667pt;}
.y188{bottom:413.826667pt;}
.y92{bottom:414.146667pt;}
.y37{bottom:416.066667pt;}
.y21c{bottom:416.386667pt;}
.y130{bottom:417.026667pt;}
.y15a{bottom:417.346667pt;}
.yc5{bottom:419.106667pt;}
.y18{bottom:420.226667pt;}
.y10b{bottom:420.866667pt;}
.y143{bottom:421.666667pt;}
.y1ce{bottom:422.306667pt;}
.y1f5{bottom:422.626667pt;}
.y51{bottom:424.066667pt;}
.y21b{bottom:434.786667pt;}
.y1c0{bottom:436.226667pt;}
.yab{bottom:438.306667pt;}
.yea{bottom:440.866667pt;}
.y6f{bottom:441.213333pt;}
.y91{bottom:441.826667pt;}
.y159{bottom:443.266667pt;}
.y36{bottom:443.586667pt;}
.y178{bottom:443.906667pt;}
.yc4{bottom:447.266667pt;}
.y17{bottom:447.746667pt;}
.y1f4{bottom:449.026667pt;}
.y142{bottom:449.186667pt;}
.y187{bottom:449.346667pt;}
.y109{bottom:450.946667pt;}
.y50{bottom:451.586667pt;}
.y21a{bottom:453.186667pt;}
.y12f{bottom:454.786667pt;}
.y10a{bottom:456.866667pt;}
.y1cd{bottom:460.386667pt;}
.y1da{bottom:461.920000pt;}
.y6e{bottom:462.173333pt;}
.y1bf{bottom:464.386667pt;}
.yaa{bottom:465.826667pt;}
.y1f3{bottom:467.426667pt;}
.ye9{bottom:469.026667pt;}
.y35{bottom:471.266667pt;}
.y238{bottom:471.586667pt;}
.y1db{bottom:472.640000pt;}
.y177{bottom:474.466667pt;}
.yc3{bottom:475.106667pt;}
.y16{bottom:475.426667pt;}
.y141{bottom:476.866667pt;}
.y90{bottom:477.346667pt;}
.y1d9{bottom:477.986667pt;}
.y107{bottom:479.106667pt;}
.y4f{bottom:479.266667pt;}
.y219{bottom:479.586667pt;}
.y6c{bottom:483.133333pt;}
.y108{bottom:485.026667pt;}
.y1f2{bottom:485.826667pt;}
.y12d{bottom:491.906667pt;}
.y153{bottom:492.226667pt;}
.ya9{bottom:493.506667pt;}
.y1cc{bottom:496.066667pt;}
.y12e{bottom:497.826667pt;}
.y218{bottom:497.986667pt;}
.y34{bottom:498.786667pt;}
.y1be{bottom:500.386667pt;}
.y15{bottom:502.973333pt;}
.y6b{bottom:504.253333pt;}
.y140{bottom:504.413333pt;}
.ye8{bottom:504.893333pt;}
.y8f{bottom:505.053333pt;}
.y4e{bottom:506.813333pt;}
.y105{bottom:507.133333pt;}
.y152{bottom:510.653333pt;}
.y1f1{bottom:512.253333pt;}
.y106{bottom:513.213333pt;}
.y176{bottom:514.493333pt;}
.y175{bottom:514.973333pt;}
.y237{bottom:516.413333pt;}
.y186{bottom:520.573333pt;}
.ya8{bottom:521.053333pt;}
.y217{bottom:524.413333pt;}
.y6a{bottom:525.213333pt;}
.y33{bottom:526.493333pt;}
.y1bd{bottom:527.933333pt;}
.y12c{bottom:528.413333pt;}
.y14{bottom:530.653333pt;}
.yc2{bottom:531.133333pt;}
.y1cb{bottom:531.613333pt;}
.y13f{bottom:532.093333pt;}
.y8e{bottom:532.573333pt;}
.y4d{bottom:534.493333pt;}
.y236{bottom:534.813333pt;}
.ye7{bottom:535.453333pt;}
.y151{bottom:537.053333pt;}
.y103{bottom:538.493333pt;}
.y216{bottom:542.813333pt;}
.y104{bottom:544.413333pt;}
.y69{bottom:546.173333pt;}
.y1f0{bottom:549.053333pt;}
.y174{bottom:549.853333pt;}
.y32{bottom:554.013333pt;}
.y1bc{bottom:555.613333pt;}
.y185{bottom:556.253333pt;}
.ya7{bottom:556.733333pt;}
.y13{bottom:558.173333pt;}
.yc1{bottom:559.293333pt;}
.y13e{bottom:559.613333pt;}
.y8d{bottom:560.253333pt;}
.y215{bottom:561.213333pt;}
.y4c{bottom:562.013333pt;}
.y12a{bottom:564.413333pt;}
.ye6{bottom:565.373333pt;}
.y101{bottom:566.653333pt;}
.y68{bottom:567.133333pt;}
.y1ca{bottom:567.293333pt;}
.y150{bottom:572.573333pt;}
.y102{bottom:572.733333pt;}
.y12b{bottom:573.053333pt;}
.y1ef{bottom:575.453333pt;}
.y173{bottom:577.693333pt;}
.y235{bottom:579.613333pt;}
.y31{bottom:581.693333pt;}
.y184{bottom:582.653333pt;}
.y1bb{bottom:583.133333pt;}
.y12{bottom:585.853333pt;}
.y13d{bottom:586.493333pt;}
.ya6{bottom:586.973333pt;}
.yc0{bottom:587.453333pt;}
.y214{bottom:587.613333pt;}
.y8c{bottom:587.773333pt;}
.y67{bottom:588.133333pt;}
.y4b{bottom:589.693333pt;}
.ye5{bottom:593.533333pt;}
.y1ee{bottom:593.853333pt;}
.y100{bottom:594.493333pt;}
.y1c9{bottom:602.813333pt;}
.y129{bottom:604.573333pt;}
.y172{bottom:605.693333pt;}
.y213{bottom:606.013333pt;}
.y14f{bottom:608.093333pt;}
.y183{bottom:608.893333pt;}
.y30{bottom:609.213333pt;}
.y1ba{bottom:610.813333pt;}
.y62{bottom:611.013333pt;}
.y1ed{bottom:612.253333pt;}
.y11{bottom:613.373333pt;}
.ya5{bottom:614.653333pt;}
.y8b{bottom:615.453333pt;}
.y4a{bottom:617.213333pt;}
.ye3{bottom:623.453333pt;}
.yff{bottom:624.253333pt;}
.y212{bottom:624.413333pt;}
.y13c{bottom:624.733333pt;}
.ye4{bottom:629.373333pt;}
.y171{bottom:633.213333pt;}
.y2f{bottom:636.893333pt;}
.y1b9{bottom:638.333333pt;}
.y14e{bottom:638.493333pt;}
.y1ec{bottom:638.653333pt;}
.y128{bottom:640.733333pt;}
.y10{bottom:640.893333pt;}
.ya4{bottom:642.173333pt;}
.y234{bottom:642.813333pt;}
.y8a{bottom:642.973333pt;}
.y182{bottom:644.573333pt;}
.y49{bottom:644.893333pt;}
.ybf{bottom:645.533333pt;}
.y211{bottom:650.813333pt;}
.ye2{bottom:651.613333pt;}
.y13b{bottom:652.253333pt;}
.yfe{bottom:654.173333pt;}
.y1eb{bottom:657.053333pt;}
.y170{bottom:661.053333pt;}
.y1b8{bottom:666.013333pt;}
.y1ab{bottom:668.093333pt;}
.yf{bottom:668.573333pt;}
.y210{bottom:669.213333pt;}
.ya3{bottom:669.853333pt;}
.y5f{bottom:670.213333pt;}
.y89{bottom:670.653333pt;}
.y2e{bottom:672.413333pt;}
.y14d{bottom:674.013333pt;}
.y1ea{bottom:675.293333pt;}
.ybe{bottom:675.613333pt;}
.y127{bottom:676.893333pt;}
.ye0{bottom:679.933333pt;}
.yfd{bottom:682.013333pt;}
.y233{bottom:687.613333pt;}
.ye1{bottom:688.573333pt;}
.y5e{bottom:688.613333pt;}
.y16f{bottom:689.213333pt;}
.y1ac{bottom:694.493333pt;}
.y20f{bottom:695.613333pt;}
.ye{bottom:696.093333pt;}
.ya2{bottom:697.373333pt;}
.y88{bottom:698.173333pt;}
.y2d{bottom:700.093333pt;}
.y1b7{bottom:701.533333pt;}
.y1e9{bottom:701.693333pt;}
.ybd{bottom:703.773333pt;}
.y232{bottom:706.013333pt;}
.y1e1{bottom:706.400000pt;}
.y5d{bottom:707.013333pt;}
.y1de{bottom:707.520000pt;}
.y13a{bottom:707.773333pt;}
.y5a{bottom:708.093333pt;}
.yfc{bottom:709.693333pt;}
.y126{bottom:713.053333pt;}
.y20e{bottom:714.013333pt;}
.ydf{bottom:719.613333pt;}
.y1e8{bottom:720.093333pt;}
.y1a7{bottom:720.893333pt;}
.y1e0{bottom:722.493333pt;}
.y1dd{bottom:723.613333pt;}
.yd{bottom:723.773333pt;}
.y16e{bottom:724.733333pt;}
.ya1{bottom:724.893333pt;}
.y87{bottom:725.693333pt;}
.y2c{bottom:727.613333pt;}
.y231{bottom:732.413333pt;}
.ybc{bottom:733.853333pt;}
.y48{bottom:735.613333pt;}
.y1e7{bottom:738.493333pt;}
.y20d{bottom:740.413333pt;}
.yfb{bottom:745.213333pt;}
.y1aa{bottom:747.293333pt;}
.y16d{bottom:748.253333pt;}
.y124{bottom:750.653333pt;}
.y230{bottom:750.813333pt;}
.yc{bottom:751.293333pt;}
.ya0{bottom:752.573333pt;}
.y86{bottom:753.413333pt;}
.y2b{bottom:755.333333pt;}
.yde{bottom:755.493333pt;}
.y125{bottom:756.613333pt;}
.y20c{bottom:758.853333pt;}
.ybb{bottom:762.053333pt;}
.y47{bottom:763.333333pt;}
.y1e6{bottom:764.933333pt;}
.y22f{bottom:769.253333pt;}
.y16b{bottom:770.213333pt;}
.y1a5{bottom:773.733333pt;}
.y20b{bottom:777.253333pt;}
.yb{bottom:778.373333pt;}
.y9f{bottom:780.133333pt;}
.y85{bottom:780.293333pt;}
.yfa{bottom:780.933333pt;}
.y2a{bottom:782.853333pt;}
.y1e5{bottom:783.333333pt;}
.ydd{bottom:783.493333pt;}
.y123{bottom:788.613333pt;}
.y46{bottom:790.853333pt;}
.y169{bottom:794.053333pt;}
.y22e{bottom:795.653333pt;}
.yba{bottom:797.893333pt;}
.y1a6{bottom:800.133333pt;}
.y20a{bottom:803.653333pt;}
.ya{bottom:807.333333pt;}
.y9e{bottom:807.813333pt;}
.y1e4{bottom:809.733333pt;}
.y29{bottom:810.533333pt;}
.ydc{bottom:811.653333pt;}
.y22d{bottom:814.053333pt;}
.y1b6{bottom:816.133333pt;}
.yf9{bottom:816.453333pt;}
.y45{bottom:818.533333pt;}
.y168{bottom:820.613333pt;}
.y209{bottom:822.053333pt;}
.y122{bottom:825.733333pt;}
.y1a1{bottom:826.533333pt;}
.y1e3{bottom:828.133333pt;}
.yb9{bottom:833.573333pt;}
.y9{bottom:833.733333pt;}
.y9d{bottom:835.333333pt;}
.y28{bottom:838.053333pt;}
.y208{bottom:840.453333pt;}
.ydb{bottom:841.733333pt;}
.y44{bottom:846.053333pt;}
.y1b5{bottom:851.653333pt;}
.yf8{bottom:852.133333pt;}
.y1a4{bottom:852.933333pt;}
.y1e2{bottom:855.173333pt;}
.y167{bottom:857.733333pt;}
.y22c{bottom:858.853333pt;}
.y8{bottom:860.133333pt;}
.y9c{bottom:863.013333pt;}
.y27{bottom:865.733333pt;}
.y120{bottom:866.053333pt;}
.y207{bottom:866.853333pt;}
.yb8{bottom:869.093333pt;}
.yda{bottom:869.893333pt;}
.y121{bottom:871.973333pt;}
.y43{bottom:873.733333pt;}
.y7{bottom:878.533333pt;}
.y190{bottom:879.973333pt;}
.y206{bottom:885.253333pt;}
.y1b4{bottom:887.333333pt;}
.yf7{bottom:887.653333pt;}
.y9b{bottom:890.533333pt;}
.yb7{bottom:890.693333pt;}
.y26{bottom:893.253333pt;}
.yd9{bottom:897.893333pt;}
.y42{bottom:901.253333pt;}
.y22b{bottom:903.653333pt;}
.y6{bottom:904.933333pt;}
.y205{bottom:911.653333pt;}
.y11d{bottom:914.213333pt;}
.y81{bottom:920.933333pt;}
.y22a{bottom:922.053333pt;}
.y11e{bottom:922.373333pt;}
.y1b3{bottom:922.853333pt;}
.y11f{bottom:923.013333pt;}
.yf6{bottom:923.333333pt;}
.y194{bottom:925.413333pt;}
.yd8{bottom:926.053333pt;}
.y9a{bottom:926.213333pt;}
.y25{bottom:928.933333pt;}
.y204{bottom:930.053333pt;}
.y5{bottom:936.133333pt;}
.y80{bottom:948.453333pt;}
.yd7{bottom:954.213333pt;}
.y24{bottom:956.453333pt;}
.y1b2{bottom:958.533333pt;}
.yf5{bottom:958.853333pt;}
.y11c{bottom:965.093333pt;}
.y229{bottom:966.853333pt;}
.y4{bottom:968.933333pt;}
.y203{bottom:974.853333pt;}
.y7f{bottom:976.133333pt;}
.yd6{bottom:982.373333pt;}
.y23{bottom:984.133333pt;}
.y1b1{bottom:984.933333pt;}
.yf4{bottom:985.253333pt;}
.y202{bottom:993.253333pt;}
.y11a{bottom:999.493333pt;}
.y119{bottom:999.813333pt;}
.y3{bottom:1001.093333pt;}
.y7e{bottom:1003.653333pt;}
.y11b{bottom:1008.480000pt;}
.yd5{bottom:1011.360000pt;}
.y22{bottom:1011.680000pt;}
.hd{height:20.960000pt;}
.hc{height:20.992000pt;}
.he{height:21.120000pt;}
.h20{height:21.952000pt;}
.hb{height:22.080000pt;}
.h1a{height:22.720000pt;}
.h1d{height:23.200000pt;}
.h1e{height:23.680000pt;}
.h1c{height:23.840000pt;}
.h19{height:25.280000pt;}
.h1b{height:25.600000pt;}
.h1f{height:25.760000pt;}
.h26{height:26.400000pt;}
.h28{height:26.432000pt;}
.h18{height:28.960000pt;}
.h2b{height:30.560000pt;}
.h2c{height:38.720000pt;}
.h29{height:38.880000pt;}
.ha{height:40.320000pt;}
.h4{height:42.084375pt;}
.h23{height:44.800000pt;}
.h12{height:50.476562pt;}
.h25{height:52.800000pt;}
.h27{height:52.832000pt;}
.h7{height:62.781250pt;}
.h2{height:62.812500pt;}
.h6{height:64.500000pt;}
.hf{height:65.781915pt;}
.h5{height:66.404375pt;}
.h10{height:71.093750pt;}
.h2a{height:71.733750pt;}
.h17{height:72.373750pt;}
.h15{height:73.653750pt;}
.h11{height:74.156562pt;}
.h24{height:74.938643pt;}
.h3{height:75.465000pt;}
.h21{height:75.573750pt;}
.h13{height:76.716562pt;}
.h16{height:80.693750pt;}
.h22{height:90.240000pt;}
.h14{height:137.013750pt;}
.h8{height:793.760000pt;}
.h9{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:14.720000pt;}
.w14{width:25.760000pt;}
.w20{width:37.312000pt;}
.w1e{width:49.312000pt;}
.w10{width:65.440000pt;}
.w21{width:65.600000pt;}
.w1f{width:71.520000pt;}
.wb{width:75.040000pt;}
.w1d{width:75.680000pt;}
.w1a{width:76.800000pt;}
.w1c{width:82.112000pt;}
.w19{width:82.912000pt;}
.w15{width:85.120000pt;}
.wa{width:85.152000pt;}
.w1b{width:86.272000pt;}
.w13{width:96.640000pt;}
.w11{width:96.672000pt;}
.w12{width:96.832000pt;}
.w22{width:100.832000pt;}
.w23{width:113.120000pt;}
.w25{width:116.000000pt;}
.w24{width:117.760000pt;}
.w18{width:120.832000pt;}
.w7{width:122.880000pt;}
.wd{width:141.626667pt;}
.w16{width:157.786667pt;}
.w9{width:160.640000pt;}
.we{width:168.186667pt;}
.w8{width:188.986667pt;}
.wf{width:197.946667pt;}
.wc{width:255.226667pt;}
.w6{width:274.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x72{left:7.200000pt;}
.xf{left:8.480000pt;}
.x7a{left:10.560000pt;}
.x69{left:11.840000pt;}
.x1e{left:13.600000pt;}
.x26{left:14.880000pt;}
.x6f{left:16.000000pt;}
.x17{left:17.760000pt;}
.x2a{left:19.514667pt;}
.x6b{left:21.920000pt;}
.x21{left:23.200000pt;}
.x15{left:24.520000pt;}
.x18{left:25.760000pt;}
.x65{left:28.480000pt;}
.x13{left:30.080000pt;}
.x60{left:31.200000pt;}
.x7e{left:33.280000pt;}
.x1d{left:34.440000pt;}
.x23{left:36.040000pt;}
.x28{left:37.000000pt;}
.x1a{left:38.400000pt;}
.x67{left:42.400000pt;}
.x70{left:44.346667pt;}
.x30{left:45.914667pt;}
.x2b{left:50.234667pt;}
.x2e{left:52.794667pt;}
.x5e{left:54.586667pt;}
.x2f{left:55.514667pt;}
.x20{left:56.960000pt;}
.x22{left:58.400000pt;}
.x11{left:59.680000pt;}
.x32{left:65.274667pt;}
.x1b{left:66.240000pt;}
.x61{left:68.000000pt;}
.x66{left:70.080000pt;}
.xa{left:71.871988pt;}
.x31{left:75.834667pt;}
.x2c{left:76.800000pt;}
.x1c{left:77.920000pt;}
.x7b{left:79.066667pt;}
.x27{left:80.154667pt;}
.x1f{left:83.354667pt;}
.xd{left:85.274667pt;}
.x5f{left:87.226667pt;}
.x19{left:88.634667pt;}
.x6{left:89.951988pt;}
.x68{left:92.800000pt;}
.x1{left:95.871988pt;}
.x73{left:97.632000pt;}
.x2d{left:101.914667pt;}
.x2{left:103.391988pt;}
.x86{left:104.933333pt;}
.x24{left:108.954667pt;}
.x34{left:110.271988pt;}
.x33{left:111.711988pt;}
.x29{left:115.674667pt;}
.xc{left:119.871983pt;}
.x3{left:133.151988pt;}
.x81{left:134.426655pt;}
.xb{left:143.866650pt;}
.x25{left:171.514667pt;}
.x87{left:173.120000pt;}
.x89{left:176.640000pt;}
.x74{left:182.746667pt;}
.x50{left:186.266655pt;}
.x62{left:204.354667pt;}
.x47{left:209.306655pt;}
.x63{left:212.834667pt;}
.x88{left:213.946655pt;}
.x64{left:217.474667pt;}
.x4c{left:236.386655pt;}
.x48{left:239.426655pt;}
.x3d{left:244.386655pt;}
.x49{left:261.506655pt;}
.x7c{left:264.866667pt;}
.x4d{left:268.386655pt;}
.x6a{left:269.826667pt;}
.x4e{left:277.986655pt;}
.x82{left:282.946655pt;}
.x56{left:284.706655pt;}
.x3b{left:290.626655pt;}
.x57{left:293.826655pt;}
.x40{left:297.506655pt;}
.x59{left:299.746655pt;}
.x3a{left:305.506655pt;}
.x4f{left:308.386655pt;}
.x55{left:309.346655pt;}
.x54{left:313.826655pt;}
.x53{left:318.146655pt;}
.x58{left:319.586655pt;}
.x5{left:326.306655pt;}
.x8{left:327.746655pt;}
.x5a{left:335.906655pt;}
.x51{left:338.626655pt;}
.x75{left:340.546667pt;}
.x4a{left:344.226655pt;}
.x3c{left:352.706655pt;}
.x76{left:355.266667pt;}
.x7{left:358.306655pt;}
.x71{left:369.506655pt;}
.x4b{left:375.613322pt;}
.x7f{left:392.573333pt;}
.xe{left:393.506667pt;}
.x9{left:396.893322pt;}
.x7d{left:404.573333pt;}
.x4{left:408.893322pt;}
.x41{left:416.253322pt;}
.x5b{left:429.053322pt;}
.x6c{left:431.933333pt;}
.x43{left:432.893322pt;}
.x52{left:447.133322pt;}
.x44{left:449.853322pt;}
.x80{left:458.173333pt;}
.x5c{left:468.253333pt;}
.x77{left:476.093333pt;}
.x85{left:497.440000pt;}
.x3f{left:513.213322pt;}
.x10{left:516.386667pt;}
.x6d{left:528.773333pt;}
.x84{left:534.853322pt;}
.x42{left:539.493322pt;}
.x5d{left:553.413333pt;}
.x78{left:559.013333pt;}
.x45{left:572.773322pt;}
.x35{left:597.573322pt;}
.x6e{left:625.413333pt;}
.x79{left:635.813333pt;}
.x3e{left:640.453322pt;}
.x46{left:647.173322pt;}
.x37{left:673.759988pt;}
.x36{left:675.839988pt;}
.x39{left:687.839988pt;}
.x38{left:697.599988pt;}
.x12{left:705.373333pt;}
.x83{left:720.799988pt;}
.x14{left:866.013333pt;}
.x16{left:951.173333pt;}
}




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