
    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_af6f72d512fce5b61c3b6baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937500;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_a66434b5c60c09502024ab4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_3f1f068e205c3f05917cdb25.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_b26f0e657561342d282ab825.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863770;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_c587dab8ac4b1b65d94333a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.980000;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_14e6eab4dacc594c36a6b8b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966000;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_c319fd7f3ccc1d0b51d07a4d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912000;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_bf8ff7fbc79d465bf659c8cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_bfa72bb0b65192b0b0ed3603.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_f0ea70dc391000d9f6743b5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_1e7c2efe6f80453c7f568728.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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_e57216bedc1b7b7cbb636441.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.862793;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_683d14a350a6e30bdb2655da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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_6106ac547bbb8dd356cfd3bf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.863770;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_c57654126a33207f2e5c51a9.woff2')format("woff");}.fff{font-family:fff;line-height:1.002930;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_1e7b0af74a3265ca56836092.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;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_2a3dc0408cf4c3046a912795.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.863770;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_bf827725babdf66682b0da45.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871094;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_e1e95f819d41c3984287ee9e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.862793;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_514da0251c5a09ca89d89ca4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.042000;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_56bd58f852d992310a711117.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941000;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_7238aab0c7a4bc7caf4664ba.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919000;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:36.720000px;}
.ls2{letter-spacing:-5.700000px;}
.lsb{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.384780px;}
.lsa{letter-spacing:-0.384000px;}
.lsd{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.810000px;}
.ls6{letter-spacing:1.680000px;}
.ls7{letter-spacing:1.980000px;}
.ls8{letter-spacing:3.540000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-60.000000px;}
.wsa{word-spacing:-54.000000px;}
.wsb{word-spacing:-48.000000px;}
.ws7{word-spacing:-33.150000px;}
.ws17{word-spacing:-16.272000px;}
.wsd{word-spacing:-14.916000px;}
.ws14{word-spacing:-13.560000px;}
.ws46{word-spacing:-13.200000px;}
.ws15{word-spacing:-13.020000px;}
.ws21{word-spacing:-12.960000px;}
.ws16{word-spacing:-12.480000px;}
.ws2d{word-spacing:-10.176000px;}
.ws45{word-spacing:-7.520700px;}
.ws19{word-spacing:-2.400000px;}
.ws1e{word-spacing:-2.340000px;}
.ws4f{word-spacing:-1.980000px;}
.ws2f{word-spacing:-1.800000px;}
.ws51{word-spacing:-1.680000px;}
.ws3d{word-spacing:-1.320000px;}
.ws48{word-spacing:-1.260000px;}
.ws41{word-spacing:-1.020000px;}
.ws3c{word-spacing:-0.900000px;}
.ws44{word-spacing:-0.780000px;}
.ws52{word-spacing:-0.720000px;}
.ws4a{word-spacing:-0.660000px;}
.ws4b{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.120000px;}
.ws2e{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.ws3a{word-spacing:0.240000px;}
.ws1a{word-spacing:0.540000px;}
.ws3e{word-spacing:0.600000px;}
.ws49{word-spacing:0.900000px;}
.ws4d{word-spacing:1.080000px;}
.ws36{word-spacing:1.200000px;}
.ws1b{word-spacing:1.440000px;}
.ws24{word-spacing:1.680000px;}
.ws27{word-spacing:1.980000px;}
.ws28{word-spacing:2.040000px;}
.ws5{word-spacing:2.100000px;}
.ws26{word-spacing:2.220000px;}
.ws39{word-spacing:2.280000px;}
.ws1d{word-spacing:2.460000px;}
.ws40{word-spacing:2.580000px;}
.ws47{word-spacing:2.700000px;}
.ws3b{word-spacing:2.760000px;}
.ws23{word-spacing:3.300000px;}
.ws12{word-spacing:3.480000px;}
.ws18{word-spacing:4.020000px;}
.ws43{word-spacing:4.080000px;}
.ws42{word-spacing:4.200000px;}
.wse{word-spacing:4.260000px;}
.ws11{word-spacing:4.500000px;}
.ws35{word-spacing:4.800000px;}
.ws53{word-spacing:5.040000px;}
.ws13{word-spacing:5.220000px;}
.ws4c{word-spacing:5.280000px;}
.ws50{word-spacing:5.400000px;}
.ws10{word-spacing:5.700000px;}
.ws22{word-spacing:5.760000px;}
.ws4e{word-spacing:6.540000px;}
.ws25{word-spacing:7.260000px;}
.ws33{word-spacing:7.320000px;}
.ws30{word-spacing:7.680000px;}
.ws3{word-spacing:7.865400px;}
.ws1{word-spacing:9.302100px;}
.ws3f{word-spacing:10.140000px;}
.ws1f{word-spacing:10.152000px;}
.ws34{word-spacing:10.224000px;}
.ws32{word-spacing:11.880000px;}
.ws31{word-spacing:12.120000px;}
.ws1c{word-spacing:12.420000px;}
.ws37{word-spacing:17.100000px;}
.ws20{word-spacing:17.280000px;}
.ws0{word-spacing:17.948100px;}
.ws8{word-spacing:27.300000px;}
.ws38{word-spacing:30.960000px;}
.ws2{word-spacing:40.982700px;}
.ws6{word-spacing:46.748100px;}
.ws4{word-spacing:48.182700px;}
.ws2b{word-spacing:801.744000px;}
.ws2a{word-spacing:1134.768000px;}
.ws2c{word-spacing:1227.312000px;}
._2d{margin-left:-6.291300px;}
._6{margin-left:-4.714500px;}
._12{margin-left:-3.521700px;}
._7{margin-left:-2.497800px;}
._0{margin-left:-1.058100px;}
._a{width:1.089900px;}
._c{width:2.102100px;}
._8{width:3.217800px;}
._9{width:4.263900px;}
._b{width:5.730000px;}
._11{width:6.744300px;}
._10{width:7.961700px;}
._26{width:9.365700px;}
._25{width:10.518000px;}
._e{width:12.378000px;}
._f{width:14.874900px;}
._27{width:15.973200px;}
._23{width:17.171100px;}
._13{width:19.080000px;}
._24{width:21.492000px;}
._29{width:22.716000px;}
._28{width:24.123900px;}
._2b{width:26.724000px;}
._2c{width:28.825800px;}
._2a{width:30.906000px;}
._22{width:32.346000px;}
._3{width:34.028100px;}
._1{width:43.771800px;}
._4{width:58.966200px;}
._19{width:61.106100px;}
._2{width:75.417300px;}
._20{width:95.392200px;}
._21{width:98.608200px;}
._1c{width:256.416000px;}
._15{width:672.415800px;}
._18{width:683.520000px;}
._1f{width:731.044200px;}
._1b{width:784.430100px;}
._1a{width:852.448200px;}
._14{width:859.876200px;}
._1d{width:895.440000px;}
._17{width:911.380200px;}
._1e{width:918.148200px;}
._2e{width:1075.572000px;}
._d{width:1102.950000px;}
._5{width:1130.328000px;}
._16{width:1177.154100px;}
.fc5{color:rgb(79,76,77);}
.fc4{color:rgb(217,25,32);}
.fc2{color:rgb(145,143,143);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:66.300000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:102.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:46.851450px;}
.ya{bottom:55.355250px;}
.yf3{bottom:77.096550px;}
.y3f{bottom:84.371550px;}
.y1cc{bottom:85.294950px;}
.y202{bottom:86.950350px;}
.y199{bottom:88.712850px;}
.y126{bottom:88.740150px;}
.y75{bottom:94.099050px;}
.y22b{bottom:94.465350px;}
.y15f{bottom:94.474950px;}
.yaf{bottom:94.810800px;}
.yf2{bottom:95.456550px;}
.yef{bottom:97.448550px;}
.y3e{bottom:102.371550px;}
.y1cb{bottom:103.294950px;}
.y201{bottom:104.950350px;}
.y198{bottom:106.712850px;}
.y125{bottom:106.740150px;}
.yee{bottom:111.848550px;}
.y74{bottom:112.099050px;}
.y22a{bottom:112.465350px;}
.y15e{bottom:112.474950px;}
.yf1{bottom:113.816550px;}
.y3d{bottom:120.371550px;}
.yae{bottom:121.315800px;}
.y1ca{bottom:129.799950px;}
.y229{bottom:130.465350px;}
.y15d{bottom:130.474950px;}
.y200{bottom:131.455350px;}
.yf0{bottom:132.176550px;}
.y197{bottom:133.217850px;}
.y124{bottom:133.245150px;}
.y3c{bottom:138.371550px;}
.y73{bottom:138.604050px;}
.yad{bottom:139.315800px;}
.y1c9{bottom:147.799950px;}
.y1ff{bottom:149.455350px;}
.yed{bottom:150.536550px;}
.y196{bottom:151.217850px;}
.y123{bottom:151.245150px;}
.y3b{bottom:156.371550px;}
.y72{bottom:156.604050px;}
.y228{bottom:156.970350px;}
.y15c{bottom:156.979950px;}
.yac{bottom:157.315800px;}
.y1c8{bottom:165.799950px;}
.y1fe{bottom:167.455350px;}
.yec{bottom:168.896550px;}
.y195{bottom:169.217850px;}
.y122{bottom:169.245150px;}
.y3a{bottom:174.371550px;}
.y227{bottom:174.970350px;}
.y15b{bottom:174.979950px;}
.yab{bottom:175.315800px;}
.y71{bottom:183.109050px;}
.y194{bottom:187.217850px;}
.y121{bottom:187.245150px;}
.yeb{bottom:187.256550px;}
.y1c7{bottom:192.304950px;}
.y39{bottom:192.371550px;}
.y226{bottom:192.970350px;}
.y15a{bottom:192.979950px;}
.yaa{bottom:193.315800px;}
.y1fd{bottom:193.960350px;}
.y70{bottom:201.109050px;}
.y120{bottom:205.245150px;}
.yea{bottom:205.616550px;}
.y1c6{bottom:210.304950px;}
.y225{bottom:210.970350px;}
.ya9{bottom:211.315800px;}
.y1fc{bottom:211.960350px;}
.y193{bottom:213.721650px;}
.y38{bottom:214.623450px;}
.y6f{bottom:219.109050px;}
.y159{bottom:219.484950px;}
.ye9{bottom:223.976550px;}
.y1c5{bottom:228.304950px;}
.ya8{bottom:229.315800px;}
.y1fb{bottom:229.960350px;}
.y11f{bottom:231.750150px;}
.y6e{bottom:237.109050px;}
.y224{bottom:237.475350px;}
.y158{bottom:237.484950px;}
.y161{bottom:241.871700px;}
.y192{bottom:242.020350px;}
.ye8{bottom:242.336550px;}
.y37{bottom:242.927400px;}
.ye1{bottom:244.352550px;}
.y1fa{bottom:247.960350px;}
.y11e{bottom:249.750150px;}
.ya7{bottom:251.560800px;}
.y1c4{bottom:254.809950px;}
.y6d{bottom:255.109050px;}
.y223{bottom:255.475350px;}
.y157{bottom:255.484950px;}
.ye0{bottom:258.752550px;}
.y191{bottom:260.020350px;}
.ye7{bottom:260.696550px;}
.y36{bottom:260.927400px;}
.y1f9{bottom:265.960350px;}
.y11d{bottom:267.750150px;}
.y1c3{bottom:272.809950px;}
.y6c{bottom:273.109050px;}
.y222{bottom:273.475350px;}
.y156{bottom:273.484950px;}
.y190{bottom:278.020350px;}
.ya6{bottom:278.065800px;}
.ye6{bottom:279.056550px;}
.y35{bottom:283.179300px;}
.y11c{bottom:285.750150px;}
.y1c2{bottom:290.809950px;}
.y155{bottom:291.484950px;}
.y1f8{bottom:292.465350px;}
.y18f{bottom:296.020350px;}
.ya5{bottom:296.065800px;}
.ye5{bottom:297.416550px;}
.y6b{bottom:299.614050px;}
.y221{bottom:299.980350px;}
.y11b{bottom:303.750150px;}
.y128{bottom:305.639850px;}
.y154{bottom:309.484950px;}
.y1f7{bottom:310.465350px;}
.y34{bottom:311.483250px;}
.y18e{bottom:314.020350px;}
.ya4{bottom:314.065800px;}
.ye4{bottom:315.776550px;}
.y1c1{bottom:317.313750px;}
.y19c{bottom:317.338650px;}
.y6a{bottom:317.614050px;}
.y220{bottom:317.980350px;}
.y11a{bottom:321.750150px;}
.y127{bottom:327.239850px;}
.y153{bottom:327.484950px;}
.y1f6{bottom:328.465350px;}
.y33{bottom:329.483250px;}
.y18d{bottom:332.020350px;}
.ya3{bottom:332.065800px;}
.ye3{bottom:334.136550px;}
.y69{bottom:335.614050px;}
.y21f{bottom:335.980350px;}
.y152{bottom:345.484950px;}
.y1c0{bottom:347.412450px;}
.y32{bottom:347.483250px;}
.y119{bottom:348.253950px;}
.y18c{bottom:350.020350px;}
.ya2{bottom:350.065800px;}
.ye2{bottom:352.496550px;}
.y68{bottom:353.614050px;}
.y1f5{bottom:354.970350px;}
.y21e{bottom:362.485350px;}
.y151{bottom:363.484950px;}
.y1bf{bottom:365.412450px;}
.y31{bottom:365.483250px;}
.y18b{bottom:368.020350px;}
.ydf{bottom:370.856550px;}
.ya1{bottom:372.310800px;}
.y1f4{bottom:372.970350px;}
.y118{bottom:376.557900px;}
.y67{bottom:380.119050px;}
.y21d{bottom:380.485350px;}
.y150{bottom:381.484950px;}
.ydc{bottom:382.016550px;}
.y1be{bottom:383.412450px;}
.y30{bottom:383.483250px;}
.y18a{bottom:386.020350px;}
.yde{bottom:389.216550px;}
.y1f3{bottom:390.970350px;}
.ydb{bottom:396.416550px;}
.y66{bottom:398.119050px;}
.y21c{bottom:398.485350px;}
.ya0{bottom:398.815800px;}
.y14f{bottom:399.484950px;}
.y1bd{bottom:401.412450px;}
.y2f{bottom:401.483250px;}
.y117{bottom:403.061850px;}
.y189{bottom:404.020350px;}
.ydd{bottom:407.576550px;}
.y65{bottom:416.119050px;}
.y9f{bottom:416.815800px;}
.y1f2{bottom:417.475350px;}
.y14e{bottom:417.484950px;}
.y79{bottom:418.699800px;}
.y1bc{bottom:419.412450px;}
.y2e{bottom:419.483250px;}
.y188{bottom:422.020350px;}
.y21b{bottom:424.990350px;}
.yda{bottom:425.924550px;}
.y116{bottom:433.171800px;}
.y64{bottom:434.119050px;}
.y9e{bottom:434.815800px;}
.y1f1{bottom:435.475350px;}
.y14d{bottom:435.484950px;}
.y1bb{bottom:437.412450px;}
.y2d{bottom:437.483250px;}
.y187{bottom:440.020350px;}
.y78{bottom:440.299800px;}
.y21a{bottom:442.990350px;}
.yd9{bottom:444.284550px;}
.yd6{bottom:446.276550px;}
.y115{bottom:451.171800px;}
.y63{bottom:452.119050px;}
.y9d{bottom:452.815800px;}
.y14c{bottom:453.484950px;}
.y2c{bottom:455.483250px;}
.yd5{bottom:460.676550px;}
.y219{bottom:460.990350px;}
.y77{bottom:461.899800px;}
.y1f0{bottom:461.980350px;}
.yd8{bottom:462.644550px;}
.y1ba{bottom:463.917450px;}
.y186{bottom:466.525350px;}
.y114{bottom:469.171800px;}
.y62{bottom:470.119050px;}
.y14b{bottom:471.484950px;}
.y2b{bottom:473.483250px;}
.y9c{bottom:475.060800px;}
.y1ef{bottom:479.980350px;}
.yd7{bottom:481.004550px;}
.y1b9{bottom:481.917450px;}
.y76{bottom:483.499800px;}
.y185{bottom:484.525350px;}
.y113{bottom:487.171800px;}
.y218{bottom:487.495350px;}
.y61{bottom:488.119050px;}
.y14a{bottom:489.484950px;}
.y2a{bottom:495.735300px;}
.y1ee{bottom:497.980350px;}
.yd4{bottom:499.364550px;}
.y1b8{bottom:499.917450px;}
.y9b{bottom:501.565800px;}
.y184{bottom:502.525350px;}
.y112{bottom:505.171800px;}
.y217{bottom:505.495350px;}
.y149{bottom:507.484950px;}
.y60{bottom:514.623000px;}
.yd3{bottom:517.724550px;}
.y1b7{bottom:517.917450px;}
.y9a{bottom:519.565800px;}
.yd0{bottom:519.716550px;}
.y183{bottom:520.525350px;}
.y111{bottom:523.171800px;}
.y216{bottom:523.495350px;}
.y1ed{bottom:524.485350px;}
.y148{bottom:533.988900px;}
.ycf{bottom:534.116550px;}
.y1b6{bottom:535.917450px;}
.yd2{bottom:536.084550px;}
.y5f{bottom:536.223000px;}
.y99{bottom:537.565800px;}
.y182{bottom:538.525350px;}
.y110{bottom:541.171800px;}
.y1ec{bottom:542.485350px;}
.y215{bottom:550.000350px;}
.y1a{bottom:553.523100px;}
.y1b5{bottom:553.917450px;}
.yd1{bottom:554.444550px;}
.y29{bottom:554.648100px;}
.y98{bottom:555.565800px;}
.y181{bottom:556.525350px;}
.y10f{bottom:559.171800px;}
.y1eb{bottom:560.485350px;}
.y147{bottom:562.292700px;}
.y5e{bottom:566.322600px;}
.y19{bottom:567.923100px;}
.y214{bottom:568.000350px;}
.y28{bottom:569.048100px;}
.yce{bottom:572.804550px;}
.y97{bottom:573.565800px;}
.y180{bottom:574.525350px;}
.y10e{bottom:577.171800px;}
.y146{bottom:580.292700px;}
.y1b4{bottom:580.422450px;}
.y18{bottom:582.323100px;}
.y27{bottom:583.448100px;}
.y5d{bottom:584.322600px;}
.y213{bottom:586.000350px;}
.y1ea{bottom:586.990350px;}
.ycd{bottom:591.164550px;}
.y96{bottom:591.565800px;}
.y17f{bottom:592.525350px;}
.y17{bottom:596.723100px;}
.y26{bottom:597.848100px;}
.y145{bottom:598.292700px;}
.y1b3{bottom:598.422450px;}
.y10d{bottom:599.416800px;}
.y5c{bottom:602.322600px;}
.y1e9{bottom:604.990350px;}
.ycc{bottom:609.524550px;}
.yc9{bottom:609.536550px;}
.y95{bottom:609.565800px;}
.y16{bottom:611.123100px;}
.y25{bottom:612.248100px;}
.y212{bottom:612.505350px;}
.y1b2{bottom:616.422450px;}
.y17e{bottom:619.030350px;}
.y5b{bottom:620.322600px;}
.y1e8{bottom:622.990350px;}
.y144{bottom:624.796800px;}
.y15{bottom:625.523100px;}
.y10c{bottom:625.921800px;}
.y24{bottom:626.648100px;}
.ycb{bottom:627.884550px;}
.y211{bottom:630.505350px;}
.y1b1{bottom:634.422450px;}
.y94{bottom:636.069750px;}
.y17d{bottom:637.030350px;}
.y19b{bottom:639.425250px;}
.y10b{bottom:643.921800px;}
.yca{bottom:646.244550px;}
.y5a{bottom:646.827600px;}
.y14{bottom:648.427050px;}
.y210{bottom:648.505350px;}
.y1e7{bottom:649.495350px;}
.y23{bottom:649.552050px;}
.y143{bottom:653.099550px;}
.y17c{bottom:655.030350px;}
.y1b0{bottom:660.927450px;}
.y10a{bottom:661.921800px;}
.yc8{bottom:664.604550px;}
.y13{bottom:664.627050px;}
.y59{bottom:664.827600px;}
.y22{bottom:665.752050px;}
.y93{bottom:666.177450px;}
.y20f{bottom:666.505350px;}
.y1e6{bottom:667.495350px;}
.y142{bottom:671.099550px;}
.y17b{bottom:673.030350px;}
.y1af{bottom:678.927450px;}
.y109{bottom:679.921800px;}
.y58{bottom:682.827600px;}
.y92{bottom:684.177450px;}
.yc7{bottom:684.656700px;}
.y141{bottom:689.099550px;}
.y17a{bottom:691.030350px;}
.y20e{bottom:693.010350px;}
.y1e5{bottom:694.000350px;}
.y1ae{bottom:696.927450px;}
.y108{bottom:697.921800px;}
.y57{bottom:700.827600px;}
.y91{bottom:702.177450px;}
.y21{bottom:704.749650px;}
.y140{bottom:707.099550px;}
.y20d{bottom:711.010350px;}
.yc6{bottom:711.812550px;}
.y1e4{bottom:712.000350px;}
.y1ad{bottom:714.927450px;}
.y179{bottom:717.535350px;}
.y20{bottom:719.149650px;}
.y107{bottom:724.425600px;}
.y56{bottom:727.332600px;}
.y90{bottom:728.682450px;}
.yc5{bottom:729.812550px;}
.y1ac{bottom:732.927450px;}
.y13f{bottom:733.604550px;}
.y178{bottom:735.535350px;}
.y20c{bottom:737.515350px;}
.y1e3{bottom:738.505350px;}
.y1f{bottom:744.076650px;}
.y55{bottom:745.332600px;}
.y8f{bottom:746.682450px;}
.yc4{bottom:747.812550px;}
.y1ab{bottom:750.927450px;}
.y13e{bottom:751.604550px;}
.y177{bottom:753.535350px;}
.y106{bottom:754.540350px;}
.y20b{bottom:755.515350px;}
.y1e2{bottom:756.505350px;}
.y54{bottom:763.332600px;}
.y8e{bottom:764.682450px;}
.yc3{bottom:765.812550px;}
.y1e{bottom:766.321650px;}
.y1aa{bottom:768.927450px;}
.y13d{bottom:769.604550px;}
.y176{bottom:771.535350px;}
.y105{bottom:772.540350px;}
.y20a{bottom:773.515350px;}
.y53{bottom:781.332600px;}
.y8d{bottom:782.682450px;}
.y1e1{bottom:783.010350px;}
.yc2{bottom:783.812550px;}
.y1d{bottom:784.321650px;}
.y13c{bottom:787.604550px;}
.y175{bottom:789.535350px;}
.y104{bottom:790.540350px;}
.y209{bottom:791.515350px;}
.y164{bottom:792.150150px;}
.y1a9{bottom:795.432450px;}
.y8c{bottom:800.682450px;}
.y1e0{bottom:801.010350px;}
.y1c{bottom:802.321650px;}
.y13b{bottom:805.604550px;}
.y174{bottom:807.535350px;}
.y52{bottom:807.837600px;}
.y1a8{bottom:813.432450px;}
.y163{bottom:813.750150px;}
.y103{bottom:817.045350px;}
.y208{bottom:818.020350px;}
.y8b{bottom:818.682450px;}
.y1df{bottom:819.010350px;}
.yc1{bottom:822.093300px;}
.y173{bottom:825.535350px;}
.y51{bottom:825.837600px;}
.y1b{bottom:828.826650px;}
.y1a7{bottom:831.432450px;}
.y13a{bottom:832.108500px;}
.y102{bottom:835.045350px;}
.y162{bottom:835.350150px;}
.y207{bottom:836.020350px;}
.y8a{bottom:836.682450px;}
.yc0{bottom:840.453300px;}
.ybd{bottom:842.445300px;}
.y172{bottom:843.535350px;}
.y50{bottom:843.837600px;}
.y1de{bottom:845.515350px;}
.y1a6{bottom:849.432450px;}
.y101{bottom:853.045350px;}
.y206{bottom:854.020350px;}
.ybc{bottom:856.845300px;}
.ybf{bottom:858.813300px;}
.y139{bottom:860.411400px;}
.y171{bottom:861.535350px;}
.y89{bottom:863.187450px;}
.y1dd{bottom:863.515350px;}
.y1a5{bottom:867.432450px;}
.y4f{bottom:870.342600px;}
.y100{bottom:871.045350px;}
.ybe{bottom:877.173300px;}
.y138{bottom:878.411400px;}
.y170{bottom:879.535350px;}
.y205{bottom:880.525350px;}
.y88{bottom:881.187450px;}
.y1dc{bottom:881.515350px;}
.y12{bottom:884.242350px;}
.y1a4{bottom:885.432450px;}
.y4e{bottom:888.342600px;}
.ybb{bottom:895.533300px;}
.y137{bottom:896.411400px;}
.y16f{bottom:897.535350px;}
.yff{bottom:897.550350px;}
.y204{bottom:898.525350px;}
.y87{bottom:899.187450px;}
.y1a3{bottom:903.432450px;}
.yba{bottom:904.713300px;}
.y4d{bottom:906.342600px;}
.y1db{bottom:908.020350px;}
.y16e{bottom:915.535350px;}
.yfe{bottom:915.550350px;}
.y203{bottom:916.525350px;}
.y86{bottom:917.187450px;}
.y136{bottom:922.916400px;}
.y4c{bottom:924.342600px;}
.y11{bottom:924.674250px;}
.y1a2{bottom:929.937450px;}
.yb9{bottom:932.241300px;}
.y16d{bottom:933.535350px;}
.yfd{bottom:933.550350px;}
.y1da{bottom:934.525350px;}
.y85{bottom:935.187450px;}
.y135{bottom:940.916400px;}
.yb8{bottom:941.421300px;}
.y4b{bottom:942.342600px;}
.y1a1{bottom:947.937450px;}
.yfc{bottom:951.550350px;}
.y10{bottom:954.662250px;}
.y84{bottom:957.432450px;}
.y134{bottom:958.916400px;}
.y19a{bottom:959.760900px;}
.y16c{bottom:960.040350px;}
.y4a{bottom:960.342600px;}
.y1d9{bottom:961.030350px;}
.y1a0{bottom:965.937450px;}
.y9{bottom:967.036500px;}
.yb7{bottom:968.949300px;}
.yfb{bottom:969.550350px;}
.y83{bottom:975.432450px;}
.y133{bottom:976.916400px;}
.y16b{bottom:978.040350px;}
.y49{bottom:978.342600px;}
.y1d8{bottom:979.030350px;}
.y19f{bottom:983.937450px;}
.yf{bottom:984.650250px;}
.yb5{bottom:987.309300px;}
.y8{bottom:988.455000px;}
.y132{bottom:994.916400px;}
.y16a{bottom:996.040350px;}
.yfa{bottom:996.055350px;}
.y1d7{bottom:997.030350px;}
.y82{bottom:1001.937450px;}
.y48{bottom:1004.846550px;}
.yb6{bottom:1005.669300px;}
.y7{bottom:1009.875000px;}
.y131{bottom:1012.916400px;}
.y169{bottom:1014.040350px;}
.yf9{bottom:1014.055350px;}
.y81{bottom:1019.937450px;}
.y1d6{bottom:1023.535350px;}
.yb4{bottom:1024.017300px;}
.y130{bottom:1030.916400px;}
.y6{bottom:1031.295000px;}
.ye{bottom:1031.653500px;}
.y160{bottom:1032.023700px;}
.y168{bottom:1032.040350px;}
.yf8{bottom:1032.055350px;}
.y80{bottom:1037.937450px;}
.y1d5{bottom:1041.535350px;}
.yb2{bottom:1042.377300px;}
.y19e{bottom:1046.441400px;}
.y12f{bottom:1048.916400px;}
.y167{bottom:1050.040350px;}
.yf7{bottom:1050.055350px;}
.y5{bottom:1052.715000px;}
.y7f{bottom:1055.937450px;}
.y1d4{bottom:1059.535350px;}
.yb3{bottom:1060.737300px;}
.y47{bottom:1061.989500px;}
.y12e{bottom:1066.916400px;}
.y166{bottom:1068.040350px;}
.yd{bottom:1069.155000px;}
.yf6{bottom:1072.300350px;}
.y7e{bottom:1073.937450px;}
.y4{bottom:1074.136500px;}
.y19d{bottom:1076.545350px;}
.yb1{bottom:1079.085300px;}
.y46{bottom:1079.989500px;}
.y12d{bottom:1084.916400px;}
.y1d3{bottom:1086.040350px;}
.yf5{bottom:1090.300350px;}
.y7d{bottom:1091.937450px;}
.y165{bottom:1094.545350px;}
.y3{bottom:1095.375000px;}
.yb0{bottom:1099.137450px;}
.y45{bottom:1102.241400px;}
.y12c{bottom:1102.916400px;}
.y1d2{bottom:1104.040350px;}
.yc{bottom:1106.656500px;}
.yf4{bottom:1112.545350px;}
.y2{bottom:1116.795000px;}
.y7c{bottom:1118.441400px;}
.y1cf{bottom:1118.488800px;}
.y12b{bottom:1120.916400px;}
.y1d1{bottom:1122.040350px;}
.y44{bottom:1130.545350px;}
.y1{bottom:1138.215000px;}
.y12a{bottom:1138.916400px;}
.y1d0{bottom:1140.040350px;}
.y1ce{bottom:1140.088800px;}
.yb{bottom:1144.158000px;}
.y43{bottom:1148.545350px;}
.y1cd{bottom:1161.688800px;}
.y129{bottom:1165.420350px;}
.y42{bottom:1166.545350px;}
.y7b{bottom:1194.698550px;}
.y40{bottom:1203.812100px;}
.y7a{bottom:1210.898550px;}
.hb{height:32.859375px;}
.hc{height:33.257812px;}
.hd{height:34.453125px;}
.h17{height:34.608000px;}
.h4{height:37.415039px;}
.ha{height:38.759766px;}
.h11{height:39.585938px;}
.h16{height:39.984000px;}
.hf{height:41.572266px;}
.h10{height:43.066406px;}
.h19{height:43.926270px;}
.h13{height:45.246094px;}
.h12{height:49.359375px;}
.he{height:49.482422px;}
.h15{height:49.886719px;}
.h2{height:53.350781px;}
.h9{height:53.472656px;}
.h8{height:54.043945px;}
.h14{height:59.378906px;}
.h18{height:71.328000px;}
.h7{height:74.562000px;}
.h6{height:80.070000px;}
.h5{height:108.330000px;}
.h3{height:1262.835000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:892.914000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:83.622000px;}
.x2{left:85.039350px;}
.x12{left:90.091950px;}
.x10{left:97.789350px;}
.x3{left:106.674150px;}
.x7{left:128.304150px;}
.x14{left:132.584700px;}
.x11{left:193.939950px;}
.x5{left:197.736000px;}
.x1{left:216.000000px;}
.x4{left:217.804500px;}
.xd{left:230.491800px;}
.x16{left:300.821550px;}
.x17{left:302.244000px;}
.x15{left:327.401550px;}
.x13{left:332.083950px;}
.x6{left:446.539500px;}
.xc{left:480.472350px;}
.xb{left:537.630000px;}
.xa{left:582.332250px;}
.x9{left:620.710350px;}
.xe{left:622.815300px;}
.x8{left:634.270350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:32.640000pt;}
.ls2{letter-spacing:-5.066667pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.342027pt;}
.lsa{letter-spacing:-0.341333pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.720000pt;}
.ls6{letter-spacing:1.493333pt;}
.ls7{letter-spacing:1.760000pt;}
.ls8{letter-spacing:3.146667pt;}
.wsc{word-spacing:-53.333333pt;}
.wsa{word-spacing:-48.000000pt;}
.wsb{word-spacing:-42.666667pt;}
.ws7{word-spacing:-29.466667pt;}
.ws17{word-spacing:-14.464000pt;}
.wsd{word-spacing:-13.258667pt;}
.ws14{word-spacing:-12.053333pt;}
.ws46{word-spacing:-11.733333pt;}
.ws15{word-spacing:-11.573333pt;}
.ws21{word-spacing:-11.520000pt;}
.ws16{word-spacing:-11.093333pt;}
.ws2d{word-spacing:-9.045333pt;}
.ws45{word-spacing:-6.685067pt;}
.ws19{word-spacing:-2.133333pt;}
.ws1e{word-spacing:-2.080000pt;}
.ws4f{word-spacing:-1.760000pt;}
.ws2f{word-spacing:-1.600000pt;}
.ws51{word-spacing:-1.493333pt;}
.ws3d{word-spacing:-1.173333pt;}
.ws48{word-spacing:-1.120000pt;}
.ws41{word-spacing:-0.906667pt;}
.ws3c{word-spacing:-0.800000pt;}
.ws44{word-spacing:-0.693333pt;}
.ws52{word-spacing:-0.640000pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws4b{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.106667pt;}
.ws2e{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.213333pt;}
.ws1a{word-spacing:0.480000pt;}
.ws3e{word-spacing:0.533333pt;}
.ws49{word-spacing:0.800000pt;}
.ws4d{word-spacing:0.960000pt;}
.ws36{word-spacing:1.066667pt;}
.ws1b{word-spacing:1.280000pt;}
.ws24{word-spacing:1.493333pt;}
.ws27{word-spacing:1.760000pt;}
.ws28{word-spacing:1.813333pt;}
.ws5{word-spacing:1.866667pt;}
.ws26{word-spacing:1.973333pt;}
.ws39{word-spacing:2.026667pt;}
.ws1d{word-spacing:2.186667pt;}
.ws40{word-spacing:2.293333pt;}
.ws47{word-spacing:2.400000pt;}
.ws3b{word-spacing:2.453333pt;}
.ws23{word-spacing:2.933333pt;}
.ws12{word-spacing:3.093333pt;}
.ws18{word-spacing:3.573333pt;}
.ws43{word-spacing:3.626667pt;}
.ws42{word-spacing:3.733333pt;}
.wse{word-spacing:3.786667pt;}
.ws11{word-spacing:4.000000pt;}
.ws35{word-spacing:4.266667pt;}
.ws53{word-spacing:4.480000pt;}
.ws13{word-spacing:4.640000pt;}
.ws4c{word-spacing:4.693333pt;}
.ws50{word-spacing:4.800000pt;}
.ws10{word-spacing:5.066667pt;}
.ws22{word-spacing:5.120000pt;}
.ws4e{word-spacing:5.813333pt;}
.ws25{word-spacing:6.453333pt;}
.ws33{word-spacing:6.506667pt;}
.ws30{word-spacing:6.826667pt;}
.ws3{word-spacing:6.991467pt;}
.ws1{word-spacing:8.268533pt;}
.ws3f{word-spacing:9.013333pt;}
.ws1f{word-spacing:9.024000pt;}
.ws34{word-spacing:9.088000pt;}
.ws32{word-spacing:10.560000pt;}
.ws31{word-spacing:10.773333pt;}
.ws1c{word-spacing:11.040000pt;}
.ws37{word-spacing:15.200000pt;}
.ws20{word-spacing:15.360000pt;}
.ws0{word-spacing:15.953867pt;}
.ws8{word-spacing:24.266667pt;}
.ws38{word-spacing:27.520000pt;}
.ws2{word-spacing:36.429067pt;}
.ws6{word-spacing:41.553867pt;}
.ws4{word-spacing:42.829067pt;}
.ws2b{word-spacing:712.661333pt;}
.ws2a{word-spacing:1008.682667pt;}
.ws2c{word-spacing:1090.944000pt;}
._2d{margin-left:-5.592267pt;}
._6{margin-left:-4.190667pt;}
._12{margin-left:-3.130400pt;}
._7{margin-left:-2.220267pt;}
._0{margin-left:-0.940533pt;}
._a{width:0.968800pt;}
._c{width:1.868533pt;}
._8{width:2.860267pt;}
._9{width:3.790133pt;}
._b{width:5.093333pt;}
._11{width:5.994933pt;}
._10{width:7.077067pt;}
._26{width:8.325067pt;}
._25{width:9.349333pt;}
._e{width:11.002667pt;}
._f{width:13.222133pt;}
._27{width:14.198400pt;}
._23{width:15.263200pt;}
._13{width:16.960000pt;}
._24{width:19.104000pt;}
._29{width:20.192000pt;}
._28{width:21.443467pt;}
._2b{width:23.754667pt;}
._2c{width:25.622933pt;}
._2a{width:27.472000pt;}
._22{width:28.752000pt;}
._3{width:30.247200pt;}
._1{width:38.908267pt;}
._4{width:52.414400pt;}
._19{width:54.316533pt;}
._2{width:67.037600pt;}
._20{width:84.793067pt;}
._21{width:87.651733pt;}
._1c{width:227.925333pt;}
._15{width:597.702933pt;}
._18{width:607.573333pt;}
._1f{width:649.817067pt;}
._1b{width:697.271200pt;}
._1a{width:757.731733pt;}
._14{width:764.334400pt;}
._1d{width:795.946667pt;}
._17{width:810.115733pt;}
._1e{width:816.131733pt;}
._2e{width:956.064000pt;}
._d{width:980.400000pt;}
._5{width:1004.736000pt;}
._16{width:1046.359200pt;}
.fs9{font-size:31.093333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:58.933333pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:90.666667pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:41.645733pt;}
.ya{bottom:49.204667pt;}
.yf3{bottom:68.530267pt;}
.y3f{bottom:74.996933pt;}
.y1cc{bottom:75.817733pt;}
.y202{bottom:77.289200pt;}
.y199{bottom:78.855867pt;}
.y126{bottom:78.880133pt;}
.y75{bottom:83.643600pt;}
.y22b{bottom:83.969200pt;}
.y15f{bottom:83.977733pt;}
.yaf{bottom:84.276267pt;}
.yf2{bottom:84.850267pt;}
.yef{bottom:86.620933pt;}
.y3e{bottom:90.996933pt;}
.y1cb{bottom:91.817733pt;}
.y201{bottom:93.289200pt;}
.y198{bottom:94.855867pt;}
.y125{bottom:94.880133pt;}
.yee{bottom:99.420933pt;}
.y74{bottom:99.643600pt;}
.y22a{bottom:99.969200pt;}
.y15e{bottom:99.977733pt;}
.yf1{bottom:101.170267pt;}
.y3d{bottom:106.996933pt;}
.yae{bottom:107.836267pt;}
.y1ca{bottom:115.377733pt;}
.y229{bottom:115.969200pt;}
.y15d{bottom:115.977733pt;}
.y200{bottom:116.849200pt;}
.yf0{bottom:117.490267pt;}
.y197{bottom:118.415867pt;}
.y124{bottom:118.440133pt;}
.y3c{bottom:122.996933pt;}
.y73{bottom:123.203600pt;}
.yad{bottom:123.836267pt;}
.y1c9{bottom:131.377733pt;}
.y1ff{bottom:132.849200pt;}
.yed{bottom:133.810267pt;}
.y196{bottom:134.415867pt;}
.y123{bottom:134.440133pt;}
.y3b{bottom:138.996933pt;}
.y72{bottom:139.203600pt;}
.y228{bottom:139.529200pt;}
.y15c{bottom:139.537733pt;}
.yac{bottom:139.836267pt;}
.y1c8{bottom:147.377733pt;}
.y1fe{bottom:148.849200pt;}
.yec{bottom:150.130267pt;}
.y195{bottom:150.415867pt;}
.y122{bottom:150.440133pt;}
.y3a{bottom:154.996933pt;}
.y227{bottom:155.529200pt;}
.y15b{bottom:155.537733pt;}
.yab{bottom:155.836267pt;}
.y71{bottom:162.763600pt;}
.y194{bottom:166.415867pt;}
.y121{bottom:166.440133pt;}
.yeb{bottom:166.450267pt;}
.y1c7{bottom:170.937733pt;}
.y39{bottom:170.996933pt;}
.y226{bottom:171.529200pt;}
.y15a{bottom:171.537733pt;}
.yaa{bottom:171.836267pt;}
.y1fd{bottom:172.409200pt;}
.y70{bottom:178.763600pt;}
.y120{bottom:182.440133pt;}
.yea{bottom:182.770267pt;}
.y1c6{bottom:186.937733pt;}
.y225{bottom:187.529200pt;}
.ya9{bottom:187.836267pt;}
.y1fc{bottom:188.409200pt;}
.y193{bottom:189.974800pt;}
.y38{bottom:190.776400pt;}
.y6f{bottom:194.763600pt;}
.y159{bottom:195.097733pt;}
.ye9{bottom:199.090267pt;}
.y1c5{bottom:202.937733pt;}
.ya8{bottom:203.836267pt;}
.y1fb{bottom:204.409200pt;}
.y11f{bottom:206.000133pt;}
.y6e{bottom:210.763600pt;}
.y224{bottom:211.089200pt;}
.y158{bottom:211.097733pt;}
.y161{bottom:214.997067pt;}
.y192{bottom:215.129200pt;}
.ye8{bottom:215.410267pt;}
.y37{bottom:215.935467pt;}
.ye1{bottom:217.202267pt;}
.y1fa{bottom:220.409200pt;}
.y11e{bottom:222.000133pt;}
.ya7{bottom:223.609600pt;}
.y1c4{bottom:226.497733pt;}
.y6d{bottom:226.763600pt;}
.y223{bottom:227.089200pt;}
.y157{bottom:227.097733pt;}
.ye0{bottom:230.002267pt;}
.y191{bottom:231.129200pt;}
.ye7{bottom:231.730267pt;}
.y36{bottom:231.935467pt;}
.y1f9{bottom:236.409200pt;}
.y11d{bottom:238.000133pt;}
.y1c3{bottom:242.497733pt;}
.y6c{bottom:242.763600pt;}
.y222{bottom:243.089200pt;}
.y156{bottom:243.097733pt;}
.y190{bottom:247.129200pt;}
.ya6{bottom:247.169600pt;}
.ye6{bottom:248.050267pt;}
.y35{bottom:251.714933pt;}
.y11c{bottom:254.000133pt;}
.y1c2{bottom:258.497733pt;}
.y155{bottom:259.097733pt;}
.y1f8{bottom:259.969200pt;}
.y18f{bottom:263.129200pt;}
.ya5{bottom:263.169600pt;}
.ye5{bottom:264.370267pt;}
.y6b{bottom:266.323600pt;}
.y221{bottom:266.649200pt;}
.y11b{bottom:270.000133pt;}
.y128{bottom:271.679867pt;}
.y154{bottom:275.097733pt;}
.y1f7{bottom:275.969200pt;}
.y34{bottom:276.874000pt;}
.y18e{bottom:279.129200pt;}
.ya4{bottom:279.169600pt;}
.ye4{bottom:280.690267pt;}
.y1c1{bottom:282.056667pt;}
.y19c{bottom:282.078800pt;}
.y6a{bottom:282.323600pt;}
.y220{bottom:282.649200pt;}
.y11a{bottom:286.000133pt;}
.y127{bottom:290.879867pt;}
.y153{bottom:291.097733pt;}
.y1f6{bottom:291.969200pt;}
.y33{bottom:292.874000pt;}
.y18d{bottom:295.129200pt;}
.ya3{bottom:295.169600pt;}
.ye3{bottom:297.010267pt;}
.y69{bottom:298.323600pt;}
.y21f{bottom:298.649200pt;}
.y152{bottom:307.097733pt;}
.y1c0{bottom:308.811067pt;}
.y32{bottom:308.874000pt;}
.y119{bottom:309.559067pt;}
.y18c{bottom:311.129200pt;}
.ya2{bottom:311.169600pt;}
.ye2{bottom:313.330267pt;}
.y68{bottom:314.323600pt;}
.y1f5{bottom:315.529200pt;}
.y21e{bottom:322.209200pt;}
.y151{bottom:323.097733pt;}
.y1bf{bottom:324.811067pt;}
.y31{bottom:324.874000pt;}
.y18b{bottom:327.129200pt;}
.ydf{bottom:329.650267pt;}
.ya1{bottom:330.942933pt;}
.y1f4{bottom:331.529200pt;}
.y118{bottom:334.718133pt;}
.y67{bottom:337.883600pt;}
.y21d{bottom:338.209200pt;}
.y150{bottom:339.097733pt;}
.ydc{bottom:339.570267pt;}
.y1be{bottom:340.811067pt;}
.y30{bottom:340.874000pt;}
.y18a{bottom:343.129200pt;}
.yde{bottom:345.970267pt;}
.y1f3{bottom:347.529200pt;}
.ydb{bottom:352.370267pt;}
.y66{bottom:353.883600pt;}
.y21c{bottom:354.209200pt;}
.ya0{bottom:354.502933pt;}
.y14f{bottom:355.097733pt;}
.y1bd{bottom:356.811067pt;}
.y2f{bottom:356.874000pt;}
.y117{bottom:358.277200pt;}
.y189{bottom:359.129200pt;}
.ydd{bottom:362.290267pt;}
.y65{bottom:369.883600pt;}
.y9f{bottom:370.502933pt;}
.y1f2{bottom:371.089200pt;}
.y14e{bottom:371.097733pt;}
.y79{bottom:372.177600pt;}
.y1bc{bottom:372.811067pt;}
.y2e{bottom:372.874000pt;}
.y188{bottom:375.129200pt;}
.y21b{bottom:377.769200pt;}
.yda{bottom:378.599600pt;}
.y116{bottom:385.041600pt;}
.y64{bottom:385.883600pt;}
.y9e{bottom:386.502933pt;}
.y1f1{bottom:387.089200pt;}
.y14d{bottom:387.097733pt;}
.y1bb{bottom:388.811067pt;}
.y2d{bottom:388.874000pt;}
.y187{bottom:391.129200pt;}
.y78{bottom:391.377600pt;}
.y21a{bottom:393.769200pt;}
.yd9{bottom:394.919600pt;}
.yd6{bottom:396.690267pt;}
.y115{bottom:401.041600pt;}
.y63{bottom:401.883600pt;}
.y9d{bottom:402.502933pt;}
.y14c{bottom:403.097733pt;}
.y2c{bottom:404.874000pt;}
.yd5{bottom:409.490267pt;}
.y219{bottom:409.769200pt;}
.y77{bottom:410.577600pt;}
.y1f0{bottom:410.649200pt;}
.yd8{bottom:411.239600pt;}
.y1ba{bottom:412.371067pt;}
.y186{bottom:414.689200pt;}
.y114{bottom:417.041600pt;}
.y62{bottom:417.883600pt;}
.y14b{bottom:419.097733pt;}
.y2b{bottom:420.874000pt;}
.y9c{bottom:422.276267pt;}
.y1ef{bottom:426.649200pt;}
.yd7{bottom:427.559600pt;}
.y1b9{bottom:428.371067pt;}
.y76{bottom:429.777600pt;}
.y185{bottom:430.689200pt;}
.y113{bottom:433.041600pt;}
.y218{bottom:433.329200pt;}
.y61{bottom:433.883600pt;}
.y14a{bottom:435.097733pt;}
.y2a{bottom:440.653600pt;}
.y1ee{bottom:442.649200pt;}
.yd4{bottom:443.879600pt;}
.y1b8{bottom:444.371067pt;}
.y9b{bottom:445.836267pt;}
.y184{bottom:446.689200pt;}
.y112{bottom:449.041600pt;}
.y217{bottom:449.329200pt;}
.y149{bottom:451.097733pt;}
.y60{bottom:457.442667pt;}
.yd3{bottom:460.199600pt;}
.y1b7{bottom:460.371067pt;}
.y9a{bottom:461.836267pt;}
.yd0{bottom:461.970267pt;}
.y183{bottom:462.689200pt;}
.y111{bottom:465.041600pt;}
.y216{bottom:465.329200pt;}
.y1ed{bottom:466.209200pt;}
.y148{bottom:474.656800pt;}
.ycf{bottom:474.770267pt;}
.y1b6{bottom:476.371067pt;}
.yd2{bottom:476.519600pt;}
.y5f{bottom:476.642667pt;}
.y99{bottom:477.836267pt;}
.y182{bottom:478.689200pt;}
.y110{bottom:481.041600pt;}
.y1ec{bottom:482.209200pt;}
.y215{bottom:488.889200pt;}
.y1a{bottom:492.020533pt;}
.y1b5{bottom:492.371067pt;}
.yd1{bottom:492.839600pt;}
.y29{bottom:493.020533pt;}
.y98{bottom:493.836267pt;}
.y181{bottom:494.689200pt;}
.y10f{bottom:497.041600pt;}
.y1eb{bottom:498.209200pt;}
.y147{bottom:499.815733pt;}
.y5e{bottom:503.397867pt;}
.y19{bottom:504.820533pt;}
.y214{bottom:504.889200pt;}
.y28{bottom:505.820533pt;}
.yce{bottom:509.159600pt;}
.y97{bottom:509.836267pt;}
.y180{bottom:510.689200pt;}
.y10e{bottom:513.041600pt;}
.y146{bottom:515.815733pt;}
.y1b4{bottom:515.931067pt;}
.y18{bottom:517.620533pt;}
.y27{bottom:518.620533pt;}
.y5d{bottom:519.397867pt;}
.y213{bottom:520.889200pt;}
.y1ea{bottom:521.769200pt;}
.ycd{bottom:525.479600pt;}
.y96{bottom:525.836267pt;}
.y17f{bottom:526.689200pt;}
.y17{bottom:530.420533pt;}
.y26{bottom:531.420533pt;}
.y145{bottom:531.815733pt;}
.y1b3{bottom:531.931067pt;}
.y10d{bottom:532.814933pt;}
.y5c{bottom:535.397867pt;}
.y1e9{bottom:537.769200pt;}
.ycc{bottom:541.799600pt;}
.yc9{bottom:541.810267pt;}
.y95{bottom:541.836267pt;}
.y16{bottom:543.220533pt;}
.y25{bottom:544.220533pt;}
.y212{bottom:544.449200pt;}
.y1b2{bottom:547.931067pt;}
.y17e{bottom:550.249200pt;}
.y5b{bottom:551.397867pt;}
.y1e8{bottom:553.769200pt;}
.y144{bottom:555.374933pt;}
.y15{bottom:556.020533pt;}
.y10c{bottom:556.374933pt;}
.y24{bottom:557.020533pt;}
.ycb{bottom:558.119600pt;}
.y211{bottom:560.449200pt;}
.y1b1{bottom:563.931067pt;}
.y94{bottom:565.395333pt;}
.y17d{bottom:566.249200pt;}
.y19b{bottom:568.378000pt;}
.y10b{bottom:572.374933pt;}
.yca{bottom:574.439600pt;}
.y5a{bottom:574.957867pt;}
.y14{bottom:576.379600pt;}
.y210{bottom:576.449200pt;}
.y1e7{bottom:577.329200pt;}
.y23{bottom:577.379600pt;}
.y143{bottom:580.532933pt;}
.y17c{bottom:582.249200pt;}
.y1b0{bottom:587.491067pt;}
.y10a{bottom:588.374933pt;}
.yc8{bottom:590.759600pt;}
.y13{bottom:590.779600pt;}
.y59{bottom:590.957867pt;}
.y22{bottom:591.779600pt;}
.y93{bottom:592.157733pt;}
.y20f{bottom:592.449200pt;}
.y1e6{bottom:593.329200pt;}
.y142{bottom:596.532933pt;}
.y17b{bottom:598.249200pt;}
.y1af{bottom:603.491067pt;}
.y109{bottom:604.374933pt;}
.y58{bottom:606.957867pt;}
.y92{bottom:608.157733pt;}
.yc7{bottom:608.583733pt;}
.y141{bottom:612.532933pt;}
.y17a{bottom:614.249200pt;}
.y20e{bottom:616.009200pt;}
.y1e5{bottom:616.889200pt;}
.y1ae{bottom:619.491067pt;}
.y108{bottom:620.374933pt;}
.y57{bottom:622.957867pt;}
.y91{bottom:624.157733pt;}
.y21{bottom:626.444133pt;}
.y140{bottom:628.532933pt;}
.y20d{bottom:632.009200pt;}
.yc6{bottom:632.722267pt;}
.y1e4{bottom:632.889200pt;}
.y1ad{bottom:635.491067pt;}
.y179{bottom:637.809200pt;}
.y20{bottom:639.244133pt;}
.y107{bottom:643.933867pt;}
.y56{bottom:646.517867pt;}
.y90{bottom:647.717733pt;}
.yc5{bottom:648.722267pt;}
.y1ac{bottom:651.491067pt;}
.y13f{bottom:652.092933pt;}
.y178{bottom:653.809200pt;}
.y20c{bottom:655.569200pt;}
.y1e3{bottom:656.449200pt;}
.y1f{bottom:661.401467pt;}
.y55{bottom:662.517867pt;}
.y8f{bottom:663.717733pt;}
.yc4{bottom:664.722267pt;}
.y1ab{bottom:667.491067pt;}
.y13e{bottom:668.092933pt;}
.y177{bottom:669.809200pt;}
.y106{bottom:670.702533pt;}
.y20b{bottom:671.569200pt;}
.y1e2{bottom:672.449200pt;}
.y54{bottom:678.517867pt;}
.y8e{bottom:679.717733pt;}
.yc3{bottom:680.722267pt;}
.y1e{bottom:681.174800pt;}
.y1aa{bottom:683.491067pt;}
.y13d{bottom:684.092933pt;}
.y176{bottom:685.809200pt;}
.y105{bottom:686.702533pt;}
.y20a{bottom:687.569200pt;}
.y53{bottom:694.517867pt;}
.y8d{bottom:695.717733pt;}
.y1e1{bottom:696.009200pt;}
.yc2{bottom:696.722267pt;}
.y1d{bottom:697.174800pt;}
.y13c{bottom:700.092933pt;}
.y175{bottom:701.809200pt;}
.y104{bottom:702.702533pt;}
.y209{bottom:703.569200pt;}
.y164{bottom:704.133467pt;}
.y1a9{bottom:707.051067pt;}
.y8c{bottom:711.717733pt;}
.y1e0{bottom:712.009200pt;}
.y1c{bottom:713.174800pt;}
.y13b{bottom:716.092933pt;}
.y174{bottom:717.809200pt;}
.y52{bottom:718.077867pt;}
.y1a8{bottom:723.051067pt;}
.y163{bottom:723.333467pt;}
.y103{bottom:726.262533pt;}
.y208{bottom:727.129200pt;}
.y8b{bottom:727.717733pt;}
.y1df{bottom:728.009200pt;}
.yc1{bottom:730.749600pt;}
.y173{bottom:733.809200pt;}
.y51{bottom:734.077867pt;}
.y1b{bottom:736.734800pt;}
.y1a7{bottom:739.051067pt;}
.y13a{bottom:739.652000pt;}
.y102{bottom:742.262533pt;}
.y162{bottom:742.533467pt;}
.y207{bottom:743.129200pt;}
.y8a{bottom:743.717733pt;}
.yc0{bottom:747.069600pt;}
.ybd{bottom:748.840267pt;}
.y172{bottom:749.809200pt;}
.y50{bottom:750.077867pt;}
.y1de{bottom:751.569200pt;}
.y1a6{bottom:755.051067pt;}
.y101{bottom:758.262533pt;}
.y206{bottom:759.129200pt;}
.ybc{bottom:761.640267pt;}
.ybf{bottom:763.389600pt;}
.y139{bottom:764.810133pt;}
.y171{bottom:765.809200pt;}
.y89{bottom:767.277733pt;}
.y1dd{bottom:767.569200pt;}
.y1a5{bottom:771.051067pt;}
.y4f{bottom:773.637867pt;}
.y100{bottom:774.262533pt;}
.ybe{bottom:779.709600pt;}
.y138{bottom:780.810133pt;}
.y170{bottom:781.809200pt;}
.y205{bottom:782.689200pt;}
.y88{bottom:783.277733pt;}
.y1dc{bottom:783.569200pt;}
.y12{bottom:785.993200pt;}
.y1a4{bottom:787.051067pt;}
.y4e{bottom:789.637867pt;}
.ybb{bottom:796.029600pt;}
.y137{bottom:796.810133pt;}
.y16f{bottom:797.809200pt;}
.yff{bottom:797.822533pt;}
.y204{bottom:798.689200pt;}
.y87{bottom:799.277733pt;}
.y1a3{bottom:803.051067pt;}
.yba{bottom:804.189600pt;}
.y4d{bottom:805.637867pt;}
.y1db{bottom:807.129200pt;}
.y16e{bottom:813.809200pt;}
.yfe{bottom:813.822533pt;}
.y203{bottom:814.689200pt;}
.y86{bottom:815.277733pt;}
.y136{bottom:820.370133pt;}
.y4c{bottom:821.637867pt;}
.y11{bottom:821.932667pt;}
.y1a2{bottom:826.611067pt;}
.yb9{bottom:828.658933pt;}
.y16d{bottom:829.809200pt;}
.yfd{bottom:829.822533pt;}
.y1da{bottom:830.689200pt;}
.y85{bottom:831.277733pt;}
.y135{bottom:836.370133pt;}
.yb8{bottom:836.818933pt;}
.y4b{bottom:837.637867pt;}
.y1a1{bottom:842.611067pt;}
.yfc{bottom:845.822533pt;}
.y10{bottom:848.588667pt;}
.y84{bottom:851.051067pt;}
.y134{bottom:852.370133pt;}
.y19a{bottom:853.120800pt;}
.y16c{bottom:853.369200pt;}
.y4a{bottom:853.637867pt;}
.y1d9{bottom:854.249200pt;}
.y1a0{bottom:858.611067pt;}
.y9{bottom:859.588000pt;}
.yb7{bottom:861.288267pt;}
.yfb{bottom:861.822533pt;}
.y83{bottom:867.051067pt;}
.y133{bottom:868.370133pt;}
.y16b{bottom:869.369200pt;}
.y49{bottom:869.637867pt;}
.y1d8{bottom:870.249200pt;}
.y19f{bottom:874.611067pt;}
.yf{bottom:875.244667pt;}
.yb5{bottom:877.608267pt;}
.y8{bottom:878.626667pt;}
.y132{bottom:884.370133pt;}
.y16a{bottom:885.369200pt;}
.yfa{bottom:885.382533pt;}
.y1d7{bottom:886.249200pt;}
.y82{bottom:890.611067pt;}
.y48{bottom:893.196933pt;}
.yb6{bottom:893.928267pt;}
.y7{bottom:897.666667pt;}
.y131{bottom:900.370133pt;}
.y169{bottom:901.369200pt;}
.yf9{bottom:901.382533pt;}
.y81{bottom:906.611067pt;}
.y1d6{bottom:909.809200pt;}
.yb4{bottom:910.237600pt;}
.y130{bottom:916.370133pt;}
.y6{bottom:916.706667pt;}
.ye{bottom:917.025333pt;}
.y160{bottom:917.354400pt;}
.y168{bottom:917.369200pt;}
.yf8{bottom:917.382533pt;}
.y80{bottom:922.611067pt;}
.y1d5{bottom:925.809200pt;}
.yb2{bottom:926.557600pt;}
.y19e{bottom:930.170133pt;}
.y12f{bottom:932.370133pt;}
.y167{bottom:933.369200pt;}
.yf7{bottom:933.382533pt;}
.y5{bottom:935.746667pt;}
.y7f{bottom:938.611067pt;}
.y1d4{bottom:941.809200pt;}
.yb3{bottom:942.877600pt;}
.y47{bottom:943.990667pt;}
.y12e{bottom:948.370133pt;}
.y166{bottom:949.369200pt;}
.yd{bottom:950.360000pt;}
.yf6{bottom:953.155867pt;}
.y7e{bottom:954.611067pt;}
.y4{bottom:954.788000pt;}
.y19d{bottom:956.929200pt;}
.yb1{bottom:959.186933pt;}
.y46{bottom:959.990667pt;}
.y12d{bottom:964.370133pt;}
.y1d3{bottom:965.369200pt;}
.yf5{bottom:969.155867pt;}
.y7d{bottom:970.611067pt;}
.y165{bottom:972.929200pt;}
.y3{bottom:973.666667pt;}
.yb0{bottom:977.011067pt;}
.y45{bottom:979.770133pt;}
.y12c{bottom:980.370133pt;}
.y1d2{bottom:981.369200pt;}
.yc{bottom:983.694667pt;}
.yf4{bottom:988.929200pt;}
.y2{bottom:992.706667pt;}
.y7c{bottom:994.170133pt;}
.y1cf{bottom:994.212267pt;}
.y12b{bottom:996.370133pt;}
.y1d1{bottom:997.369200pt;}
.y44{bottom:1004.929200pt;}
.y1{bottom:1011.746667pt;}
.y12a{bottom:1012.370133pt;}
.y1d0{bottom:1013.369200pt;}
.y1ce{bottom:1013.412267pt;}
.yb{bottom:1017.029333pt;}
.y43{bottom:1020.929200pt;}
.y1cd{bottom:1032.612267pt;}
.y129{bottom:1035.929200pt;}
.y42{bottom:1036.929200pt;}
.y7b{bottom:1061.954267pt;}
.y40{bottom:1070.055200pt;}
.y7a{bottom:1076.354267pt;}
.hb{height:29.208333pt;}
.hc{height:29.562500pt;}
.hd{height:30.625000pt;}
.h17{height:30.762667pt;}
.h4{height:33.257812pt;}
.ha{height:34.453125pt;}
.h11{height:35.187500pt;}
.h16{height:35.541333pt;}
.hf{height:36.953125pt;}
.h10{height:38.281250pt;}
.h19{height:39.045573pt;}
.h13{height:40.218750pt;}
.h12{height:43.875000pt;}
.he{height:43.984375pt;}
.h15{height:44.343750pt;}
.h2{height:47.422917pt;}
.h9{height:47.531250pt;}
.h8{height:48.039062pt;}
.h14{height:52.781250pt;}
.h18{height:63.402667pt;}
.h7{height:66.277333pt;}
.h6{height:71.173333pt;}
.h5{height:96.293333pt;}
.h3{height:1122.520000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:793.701333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:74.330667pt;}
.x2{left:75.590533pt;}
.x12{left:80.081733pt;}
.x10{left:86.923867pt;}
.x3{left:94.821467pt;}
.x7{left:114.048133pt;}
.x14{left:117.853067pt;}
.x11{left:172.391067pt;}
.x5{left:175.765333pt;}
.x1{left:192.000000pt;}
.x4{left:193.604000pt;}
.xd{left:204.881600pt;}
.x16{left:267.396933pt;}
.x17{left:268.661333pt;}
.x15{left:291.023600pt;}
.x13{left:295.185733pt;}
.x6{left:396.924000pt;}
.xc{left:427.086533pt;}
.xb{left:477.893333pt;}
.xa{left:517.628667pt;}
.x9{left:551.742533pt;}
.xe{left:553.613600pt;}
.x8{left:563.795867pt;}
}




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