
    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_70743046466dbe48d6847363.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972656;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_e704e661a857628bc35ca01e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_05e9d00dcdb9b7d420faedaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_79e5c333ae2ddc29b7d17fb2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_04f95234bc3776462d9965c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_3eabdc952b46a82a3ed9b730.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_e8f519457190800866877150.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_15dfc4494c5a056527e5aa4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_82d0e5ec47605ecfc29cea52.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_604d7be36d53aeba5f837f7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_6b3ada94d2cc870c45c7e1d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.997559;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_517cf1df274dc8b4bde8cda9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_aa1983aa120b205d6274cdc9.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-1.080000px;}
.ls3e{letter-spacing:-0.738000px;}
.ls41{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.303600px;}
.ls1c{letter-spacing:-0.291600px;}
.ls42{letter-spacing:-0.269400px;}
.ls38{letter-spacing:-0.206400px;}
.ls40{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.053280px;}
.ls3f{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.053280px;}
.ls28{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.131040px;}
.ls2e{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.198000px;}
.ls2c{letter-spacing:0.259800px;}
.ls21{letter-spacing:0.259920px;}
.ls29{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.276480px;}
.ls37{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.439920px;}
.ls3d{letter-spacing:0.468000px;}
.ls1d{letter-spacing:0.738000px;}
.ls36{letter-spacing:0.828000px;}
.ls10{letter-spacing:0.900000px;}
.ls1e{letter-spacing:1.620000px;}
.ls13{letter-spacing:2.340000px;}
.ls14{letter-spacing:3.060000px;}
.ls1a{letter-spacing:3.780000px;}
.ls39{letter-spacing:5.220000px;}
.ls4{letter-spacing:6.660000px;}
.lse{letter-spacing:7.380000px;}
.ls18{letter-spacing:8.586720px;}
.ls15{letter-spacing:8.706720px;}
.ls1f{letter-spacing:8.820000px;}
.ls33{letter-spacing:9.540000px;}
.lsd{letter-spacing:10.260000px;}
.ls20{letter-spacing:12.420000px;}
.ls32{letter-spacing:14.580000px;}
.ls35{letter-spacing:15.066720px;}
.ls17{letter-spacing:15.300000px;}
.ls11{letter-spacing:16.020000px;}
.ls24{letter-spacing:19.620000px;}
.ls5{letter-spacing:20.340000px;}
.ls3b{letter-spacing:21.060000px;}
.ls2b{letter-spacing:21.780000px;}
.ls2f{letter-spacing:23.940000px;}
.ls1b{letter-spacing:27.540000px;}
.ls2d{letter-spacing:28.260000px;}
.ls30{letter-spacing:28.440000px;}
.ls25{letter-spacing:28.980000px;}
.ls2a{letter-spacing:31.860000px;}
.ls19{letter-spacing:32.580000px;}
.ls31{letter-spacing:36.180000px;}
.ls34{letter-spacing:44.562720px;}
.ls23{letter-spacing:88.920000px;}
.ls1{letter-spacing:690.120000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.wsd{word-spacing:-59.760000px;}
.ws4{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws16{word-spacing:-15.199800px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.648400px;}
.ws2{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.400000px;}
.ws12{word-spacing:-14.238000px;}
.ws19{word-spacing:-13.968000px;}
.ws1c{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.662000px;}
.ws13{word-spacing:-13.608000px;}
.ws15{word-spacing:-13.518000px;}
.wse{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.482000px;}
.ws11{word-spacing:-13.410000px;}
.ws1d{word-spacing:-13.392000px;}
.ws1e{word-spacing:-13.140000px;}
.ws1a{word-spacing:-12.762000px;}
.ws10{word-spacing:-12.420000px;}
.ws1f{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.wsa{word-spacing:-11.625840px;}
.ws6{word-spacing:-11.340000px;}
.wsc{word-spacing:-10.064160px;}
.wsb{word-spacing:-9.760560px;}
.ws9{word-spacing:0.000000px;}
._40{margin-left:-4.314960px;}
._d{margin-left:-3.129840px;}
._23{margin-left:-2.129040px;}
._1{margin-left:-1.080000px;}
._0{width:1.050480px;}
._2{width:2.559360px;}
._15{width:3.620160px;}
._f{width:4.736880px;}
._6{width:6.114960px;}
._c{width:7.302960px;}
._10{width:8.663760px;}
._5{width:10.333440px;}
._1d{width:11.762640px;}
._7{width:13.154400px;}
._8{width:14.325120px;}
._12{width:16.547760px;}
._9{width:17.763840px;}
._11{width:18.869760px;}
._4{width:20.221920px;}
._a{width:21.364560px;}
._16{width:23.306400px;}
._39{width:24.347520px;}
._b{width:25.665120px;}
._1b{width:26.757840px;}
._13{width:27.760320px;}
._14{width:28.794960px;}
._1a{width:30.417840px;}
._1f{width:31.792320px;}
._33{width:32.808240px;}
._2b{width:33.849360px;}
._2a{width:34.959600px;}
._3{width:36.207840px;}
._19{width:37.768320px;}
._24{width:39.586320px;}
._e{width:40.724640px;}
._21{width:41.930640px;}
._25{width:43.031280px;}
._26{width:44.354640px;}
._20{width:45.541440px;}
._1e{width:47.210400px;}
._1c{width:48.525120px;}
._22{width:50.556960px;}
._27{width:51.931440px;}
._3b{width:53.036640px;}
._3d{width:54.202320px;}
._2f{width:55.636560px;}
._29{width:56.652480px;}
._31{width:57.907440px;}
._2d{width:59.281920px;}
._32{width:60.911280px;}
._38{width:62.508960px;}
._35{width:63.584640px;}
._2c{width:65.138400px;}
._36{width:66.214080px;}
._34{width:67.852800px;}
._3f{width:69.082560px;}
._28{width:70.277760px;}
._3a{width:72.488880px;}
._2e{width:73.564560px;}
._30{width:75.476880px;}
._37{width:76.699440px;}
._3e{width:78.009840px;}
._17{width:81.213840px;}
._18{width:82.758240px;}
._3c{width:88.504560px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsb{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs1{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.980000px;}
.y186{bottom:2.700000px;}
.y11a{bottom:2.880000px;}
.y125{bottom:3.060000px;}
.y184{bottom:3.240000px;}
.y75{bottom:4.170000px;}
.y78{bottom:4.320000px;}
.y77{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y2{bottom:7.200000px;}
.y11c{bottom:10.620000px;}
.y123{bottom:10.800000px;}
.y129{bottom:10.845000px;}
.y220{bottom:11.880000px;}
.y3{bottom:12.240000px;}
.y11d{bottom:18.360000px;}
.y140{bottom:18.390000px;}
.y18c{bottom:18.405000px;}
.y124{bottom:18.540000px;}
.y127{bottom:18.585000px;}
.y120{bottom:26.100000px;}
.y18d{bottom:26.145000px;}
.y143{bottom:26.280000px;}
.y128{bottom:26.325000px;}
.y9{bottom:32.940000px;}
.y11f{bottom:33.840000px;}
.y167{bottom:33.885000px;}
.y144{bottom:34.020000px;}
.y141{bottom:34.050000px;}
.y12a{bottom:34.065000px;}
.y17b{bottom:41.580000px;}
.y165{bottom:41.625000px;}
.y147{bottom:41.760000px;}
.y17a{bottom:41.805000px;}
.y7{bottom:48.600000px;}
.y17d{bottom:49.320000px;}
.y146{bottom:49.500000px;}
.y180{bottom:49.530000px;}
.y166{bottom:49.545000px;}
.y162{bottom:57.240000px;}
.y163{bottom:64.980000px;}
.y168{bottom:65.025000px;}
.y6{bottom:72.900000px;}
.y1a8{bottom:89.820000px;}
.y182{bottom:90.720000px;}
.y13d{bottom:90.900000px;}
.y15d{bottom:91.260000px;}
.y181{bottom:92.880000px;}
.y222{bottom:93.060000px;}
.ye4{bottom:93.600000px;}
.yaf{bottom:94.320000px;}
.y221{bottom:94.860000px;}
.y73{bottom:95.580000px;}
.y21f{bottom:96.300000px;}
.y51{bottom:98.460000px;}
.y173{bottom:103.680000px;}
.y1a7{bottom:106.920000px;}
.y13c{bottom:108.000000px;}
.y15c{bottom:108.540000px;}
.y50{bottom:111.420000px;}
.y72{bottom:112.860000px;}
.ye3{bottom:115.380000px;}
.y1f1{bottom:116.640000px;}
.y172{bottom:120.780000px;}
.y1c3{bottom:122.760000px;}
.y1a6{bottom:124.200000px;}
.y4f{bottom:124.380000px;}
.y13b{bottom:125.280000px;}
.y15b{bottom:125.640000px;}
.yae{bottom:128.700000px;}
.y21e{bottom:132.120000px;}
.ye2{bottom:132.660000px;}
.y1e7{bottom:133.920000px;}
.y71{bottom:134.460000px;}
.y4e{bottom:137.160000px;}
.y171{bottom:138.060000px;}
.y1c2{bottom:140.040000px;}
.y1a5{bottom:141.480000px;}
.y13a{bottom:142.560000px;}
.y15a{bottom:142.920000px;}
.yad{bottom:145.980000px;}
.y21d{bottom:149.400000px;}
.ye1{bottom:149.940000px;}
.y4d{bottom:150.120000px;}
.y1e6{bottom:151.200000px;}
.y170{bottom:155.340000px;}
.y17f{bottom:155.700000px;}
.y70{bottom:156.240000px;}
.y1c1{bottom:157.140000px;}
.y1a4{bottom:158.760000px;}
.y139{bottom:159.840000px;}
.y159{bottom:160.200000px;}
.y4c{bottom:163.080000px;}
.yac{bottom:163.260000px;}
.y21c{bottom:166.680000px;}
.ye0{bottom:168.300000px;}
.y1e5{bottom:168.480000px;}
.y16f{bottom:172.620000px;}
.y6f{bottom:173.520000px;}
.y1c0{bottom:174.420000px;}
.y4b{bottom:176.040000px;}
.y138{bottom:177.120000px;}
.y158{bottom:177.480000px;}
.yab{bottom:180.540000px;}
.y21b{bottom:183.990000px;}
.ydf{bottom:185.610000px;}
.y1e4{bottom:185.790000px;}
.y4a{bottom:189.030000px;}
.y16e{bottom:189.930000px;}
.y6e{bottom:190.830000px;}
.y1bf{bottom:191.730000px;}
.y1a3{bottom:193.350000px;}
.y137{bottom:194.430000px;}
.y157{bottom:194.790000px;}
.yaa{bottom:197.670000px;}
.y21a{bottom:201.270000px;}
.y49{bottom:201.990000px;}
.yde{bottom:202.710000px;}
.y1e3{bottom:203.070000px;}
.y16d{bottom:207.210000px;}
.y6d{bottom:208.110000px;}
.y1be{bottom:209.010000px;}
.y1a2{bottom:210.450000px;}
.y136{bottom:211.530000px;}
.y156{bottom:212.070000px;}
.y48{bottom:214.950000px;}
.y219{bottom:218.370000px;}
.y17e{bottom:218.730000px;}
.y1e2{bottom:220.170000px;}
.ydd{bottom:221.070000px;}
.y16c{bottom:223.590000px;}
.y6c{bottom:225.390000px;}
.y1bd{bottom:226.290000px;}
.y47{bottom:227.730000px;}
.y135{bottom:228.810000px;}
.y155{bottom:229.170000px;}
.ya9{bottom:232.230000px;}
.y218{bottom:235.650000px;}
.y1e1{bottom:237.450000px;}
.y16b{bottom:238.170000px;}
.ydc{bottom:238.350000px;}
.y46{bottom:240.690000px;}
.y6b{bottom:242.670000px;}
.y1bc{bottom:243.570000px;}
.y1a1{bottom:245.010000px;}
.y134{bottom:246.090000px;}
.y154{bottom:246.450000px;}
.ya8{bottom:249.510000px;}
.y16a{bottom:252.930000px;}
.y45{bottom:253.650000px;}
.y1e0{bottom:254.730000px;}
.ydb{bottom:256.710000px;}
.y6a{bottom:259.770000px;}
.y1bb{bottom:260.670000px;}
.y1a0{bottom:262.290000px;}
.y133{bottom:263.370000px;}
.y153{bottom:263.730000px;}
.y17c{bottom:266.070000px;}
.y44{bottom:266.610000px;}
.ya7{bottom:266.790000px;}
.y217{bottom:270.210000px;}
.y1df{bottom:272.010000px;}
.yda{bottom:273.990000px;}
.y69{bottom:277.050000px;}
.y1ba{bottom:277.950000px;}
.y43{bottom:279.570000px;}
.y132{bottom:280.650000px;}
.y152{bottom:281.010000px;}
.ya6{bottom:284.070000px;}
.y216{bottom:287.490000px;}
.y1de{bottom:289.290000px;}
.yd9{bottom:292.170000px;}
.y42{bottom:292.530000px;}
.y68{bottom:294.330000px;}
.y1b9{bottom:295.230000px;}
.y19f{bottom:296.850000px;}
.y131{bottom:297.930000px;}
.y151{bottom:298.290000px;}
.ya5{bottom:301.170000px;}
.y215{bottom:304.770000px;}
.y41{bottom:305.490000px;}
.y1dd{bottom:306.570000px;}
.yd8{bottom:309.450000px;}
.y67{bottom:311.610000px;}
.y1b8{bottom:312.510000px;}
.y19e{bottom:313.950000px;}
.y130{bottom:315.030000px;}
.y150{bottom:315.570000px;}
.y169{bottom:315.750000px;}
.y40{bottom:318.450000px;}
.y214{bottom:321.870000px;}
.y1dc{bottom:323.670000px;}
.yd7{bottom:326.730000px;}
.y66{bottom:328.890000px;}
.y1b7{bottom:329.790000px;}
.y3f{bottom:331.230000px;}
.y12f{bottom:332.310000px;}
.y14f{bottom:332.670000px;}
.ya4{bottom:335.730000px;}
.y213{bottom:339.150000px;}
.y1db{bottom:340.950000px;}
.yd6{bottom:344.010000px;}
.y3e{bottom:344.190000px;}
.y65{bottom:346.170000px;}
.y1b6{bottom:347.070000px;}
.y19d{bottom:348.510000px;}
.y12e{bottom:349.590000px;}
.y14e{bottom:349.950000px;}
.ya3{bottom:353.010000px;}
.y212{bottom:356.430000px;}
.y3d{bottom:357.150000px;}
.y1da{bottom:358.230000px;}
.yd5{bottom:361.290000px;}
.y64{bottom:363.270000px;}
.y1b5{bottom:364.170000px;}
.y19c{bottom:365.790000px;}
.y12d{bottom:366.870000px;}
.y14d{bottom:367.230000px;}
.y3c{bottom:370.110000px;}
.ya2{bottom:370.290000px;}
.y211{bottom:373.710000px;}
.y1d9{bottom:375.510000px;}
.yd4{bottom:378.570000px;}
.y63{bottom:380.550000px;}
.y1b4{bottom:381.450000px;}
.y3b{bottom:383.070000px;}
.y12c{bottom:384.150000px;}
.y14c{bottom:384.510000px;}
.ya1{bottom:387.570000px;}
.y210{bottom:390.990000px;}
.y179{bottom:391.710000px;}
.y1d8{bottom:392.790000px;}
.y164{bottom:394.230000px;}
.yd3{bottom:395.670000px;}
.y3a{bottom:396.030000px;}
.y62{bottom:397.830000px;}
.y1b3{bottom:398.730000px;}
.y19b{bottom:400.350000px;}
.y12b{bottom:401.250000px;}
.y14b{bottom:401.790000px;}
.ya0{bottom:404.670000px;}
.y20f{bottom:408.270000px;}
.y39{bottom:408.990000px;}
.y1d7{bottom:409.890000px;}
.yd2{bottom:412.950000px;}
.y61{bottom:415.110000px;}
.y126{bottom:416.010000px;}
.y19a{bottom:417.450000px;}
.y14a{bottom:418.350000px;}
.y38{bottom:421.950000px;}
.y20e{bottom:425.415000px;}
.y1d6{bottom:427.215000px;}
.yd1{bottom:430.275000px;}
.y60{bottom:432.435000px;}
.y149{bottom:432.795000px;}
.y1b2{bottom:433.335000px;}
.y37{bottom:434.775000px;}
.y9f{bottom:439.275000px;}
.y20d{bottom:442.695000px;}
.y1d5{bottom:444.495000px;}
.yd0{bottom:447.555000px;}
.y36{bottom:447.735000px;}
.y5f{bottom:449.715000px;}
.y1b1{bottom:450.615000px;}
.y199{bottom:452.055000px;}
.y178{bottom:454.575000px;}
.y9e{bottom:456.555000px;}
.y20c{bottom:459.975000px;}
.y35{bottom:460.695000px;}
.y1d4{bottom:461.775000px;}
.y122{bottom:463.395000px;}
.ycf{bottom:464.835000px;}
.y5e{bottom:466.815000px;}
.y1b0{bottom:467.715000px;}
.y198{bottom:469.335000px;}
.y161{bottom:472.575000px;}
.y34{bottom:473.655000px;}
.y9d{bottom:473.835000px;}
.y20b{bottom:477.255000px;}
.y1d3{bottom:479.055000px;}
.yce{bottom:481.935000px;}
.y5d{bottom:484.095000px;}
.y1af{bottom:484.995000px;}
.y33{bottom:486.615000px;}
.y9c{bottom:490.935000px;}
.y20a{bottom:494.535000px;}
.y148{bottom:494.895000px;}
.y121{bottom:495.255000px;}
.y1d2{bottom:496.335000px;}
.ycd{bottom:499.215000px;}
.y32{bottom:499.575000px;}
.y5c{bottom:501.375000px;}
.y1ae{bottom:502.275000px;}
.y197{bottom:503.715000px;}
.y9b{bottom:508.215000px;}
.y209{bottom:511.635000px;}
.y31{bottom:512.535000px;}
.y1d1{bottom:513.435000px;}
.ycc{bottom:516.495000px;}
.y5b{bottom:518.655000px;}
.y1ad{bottom:519.555000px;}
.y196{bottom:520.995000px;}
.y30{bottom:525.315000px;}
.y9a{bottom:525.495000px;}
.y11e{bottom:527.115000px;}
.y208{bottom:528.915000px;}
.y1d0{bottom:530.715000px;}
.y177{bottom:532.875000px;}
.ycb{bottom:533.775000px;}
.y5a{bottom:535.935000px;}
.y1ac{bottom:536.835000px;}
.y2f{bottom:538.275000px;}
.y145{bottom:542.235000px;}
.y99{bottom:542.775000px;}
.y207{bottom:546.195000px;}
.y1cf{bottom:547.995000px;}
.y176{bottom:549.255000px;}
.y160{bottom:550.875000px;}
.yca{bottom:551.055000px;}
.y2e{bottom:551.235000px;}
.y59{bottom:553.035000px;}
.y1ab{bottom:553.935000px;}
.y195{bottom:555.555000px;}
.y98{bottom:560.055000px;}
.y206{bottom:563.475000px;}
.y2d{bottom:564.195000px;}
.y1ce{bottom:565.275000px;}
.yc9{bottom:568.335000px;}
.y58{bottom:570.315000px;}
.y1aa{bottom:571.215000px;}
.y194{bottom:572.835000px;}
.y11b{bottom:574.455000px;}
.y2c{bottom:577.155000px;}
.y97{bottom:577.335000px;}
.y175{bottom:580.755000px;}
.y1cd{bottom:582.555000px;}
.yc8{bottom:585.435000px;}
.y57{bottom:587.595000px;}
.y2b{bottom:590.115000px;}
.y1a9{bottom:591.375000px;}
.y96{bottom:594.435000px;}
.y174{bottom:597.315000px;}
.y15f{bottom:597.855000px;}
.y205{bottom:598.035000px;}
.y1cc{bottom:599.835000px;}
.yc7{bottom:602.715000px;}
.y2a{bottom:603.075000px;}
.y56{bottom:604.875000px;}
.y142{bottom:605.055000px;}
.y119{bottom:606.135000px;}
.y193{bottom:607.215000px;}
.y95{bottom:611.715000px;}
.y15e{bottom:614.415000px;}
.y204{bottom:615.135000px;}
.y29{bottom:616.035000px;}
.y1cb{bottom:616.935000px;}
.yc6{bottom:619.995000px;}
.y55{bottom:622.155000px;}
.y192{bottom:624.495000px;}
.y28{bottom:628.815000px;}
.y94{bottom:628.995000px;}
.y203{bottom:632.415000px;}
.y1ca{bottom:634.215000px;}
.yc5{bottom:637.275000px;}
.y54{bottom:639.435000px;}
.y118{bottom:640.695000px;}
.y27{bottom:641.775000px;}
.y93{bottom:646.275000px;}
.y202{bottom:649.695000px;}
.y1c9{bottom:651.495000px;}
.y13f{bottom:652.395000px;}
.yc4{bottom:654.555000px;}
.y26{bottom:654.735000px;}
.y53{bottom:656.535000px;}
.y117{bottom:657.975000px;}
.y191{bottom:659.055000px;}
.y74{bottom:663.195000px;}
.y92{bottom:663.555000px;}
.y201{bottom:667.005000px;}
.y25{bottom:667.725000px;}
.y1c8{bottom:668.805000px;}
.yc3{bottom:671.865000px;}
.y52{bottom:673.845000px;}
.yfe{bottom:675.285000px;}
.y190{bottom:676.365000px;}
.y24{bottom:680.865000px;}
.y200{bottom:684.285000px;}
.y1c7{bottom:686.085000px;}
.yc2{bottom:688.965000px;}
.y23{bottom:691.125000px;}
.yfd{bottom:692.385000px;}
.y116{bottom:693.645000px;}
.y91{bottom:697.965000px;}
.y13e{bottom:699.765000px;}
.y1ff{bottom:701.565000px;}
.y1c6{bottom:703.365000px;}
.yc1{bottom:706.245000px;}
.y22{bottom:708.405000px;}
.yfc{bottom:710.745000px;}
.y115{bottom:710.925000px;}
.y90{bottom:715.245000px;}
.y1fe{bottom:718.665000px;}
.y1c5{bottom:720.465000px;}
.yc0{bottom:723.525000px;}
.y21{bottom:725.685000px;}
.yfb{bottom:728.025000px;}
.y114{bottom:728.205000px;}
.y8f{bottom:732.525000px;}
.y1fd{bottom:735.945000px;}
.y1f0{bottom:737.745000px;}
.ybf{bottom:740.805000px;}
.y20{bottom:742.245000px;}
.yfa{bottom:745.305000px;}
.y113{bottom:745.485000px;}
.y8e{bottom:749.805000px;}
.y1fc{bottom:753.225000px;}
.y1ef{bottom:755.025000px;}
.y1f{bottom:756.645000px;}
.ybe{bottom:758.085000px;}
.yf9{bottom:762.585000px;}
.y112{bottom:762.765000px;}
.y8d{bottom:767.085000px;}
.y1fb{bottom:770.505000px;}
.y1ee{bottom:772.305000px;}
.y1e{bottom:773.925000px;}
.ybd{bottom:775.365000px;}
.y1c4{bottom:778.245000px;}
.yf8{bottom:779.865000px;}
.y111{bottom:780.045000px;}
.y8c{bottom:784.365000px;}
.y1fa{bottom:787.785000px;}
.y1ed{bottom:789.585000px;}
.y1d{bottom:791.205000px;}
.ybc{bottom:792.465000px;}
.yf7{bottom:796.965000px;}
.y110{bottom:797.145000px;}
.y8b{bottom:801.465000px;}
.y1f9{bottom:805.065000px;}
.y1ec{bottom:806.685000px;}
.y1c{bottom:808.485000px;}
.ybb{bottom:809.745000px;}
.yf6{bottom:814.245000px;}
.y10f{bottom:814.425000px;}
.y8a{bottom:818.745000px;}
.y1f8{bottom:822.165000px;}
.y1eb{bottom:823.965000px;}
.y1b{bottom:825.765000px;}
.yba{bottom:827.025000px;}
.yf5{bottom:831.525000px;}
.y10e{bottom:831.705000px;}
.y89{bottom:836.025000px;}
.y1f7{bottom:839.445000px;}
.y1ea{bottom:841.245000px;}
.y1a{bottom:842.865000px;}
.yb9{bottom:844.305000px;}
.yf4{bottom:848.805000px;}
.y10d{bottom:848.985000px;}
.y88{bottom:853.305000px;}
.y1f6{bottom:853.485000px;}
.y1e9{bottom:858.525000px;}
.y19{bottom:860.145000px;}
.yb8{bottom:861.585000px;}
.y18f{bottom:865.185000px;}
.yf3{bottom:866.085000px;}
.y10c{bottom:867.345000px;}
.y87{bottom:870.585000px;}
.y18{bottom:877.425000px;}
.y18e{bottom:878.145000px;}
.yb7{bottom:878.685000px;}
.yf2{bottom:883.185000px;}
.y10b{bottom:884.625000px;}
.y86{bottom:887.685000px;}
.y18b{bottom:892.905000px;}
.y17{bottom:894.705000px;}
.yb6{bottom:895.965000px;}
.yf1{bottom:900.465000px;}
.y10a{bottom:901.725000px;}
.y85{bottom:904.965000px;}
.y16{bottom:912.030000px;}
.yb5{bottom:913.290000px;}
.y1e8{bottom:916.350000px;}
.yf0{bottom:917.790000px;}
.y109{bottom:919.050000px;}
.y84{bottom:922.290000px;}
.y15{bottom:929.130000px;}
.yb4{bottom:930.570000px;}
.y1f5{bottom:931.110000px;}
.yef{bottom:935.070000px;}
.y108{bottom:936.330000px;}
.y83{bottom:939.570000px;}
.y18a{bottom:940.290000px;}
.y1f4{bottom:946.590000px;}
.y14{bottom:947.130000px;}
.yb3{bottom:947.850000px;}
.yee{bottom:952.350000px;}
.y107{bottom:954.690000px;}
.y82{bottom:956.850000px;}
.y1f3{bottom:962.250000px;}
.yb2{bottom:965.130000px;}
.y13{bottom:967.830000px;}
.yed{bottom:969.630000px;}
.y106{bottom:971.970000px;}
.y81{bottom:974.130000px;}
.yb1{bottom:986.730000px;}
.y189{bottom:987.630000px;}
.y12{bottom:988.530000px;}
.y105{bottom:989.070000px;}
.y80{bottom:991.230000px;}
.yb0{bottom:1004.010000px;}
.y104{bottom:1006.350000px;}
.y7f{bottom:1008.510000px;}
.y11{bottom:1009.230000px;}
.yec{bottom:1021.290000px;}
.y103{bottom:1023.630000px;}
.y1f2{bottom:1024.350000px;}
.y7e{bottom:1025.790000px;}
.y10{bottom:1029.930000px;}
.y188{bottom:1034.970000px;}
.yeb{bottom:1038.570000px;}
.y102{bottom:1041.990000px;}
.y7d{bottom:1043.070000px;}
.yf{bottom:1050.630000px;}
.yea{bottom:1055.850000px;}
.y101{bottom:1059.270000px;}
.y7c{bottom:1060.350000px;}
.ye{bottom:1071.330000px;}
.ye9{bottom:1073.130000px;}
.y100{bottom:1076.550000px;}
.y7b{bottom:1077.630000px;}
.y187{bottom:1082.130000px;}
.ye8{bottom:1090.230000px;}
.yff{bottom:1093.650000px;}
.y7a{bottom:1094.730000px;}
.ye7{bottom:1107.510000px;}
.yd{bottom:1112.010000px;}
.ye6{bottom:1124.790000px;}
.yc{bottom:1129.290000px;}
.ye5{bottom:1142.070000px;}
.y185{bottom:1145.130000px;}
.yb{bottom:1146.570000px;}
.y183{bottom:1160.640000px;}
.ya{bottom:1163.880000px;}
.y79{bottom:1184.940000px;}
.y5{bottom:1187.820000px;}
.y1{bottom:1199.880000px;}
.y76{bottom:1200.060000px;}
.h2c{height:5.729063px;}
.h2e{height:14.796000px;}
.h1f{height:15.480000px;}
.h29{height:15.660000px;}
.h2d{height:17.280000px;}
.h6{height:17.903320px;}
.h18{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:21.420000px;}
.h3{height:27.210938px;}
.h10{height:29.664141px;}
.h20{height:30.960000px;}
.h23{height:31.140000px;}
.h32{height:32.580000px;}
.h4{height:32.835938px;}
.h13{height:35.459648px;}
.h12{height:37.386562px;}
.h1b{height:38.089687px;}
.h2f{height:40.985156px;}
.h21{height:42.213867px;}
.h19{height:44.000156px;}
.h11{height:44.496211px;}
.h14{height:44.518359px;}
.h22{height:46.440000px;}
.h25{height:46.620000px;}
.h24{height:46.656000px;}
.h15{height:46.716680px;}
.hf{height:47.321367px;}
.h5{height:47.344922px;}
.h33{height:48.616875px;}
.h8{height:50.068125px;}
.h1d{height:51.677227px;}
.h30{height:52.971680px;}
.h1a{height:52.998047px;}
.h31{height:53.709961px;}
.he{height:58.621992px;}
.ha{height:58.651172px;}
.h1c{height:59.439023px;}
.hb{height:60.226875px;}
.h1e{height:61.423863px;}
.h2b{height:61.920000px;}
.h26{height:62.100000px;}
.h2a{height:62.136000px;}
.hc{height:62.261719px;}
.h9{height:65.884219px;}
.hd{height:72.562500px;}
.h16{height:73.296000px;}
.h27{height:77.580000px;}
.h28{height:77.616000px;}
.h17{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w7{width:70.956000px;}
.w22{width:84.960000px;}
.w19{width:101.880000px;}
.w1a{width:101.916000px;}
.w12{width:102.096000px;}
.w11{width:109.620000px;}
.w17{width:109.656000px;}
.w13{width:125.820000px;}
.w16{width:126.900000px;}
.wd{width:129.996000px;}
.w18{width:133.020000px;}
.w10{width:134.316000px;}
.wc{width:136.080000px;}
.we{width:136.836000px;}
.wf{width:138.420000px;}
.w15{width:154.290000px;}
.w1c{width:165.990000px;}
.w1b{width:166.500000px;}
.w1f{width:166.680000px;}
.w14{width:184.170000px;}
.wa{width:223.230000px;}
.w9{width:228.450000px;}
.w8{width:228.630000px;}
.w2{width:229.530000px;}
.w1d{width:345.675000px;}
.w20{width:346.035000px;}
.w4{width:434.055000px;}
.w23{width:595.545000px;}
.w6{width:680.325000px;}
.w1e{width:681.045000px;}
.w21{width:682.485000px;}
.wb{width:684.645000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:1.980000px;}
.x2{left:8.100000px;}
.x4{left:9.180000px;}
.x1c{left:11.340000px;}
.x2c{left:17.100000px;}
.x3b{left:19.620000px;}
.x2e{left:21.960000px;}
.x38{left:23.760000px;}
.x32{left:25.020000px;}
.x34{left:26.460000px;}
.x26{left:28.440000px;}
.x30{left:31.320000px;}
.x37{left:33.480000px;}
.x24{left:35.820000px;}
.x22{left:37.620000px;}
.x2a{left:40.365000px;}
.x28{left:42.480000px;}
.x3f{left:51.525000px;}
.x46{left:55.074000px;}
.x3d{left:57.054000px;}
.x1e{left:70.740000px;}
.x49{left:71.994000px;}
.x42{left:79.914000px;}
.x41{left:81.570000px;}
.x1{left:104.256000px;}
.x9{left:106.415987px;}
.x48{left:114.516000px;}
.x18{left:127.655987px;}
.x6{left:133.050000px;}
.xb{left:138.635987px;}
.x45{left:159.869987px;}
.xc{left:165.089987px;}
.x33{left:167.429987px;}
.x43{left:169.410000px;}
.x21{left:185.249987px;}
.x4a{left:199.470000px;}
.x2d{left:217.470000px;}
.xe{left:235.109987px;}
.x7{left:237.090000px;}
.x23{left:243.930000px;}
.x2b{left:250.229987px;}
.x3e{left:273.990000px;}
.x3c{left:284.249987px;}
.x11{left:300.494987px;}
.xf{left:315.074987px;}
.x2f{left:320.295000px;}
.x15{left:325.874987px;}
.xa{left:327.459000px;}
.x20{left:329.619000px;}
.x3{left:333.795000px;}
.x1d{left:335.055000px;}
.x35{left:345.135000px;}
.x5{left:354.855000px;}
.x25{left:374.835000px;}
.x10{left:405.074987px;}
.x14{left:410.114987px;}
.x44{left:418.574987px;}
.x40{left:440.715000px;}
.xd{left:446.474987px;}
.x1a{left:459.254987px;}
.x36{left:478.905000px;}
.x1b{left:480.524987px;}
.x27{left:512.565000px;}
.x19{left:517.604987px;}
.x1f{left:563.505000px;}
.x16{left:565.844987px;}
.x39{left:581.505000px;}
.x12{left:596.984987px;}
.x13{left:612.824987px;}
.x31{left:631.725000px;}
.x29{left:651.705000px;}
.x17{left:661.244987px;}
.x3a{left:684.150000px;}
.x8{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls3e{letter-spacing:-0.656000pt;}
.ls41{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.269867pt;}
.ls1c{letter-spacing:-0.259200pt;}
.ls42{letter-spacing:-0.239467pt;}
.ls38{letter-spacing:-0.183467pt;}
.ls40{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3f{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls28{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.116480pt;}
.ls2e{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.176000pt;}
.ls2c{letter-spacing:0.230933pt;}
.ls21{letter-spacing:0.231040pt;}
.ls29{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.245760pt;}
.ls37{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.391040pt;}
.ls3d{letter-spacing:0.416000pt;}
.ls1d{letter-spacing:0.656000pt;}
.ls36{letter-spacing:0.736000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:3.360000pt;}
.ls39{letter-spacing:4.640000pt;}
.ls4{letter-spacing:5.920000pt;}
.lse{letter-spacing:6.560000pt;}
.ls18{letter-spacing:7.632640pt;}
.ls15{letter-spacing:7.739307pt;}
.ls1f{letter-spacing:7.840000pt;}
.ls33{letter-spacing:8.480000pt;}
.lsd{letter-spacing:9.120000pt;}
.ls20{letter-spacing:11.040000pt;}
.ls32{letter-spacing:12.960000pt;}
.ls35{letter-spacing:13.392640pt;}
.ls17{letter-spacing:13.600000pt;}
.ls11{letter-spacing:14.240000pt;}
.ls24{letter-spacing:17.440000pt;}
.ls5{letter-spacing:18.080000pt;}
.ls3b{letter-spacing:18.720000pt;}
.ls2b{letter-spacing:19.360000pt;}
.ls2f{letter-spacing:21.280000pt;}
.ls1b{letter-spacing:24.480000pt;}
.ls2d{letter-spacing:25.120000pt;}
.ls30{letter-spacing:25.280000pt;}
.ls25{letter-spacing:25.760000pt;}
.ls2a{letter-spacing:28.320000pt;}
.ls19{letter-spacing:28.960000pt;}
.ls31{letter-spacing:32.160000pt;}
.ls34{letter-spacing:39.611307pt;}
.ls23{letter-spacing:79.040000pt;}
.ls1{letter-spacing:613.440000pt;}
.ws8{word-spacing:-64.000000pt;}
.wsd{word-spacing:-53.120000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws16{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.096533pt;}
.wsf{word-spacing:-13.020800pt;}
.ws2{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.800000pt;}
.ws12{word-spacing:-12.656000pt;}
.ws19{word-spacing:-12.416000pt;}
.ws1c{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.144000pt;}
.ws13{word-spacing:-12.096000pt;}
.ws15{word-spacing:-12.016000pt;}
.wse{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.984000pt;}
.ws11{word-spacing:-11.920000pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws1e{word-spacing:-11.680000pt;}
.ws1a{word-spacing:-11.344000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.wsa{word-spacing:-10.334080pt;}
.ws6{word-spacing:-10.080000pt;}
.wsc{word-spacing:-8.945920pt;}
.wsb{word-spacing:-8.676053pt;}
.ws9{word-spacing:0.000000pt;}
._40{margin-left:-3.835520pt;}
._d{margin-left:-2.782080pt;}
._23{margin-left:-1.892480pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.933760pt;}
._2{width:2.274987pt;}
._15{width:3.217920pt;}
._f{width:4.210560pt;}
._6{width:5.435520pt;}
._c{width:6.491520pt;}
._10{width:7.701120pt;}
._5{width:9.185280pt;}
._1d{width:10.455680pt;}
._7{width:11.692800pt;}
._8{width:12.733440pt;}
._12{width:14.709120pt;}
._9{width:15.790080pt;}
._11{width:16.773120pt;}
._4{width:17.975040pt;}
._a{width:18.990720pt;}
._16{width:20.716800pt;}
._39{width:21.642240pt;}
._b{width:22.813440pt;}
._1b{width:23.784747pt;}
._13{width:24.675840pt;}
._14{width:25.595520pt;}
._1a{width:27.038080pt;}
._1f{width:28.259840pt;}
._33{width:29.162880pt;}
._2b{width:30.088320pt;}
._2a{width:31.075200pt;}
._3{width:32.184747pt;}
._19{width:33.571840pt;}
._24{width:35.187840pt;}
._e{width:36.199680pt;}
._21{width:37.271680pt;}
._25{width:38.250027pt;}
._26{width:39.426347pt;}
._20{width:40.481280pt;}
._1e{width:41.964800pt;}
._1c{width:43.133440pt;}
._22{width:44.939520pt;}
._27{width:46.161280pt;}
._3b{width:47.143680pt;}
._3d{width:48.179840pt;}
._2f{width:49.454720pt;}
._29{width:50.357760pt;}
._31{width:51.473280pt;}
._2d{width:52.695040pt;}
._32{width:54.143360pt;}
._38{width:55.563520pt;}
._35{width:56.519680pt;}
._2c{width:57.900800pt;}
._36{width:58.856960pt;}
._34{width:60.313600pt;}
._3f{width:61.406720pt;}
._28{width:62.469120pt;}
._3a{width:64.434560pt;}
._2e{width:65.390720pt;}
._30{width:67.090560pt;}
._37{width:68.177280pt;}
._3e{width:69.342080pt;}
._17{width:72.190080pt;}
._18{width:73.562880pt;}
._3c{width:78.670720pt;}
.fsb{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs1{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.760000pt;}
.y186{bottom:2.400000pt;}
.y11a{bottom:2.560000pt;}
.y125{bottom:2.720000pt;}
.y184{bottom:2.880000pt;}
.y75{bottom:3.706667pt;}
.y78{bottom:3.840000pt;}
.y77{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:6.400000pt;}
.y11c{bottom:9.440000pt;}
.y123{bottom:9.600000pt;}
.y129{bottom:9.640000pt;}
.y220{bottom:10.560000pt;}
.y3{bottom:10.880000pt;}
.y11d{bottom:16.320000pt;}
.y140{bottom:16.346667pt;}
.y18c{bottom:16.360000pt;}
.y124{bottom:16.480000pt;}
.y127{bottom:16.520000pt;}
.y120{bottom:23.200000pt;}
.y18d{bottom:23.240000pt;}
.y143{bottom:23.360000pt;}
.y128{bottom:23.400000pt;}
.y9{bottom:29.280000pt;}
.y11f{bottom:30.080000pt;}
.y167{bottom:30.120000pt;}
.y144{bottom:30.240000pt;}
.y141{bottom:30.266667pt;}
.y12a{bottom:30.280000pt;}
.y17b{bottom:36.960000pt;}
.y165{bottom:37.000000pt;}
.y147{bottom:37.120000pt;}
.y17a{bottom:37.160000pt;}
.y7{bottom:43.200000pt;}
.y17d{bottom:43.840000pt;}
.y146{bottom:44.000000pt;}
.y180{bottom:44.026667pt;}
.y166{bottom:44.040000pt;}
.y162{bottom:50.880000pt;}
.y163{bottom:57.760000pt;}
.y168{bottom:57.800000pt;}
.y6{bottom:64.800000pt;}
.y1a8{bottom:79.840000pt;}
.y182{bottom:80.640000pt;}
.y13d{bottom:80.800000pt;}
.y15d{bottom:81.120000pt;}
.y181{bottom:82.560000pt;}
.y222{bottom:82.720000pt;}
.ye4{bottom:83.200000pt;}
.yaf{bottom:83.840000pt;}
.y221{bottom:84.320000pt;}
.y73{bottom:84.960000pt;}
.y21f{bottom:85.600000pt;}
.y51{bottom:87.520000pt;}
.y173{bottom:92.160000pt;}
.y1a7{bottom:95.040000pt;}
.y13c{bottom:96.000000pt;}
.y15c{bottom:96.480000pt;}
.y50{bottom:99.040000pt;}
.y72{bottom:100.320000pt;}
.ye3{bottom:102.560000pt;}
.y1f1{bottom:103.680000pt;}
.y172{bottom:107.360000pt;}
.y1c3{bottom:109.120000pt;}
.y1a6{bottom:110.400000pt;}
.y4f{bottom:110.560000pt;}
.y13b{bottom:111.360000pt;}
.y15b{bottom:111.680000pt;}
.yae{bottom:114.400000pt;}
.y21e{bottom:117.440000pt;}
.ye2{bottom:117.920000pt;}
.y1e7{bottom:119.040000pt;}
.y71{bottom:119.520000pt;}
.y4e{bottom:121.920000pt;}
.y171{bottom:122.720000pt;}
.y1c2{bottom:124.480000pt;}
.y1a5{bottom:125.760000pt;}
.y13a{bottom:126.720000pt;}
.y15a{bottom:127.040000pt;}
.yad{bottom:129.760000pt;}
.y21d{bottom:132.800000pt;}
.ye1{bottom:133.280000pt;}
.y4d{bottom:133.440000pt;}
.y1e6{bottom:134.400000pt;}
.y170{bottom:138.080000pt;}
.y17f{bottom:138.400000pt;}
.y70{bottom:138.880000pt;}
.y1c1{bottom:139.680000pt;}
.y1a4{bottom:141.120000pt;}
.y139{bottom:142.080000pt;}
.y159{bottom:142.400000pt;}
.y4c{bottom:144.960000pt;}
.yac{bottom:145.120000pt;}
.y21c{bottom:148.160000pt;}
.ye0{bottom:149.600000pt;}
.y1e5{bottom:149.760000pt;}
.y16f{bottom:153.440000pt;}
.y6f{bottom:154.240000pt;}
.y1c0{bottom:155.040000pt;}
.y4b{bottom:156.480000pt;}
.y138{bottom:157.440000pt;}
.y158{bottom:157.760000pt;}
.yab{bottom:160.480000pt;}
.y21b{bottom:163.546667pt;}
.ydf{bottom:164.986667pt;}
.y1e4{bottom:165.146667pt;}
.y4a{bottom:168.026667pt;}
.y16e{bottom:168.826667pt;}
.y6e{bottom:169.626667pt;}
.y1bf{bottom:170.426667pt;}
.y1a3{bottom:171.866667pt;}
.y137{bottom:172.826667pt;}
.y157{bottom:173.146667pt;}
.yaa{bottom:175.706667pt;}
.y21a{bottom:178.906667pt;}
.y49{bottom:179.546667pt;}
.yde{bottom:180.186667pt;}
.y1e3{bottom:180.506667pt;}
.y16d{bottom:184.186667pt;}
.y6d{bottom:184.986667pt;}
.y1be{bottom:185.786667pt;}
.y1a2{bottom:187.066667pt;}
.y136{bottom:188.026667pt;}
.y156{bottom:188.506667pt;}
.y48{bottom:191.066667pt;}
.y219{bottom:194.106667pt;}
.y17e{bottom:194.426667pt;}
.y1e2{bottom:195.706667pt;}
.ydd{bottom:196.506667pt;}
.y16c{bottom:198.746667pt;}
.y6c{bottom:200.346667pt;}
.y1bd{bottom:201.146667pt;}
.y47{bottom:202.426667pt;}
.y135{bottom:203.386667pt;}
.y155{bottom:203.706667pt;}
.ya9{bottom:206.426667pt;}
.y218{bottom:209.466667pt;}
.y1e1{bottom:211.066667pt;}
.y16b{bottom:211.706667pt;}
.ydc{bottom:211.866667pt;}
.y46{bottom:213.946667pt;}
.y6b{bottom:215.706667pt;}
.y1bc{bottom:216.506667pt;}
.y1a1{bottom:217.786667pt;}
.y134{bottom:218.746667pt;}
.y154{bottom:219.066667pt;}
.ya8{bottom:221.786667pt;}
.y16a{bottom:224.826667pt;}
.y45{bottom:225.466667pt;}
.y1e0{bottom:226.426667pt;}
.ydb{bottom:228.186667pt;}
.y6a{bottom:230.906667pt;}
.y1bb{bottom:231.706667pt;}
.y1a0{bottom:233.146667pt;}
.y133{bottom:234.106667pt;}
.y153{bottom:234.426667pt;}
.y17c{bottom:236.506667pt;}
.y44{bottom:236.986667pt;}
.ya7{bottom:237.146667pt;}
.y217{bottom:240.186667pt;}
.y1df{bottom:241.786667pt;}
.yda{bottom:243.546667pt;}
.y69{bottom:246.266667pt;}
.y1ba{bottom:247.066667pt;}
.y43{bottom:248.506667pt;}
.y132{bottom:249.466667pt;}
.y152{bottom:249.786667pt;}
.ya6{bottom:252.506667pt;}
.y216{bottom:255.546667pt;}
.y1de{bottom:257.146667pt;}
.yd9{bottom:259.706667pt;}
.y42{bottom:260.026667pt;}
.y68{bottom:261.626667pt;}
.y1b9{bottom:262.426667pt;}
.y19f{bottom:263.866667pt;}
.y131{bottom:264.826667pt;}
.y151{bottom:265.146667pt;}
.ya5{bottom:267.706667pt;}
.y215{bottom:270.906667pt;}
.y41{bottom:271.546667pt;}
.y1dd{bottom:272.506667pt;}
.yd8{bottom:275.066667pt;}
.y67{bottom:276.986667pt;}
.y1b8{bottom:277.786667pt;}
.y19e{bottom:279.066667pt;}
.y130{bottom:280.026667pt;}
.y150{bottom:280.506667pt;}
.y169{bottom:280.666667pt;}
.y40{bottom:283.066667pt;}
.y214{bottom:286.106667pt;}
.y1dc{bottom:287.706667pt;}
.yd7{bottom:290.426667pt;}
.y66{bottom:292.346667pt;}
.y1b7{bottom:293.146667pt;}
.y3f{bottom:294.426667pt;}
.y12f{bottom:295.386667pt;}
.y14f{bottom:295.706667pt;}
.ya4{bottom:298.426667pt;}
.y213{bottom:301.466667pt;}
.y1db{bottom:303.066667pt;}
.yd6{bottom:305.786667pt;}
.y3e{bottom:305.946667pt;}
.y65{bottom:307.706667pt;}
.y1b6{bottom:308.506667pt;}
.y19d{bottom:309.786667pt;}
.y12e{bottom:310.746667pt;}
.y14e{bottom:311.066667pt;}
.ya3{bottom:313.786667pt;}
.y212{bottom:316.826667pt;}
.y3d{bottom:317.466667pt;}
.y1da{bottom:318.426667pt;}
.yd5{bottom:321.146667pt;}
.y64{bottom:322.906667pt;}
.y1b5{bottom:323.706667pt;}
.y19c{bottom:325.146667pt;}
.y12d{bottom:326.106667pt;}
.y14d{bottom:326.426667pt;}
.y3c{bottom:328.986667pt;}
.ya2{bottom:329.146667pt;}
.y211{bottom:332.186667pt;}
.y1d9{bottom:333.786667pt;}
.yd4{bottom:336.506667pt;}
.y63{bottom:338.266667pt;}
.y1b4{bottom:339.066667pt;}
.y3b{bottom:340.506667pt;}
.y12c{bottom:341.466667pt;}
.y14c{bottom:341.786667pt;}
.ya1{bottom:344.506667pt;}
.y210{bottom:347.546667pt;}
.y179{bottom:348.186667pt;}
.y1d8{bottom:349.146667pt;}
.y164{bottom:350.426667pt;}
.yd3{bottom:351.706667pt;}
.y3a{bottom:352.026667pt;}
.y62{bottom:353.626667pt;}
.y1b3{bottom:354.426667pt;}
.y19b{bottom:355.866667pt;}
.y12b{bottom:356.666667pt;}
.y14b{bottom:357.146667pt;}
.ya0{bottom:359.706667pt;}
.y20f{bottom:362.906667pt;}
.y39{bottom:363.546667pt;}
.y1d7{bottom:364.346667pt;}
.yd2{bottom:367.066667pt;}
.y61{bottom:368.986667pt;}
.y126{bottom:369.786667pt;}
.y19a{bottom:371.066667pt;}
.y14a{bottom:371.866667pt;}
.y38{bottom:375.066667pt;}
.y20e{bottom:378.146667pt;}
.y1d6{bottom:379.746667pt;}
.yd1{bottom:382.466667pt;}
.y60{bottom:384.386667pt;}
.y149{bottom:384.706667pt;}
.y1b2{bottom:385.186667pt;}
.y37{bottom:386.466667pt;}
.y9f{bottom:390.466667pt;}
.y20d{bottom:393.506667pt;}
.y1d5{bottom:395.106667pt;}
.yd0{bottom:397.826667pt;}
.y36{bottom:397.986667pt;}
.y5f{bottom:399.746667pt;}
.y1b1{bottom:400.546667pt;}
.y199{bottom:401.826667pt;}
.y178{bottom:404.066667pt;}
.y9e{bottom:405.826667pt;}
.y20c{bottom:408.866667pt;}
.y35{bottom:409.506667pt;}
.y1d4{bottom:410.466667pt;}
.y122{bottom:411.906667pt;}
.ycf{bottom:413.186667pt;}
.y5e{bottom:414.946667pt;}
.y1b0{bottom:415.746667pt;}
.y198{bottom:417.186667pt;}
.y161{bottom:420.066667pt;}
.y34{bottom:421.026667pt;}
.y9d{bottom:421.186667pt;}
.y20b{bottom:424.226667pt;}
.y1d3{bottom:425.826667pt;}
.yce{bottom:428.386667pt;}
.y5d{bottom:430.306667pt;}
.y1af{bottom:431.106667pt;}
.y33{bottom:432.546667pt;}
.y9c{bottom:436.386667pt;}
.y20a{bottom:439.586667pt;}
.y148{bottom:439.906667pt;}
.y121{bottom:440.226667pt;}
.y1d2{bottom:441.186667pt;}
.ycd{bottom:443.746667pt;}
.y32{bottom:444.066667pt;}
.y5c{bottom:445.666667pt;}
.y1ae{bottom:446.466667pt;}
.y197{bottom:447.746667pt;}
.y9b{bottom:451.746667pt;}
.y209{bottom:454.786667pt;}
.y31{bottom:455.586667pt;}
.y1d1{bottom:456.386667pt;}
.ycc{bottom:459.106667pt;}
.y5b{bottom:461.026667pt;}
.y1ad{bottom:461.826667pt;}
.y196{bottom:463.106667pt;}
.y30{bottom:466.946667pt;}
.y9a{bottom:467.106667pt;}
.y11e{bottom:468.546667pt;}
.y208{bottom:470.146667pt;}
.y1d0{bottom:471.746667pt;}
.y177{bottom:473.666667pt;}
.ycb{bottom:474.466667pt;}
.y5a{bottom:476.386667pt;}
.y1ac{bottom:477.186667pt;}
.y2f{bottom:478.466667pt;}
.y145{bottom:481.986667pt;}
.y99{bottom:482.466667pt;}
.y207{bottom:485.506667pt;}
.y1cf{bottom:487.106667pt;}
.y176{bottom:488.226667pt;}
.y160{bottom:489.666667pt;}
.yca{bottom:489.826667pt;}
.y2e{bottom:489.986667pt;}
.y59{bottom:491.586667pt;}
.y1ab{bottom:492.386667pt;}
.y195{bottom:493.826667pt;}
.y98{bottom:497.826667pt;}
.y206{bottom:500.866667pt;}
.y2d{bottom:501.506667pt;}
.y1ce{bottom:502.466667pt;}
.yc9{bottom:505.186667pt;}
.y58{bottom:506.946667pt;}
.y1aa{bottom:507.746667pt;}
.y194{bottom:509.186667pt;}
.y11b{bottom:510.626667pt;}
.y2c{bottom:513.026667pt;}
.y97{bottom:513.186667pt;}
.y175{bottom:516.226667pt;}
.y1cd{bottom:517.826667pt;}
.yc8{bottom:520.386667pt;}
.y57{bottom:522.306667pt;}
.y2b{bottom:524.546667pt;}
.y1a9{bottom:525.666667pt;}
.y96{bottom:528.386667pt;}
.y174{bottom:530.946667pt;}
.y15f{bottom:531.426667pt;}
.y205{bottom:531.586667pt;}
.y1cc{bottom:533.186667pt;}
.yc7{bottom:535.746667pt;}
.y2a{bottom:536.066667pt;}
.y56{bottom:537.666667pt;}
.y142{bottom:537.826667pt;}
.y119{bottom:538.786667pt;}
.y193{bottom:539.746667pt;}
.y95{bottom:543.746667pt;}
.y15e{bottom:546.146667pt;}
.y204{bottom:546.786667pt;}
.y29{bottom:547.586667pt;}
.y1cb{bottom:548.386667pt;}
.yc6{bottom:551.106667pt;}
.y55{bottom:553.026667pt;}
.y192{bottom:555.106667pt;}
.y28{bottom:558.946667pt;}
.y94{bottom:559.106667pt;}
.y203{bottom:562.146667pt;}
.y1ca{bottom:563.746667pt;}
.yc5{bottom:566.466667pt;}
.y54{bottom:568.386667pt;}
.y118{bottom:569.506667pt;}
.y27{bottom:570.466667pt;}
.y93{bottom:574.466667pt;}
.y202{bottom:577.506667pt;}
.y1c9{bottom:579.106667pt;}
.y13f{bottom:579.906667pt;}
.yc4{bottom:581.826667pt;}
.y26{bottom:581.986667pt;}
.y53{bottom:583.586667pt;}
.y117{bottom:584.866667pt;}
.y191{bottom:585.826667pt;}
.y74{bottom:589.506667pt;}
.y92{bottom:589.826667pt;}
.y201{bottom:592.893333pt;}
.y25{bottom:593.533333pt;}
.y1c8{bottom:594.493333pt;}
.yc3{bottom:597.213333pt;}
.y52{bottom:598.973333pt;}
.yfe{bottom:600.253333pt;}
.y190{bottom:601.213333pt;}
.y24{bottom:605.213333pt;}
.y200{bottom:608.253333pt;}
.y1c7{bottom:609.853333pt;}
.yc2{bottom:612.413333pt;}
.y23{bottom:614.333333pt;}
.yfd{bottom:615.453333pt;}
.y116{bottom:616.573333pt;}
.y91{bottom:620.413333pt;}
.y13e{bottom:622.013333pt;}
.y1ff{bottom:623.613333pt;}
.y1c6{bottom:625.213333pt;}
.yc1{bottom:627.773333pt;}
.y22{bottom:629.693333pt;}
.yfc{bottom:631.773333pt;}
.y115{bottom:631.933333pt;}
.y90{bottom:635.773333pt;}
.y1fe{bottom:638.813333pt;}
.y1c5{bottom:640.413333pt;}
.yc0{bottom:643.133333pt;}
.y21{bottom:645.053333pt;}
.yfb{bottom:647.133333pt;}
.y114{bottom:647.293333pt;}
.y8f{bottom:651.133333pt;}
.y1fd{bottom:654.173333pt;}
.y1f0{bottom:655.773333pt;}
.ybf{bottom:658.493333pt;}
.y20{bottom:659.773333pt;}
.yfa{bottom:662.493333pt;}
.y113{bottom:662.653333pt;}
.y8e{bottom:666.493333pt;}
.y1fc{bottom:669.533333pt;}
.y1ef{bottom:671.133333pt;}
.y1f{bottom:672.573333pt;}
.ybe{bottom:673.853333pt;}
.yf9{bottom:677.853333pt;}
.y112{bottom:678.013333pt;}
.y8d{bottom:681.853333pt;}
.y1fb{bottom:684.893333pt;}
.y1ee{bottom:686.493333pt;}
.y1e{bottom:687.933333pt;}
.ybd{bottom:689.213333pt;}
.y1c4{bottom:691.773333pt;}
.yf8{bottom:693.213333pt;}
.y111{bottom:693.373333pt;}
.y8c{bottom:697.213333pt;}
.y1fa{bottom:700.253333pt;}
.y1ed{bottom:701.853333pt;}
.y1d{bottom:703.293333pt;}
.ybc{bottom:704.413333pt;}
.yf7{bottom:708.413333pt;}
.y110{bottom:708.573333pt;}
.y8b{bottom:712.413333pt;}
.y1f9{bottom:715.613333pt;}
.y1ec{bottom:717.053333pt;}
.y1c{bottom:718.653333pt;}
.ybb{bottom:719.773333pt;}
.yf6{bottom:723.773333pt;}
.y10f{bottom:723.933333pt;}
.y8a{bottom:727.773333pt;}
.y1f8{bottom:730.813333pt;}
.y1eb{bottom:732.413333pt;}
.y1b{bottom:734.013333pt;}
.yba{bottom:735.133333pt;}
.yf5{bottom:739.133333pt;}
.y10e{bottom:739.293333pt;}
.y89{bottom:743.133333pt;}
.y1f7{bottom:746.173333pt;}
.y1ea{bottom:747.773333pt;}
.y1a{bottom:749.213333pt;}
.yb9{bottom:750.493333pt;}
.yf4{bottom:754.493333pt;}
.y10d{bottom:754.653333pt;}
.y88{bottom:758.493333pt;}
.y1f6{bottom:758.653333pt;}
.y1e9{bottom:763.133333pt;}
.y19{bottom:764.573333pt;}
.yb8{bottom:765.853333pt;}
.y18f{bottom:769.053333pt;}
.yf3{bottom:769.853333pt;}
.y10c{bottom:770.973333pt;}
.y87{bottom:773.853333pt;}
.y18{bottom:779.933333pt;}
.y18e{bottom:780.573333pt;}
.yb7{bottom:781.053333pt;}
.yf2{bottom:785.053333pt;}
.y10b{bottom:786.333333pt;}
.y86{bottom:789.053333pt;}
.y18b{bottom:793.693333pt;}
.y17{bottom:795.293333pt;}
.yb6{bottom:796.413333pt;}
.yf1{bottom:800.413333pt;}
.y10a{bottom:801.533333pt;}
.y85{bottom:804.413333pt;}
.y16{bottom:810.693333pt;}
.yb5{bottom:811.813333pt;}
.y1e8{bottom:814.533333pt;}
.yf0{bottom:815.813333pt;}
.y109{bottom:816.933333pt;}
.y84{bottom:819.813333pt;}
.y15{bottom:825.893333pt;}
.yb4{bottom:827.173333pt;}
.y1f5{bottom:827.653333pt;}
.yef{bottom:831.173333pt;}
.y108{bottom:832.293333pt;}
.y83{bottom:835.173333pt;}
.y18a{bottom:835.813333pt;}
.y1f4{bottom:841.413333pt;}
.y14{bottom:841.893333pt;}
.yb3{bottom:842.533333pt;}
.yee{bottom:846.533333pt;}
.y107{bottom:848.613333pt;}
.y82{bottom:850.533333pt;}
.y1f3{bottom:855.333333pt;}
.yb2{bottom:857.893333pt;}
.y13{bottom:860.293333pt;}
.yed{bottom:861.893333pt;}
.y106{bottom:863.973333pt;}
.y81{bottom:865.893333pt;}
.yb1{bottom:877.093333pt;}
.y189{bottom:877.893333pt;}
.y12{bottom:878.693333pt;}
.y105{bottom:879.173333pt;}
.y80{bottom:881.093333pt;}
.yb0{bottom:892.453333pt;}
.y104{bottom:894.533333pt;}
.y7f{bottom:896.453333pt;}
.y11{bottom:897.093333pt;}
.yec{bottom:907.813333pt;}
.y103{bottom:909.893333pt;}
.y1f2{bottom:910.533333pt;}
.y7e{bottom:911.813333pt;}
.y10{bottom:915.493333pt;}
.y188{bottom:919.973333pt;}
.yeb{bottom:923.173333pt;}
.y102{bottom:926.213333pt;}
.y7d{bottom:927.173333pt;}
.yf{bottom:933.893333pt;}
.yea{bottom:938.533333pt;}
.y101{bottom:941.573333pt;}
.y7c{bottom:942.533333pt;}
.ye{bottom:952.293333pt;}
.ye9{bottom:953.893333pt;}
.y100{bottom:956.933333pt;}
.y7b{bottom:957.893333pt;}
.y187{bottom:961.893333pt;}
.ye8{bottom:969.093333pt;}
.yff{bottom:972.133333pt;}
.y7a{bottom:973.093333pt;}
.ye7{bottom:984.453333pt;}
.yd{bottom:988.453333pt;}
.ye6{bottom:999.813333pt;}
.yc{bottom:1003.813333pt;}
.ye5{bottom:1015.173333pt;}
.y185{bottom:1017.893333pt;}
.yb{bottom:1019.173333pt;}
.y183{bottom:1031.680000pt;}
.ya{bottom:1034.560000pt;}
.y79{bottom:1053.280000pt;}
.y5{bottom:1055.840000pt;}
.y1{bottom:1066.560000pt;}
.y76{bottom:1066.720000pt;}
.h2c{height:5.092500pt;}
.h2e{height:13.152000pt;}
.h1f{height:13.760000pt;}
.h29{height:13.920000pt;}
.h2d{height:15.360000pt;}
.h6{height:15.914062pt;}
.h18{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:19.040000pt;}
.h3{height:24.187500pt;}
.h10{height:26.368125pt;}
.h20{height:27.520000pt;}
.h23{height:27.680000pt;}
.h32{height:28.960000pt;}
.h4{height:29.187500pt;}
.h13{height:31.519687pt;}
.h12{height:33.232500pt;}
.h1b{height:33.857500pt;}
.h2f{height:36.431250pt;}
.h21{height:37.523438pt;}
.h19{height:39.111250pt;}
.h11{height:39.552188pt;}
.h14{height:39.571875pt;}
.h22{height:41.280000pt;}
.h25{height:41.440000pt;}
.h24{height:41.472000pt;}
.h15{height:41.525938pt;}
.hf{height:42.063437pt;}
.h5{height:42.084375pt;}
.h33{height:43.215000pt;}
.h8{height:44.505000pt;}
.h1d{height:45.935313pt;}
.h30{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h31{height:47.742188pt;}
.he{height:52.108438pt;}
.ha{height:52.134375pt;}
.h1c{height:52.834688pt;}
.hb{height:53.535000pt;}
.h1e{height:54.598989pt;}
.h2b{height:55.040000pt;}
.h26{height:55.200000pt;}
.h2a{height:55.232000pt;}
.hc{height:55.343750pt;}
.h9{height:58.563750pt;}
.hd{height:64.500000pt;}
.h16{height:65.152000pt;}
.h27{height:68.960000pt;}
.h28{height:68.992000pt;}
.h17{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w7{width:63.072000pt;}
.w22{width:75.520000pt;}
.w19{width:90.560000pt;}
.w1a{width:90.592000pt;}
.w12{width:90.752000pt;}
.w11{width:97.440000pt;}
.w17{width:97.472000pt;}
.w13{width:111.840000pt;}
.w16{width:112.800000pt;}
.wd{width:115.552000pt;}
.w18{width:118.240000pt;}
.w10{width:119.392000pt;}
.wc{width:120.960000pt;}
.we{width:121.632000pt;}
.wf{width:123.040000pt;}
.w15{width:137.146667pt;}
.w1c{width:147.546667pt;}
.w1b{width:148.000000pt;}
.w1f{width:148.160000pt;}
.w14{width:163.706667pt;}
.wa{width:198.426667pt;}
.w9{width:203.066667pt;}
.w8{width:203.226667pt;}
.w2{width:204.026667pt;}
.w1d{width:307.266667pt;}
.w20{width:307.586667pt;}
.w4{width:385.826667pt;}
.w23{width:529.373333pt;}
.w6{width:604.733333pt;}
.w1e{width:605.373333pt;}
.w21{width:606.653333pt;}
.wb{width:608.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:1.760000pt;}
.x2{left:7.200000pt;}
.x4{left:8.160000pt;}
.x1c{left:10.080000pt;}
.x2c{left:15.200000pt;}
.x3b{left:17.440000pt;}
.x2e{left:19.520000pt;}
.x38{left:21.120000pt;}
.x32{left:22.240000pt;}
.x34{left:23.520000pt;}
.x26{left:25.280000pt;}
.x30{left:27.840000pt;}
.x37{left:29.760000pt;}
.x24{left:31.840000pt;}
.x22{left:33.440000pt;}
.x2a{left:35.880000pt;}
.x28{left:37.760000pt;}
.x3f{left:45.800000pt;}
.x46{left:48.954667pt;}
.x3d{left:50.714667pt;}
.x1e{left:62.880000pt;}
.x49{left:63.994667pt;}
.x42{left:71.034667pt;}
.x41{left:72.506667pt;}
.x1{left:92.672000pt;}
.x9{left:94.591988pt;}
.x48{left:101.792000pt;}
.x18{left:113.471988pt;}
.x6{left:118.266667pt;}
.xb{left:123.231988pt;}
.x45{left:142.106655pt;}
.xc{left:146.746655pt;}
.x33{left:148.826655pt;}
.x43{left:150.586667pt;}
.x21{left:164.666655pt;}
.x4a{left:177.306667pt;}
.x2d{left:193.306667pt;}
.xe{left:208.986655pt;}
.x7{left:210.746667pt;}
.x23{left:216.826667pt;}
.x2b{left:222.426655pt;}
.x3e{left:243.546667pt;}
.x3c{left:252.666655pt;}
.x11{left:267.106655pt;}
.xf{left:280.066655pt;}
.x2f{left:284.706667pt;}
.x15{left:289.666655pt;}
.xa{left:291.074667pt;}
.x20{left:292.994667pt;}
.x3{left:296.706667pt;}
.x1d{left:297.826667pt;}
.x35{left:306.786667pt;}
.x5{left:315.426667pt;}
.x25{left:333.186667pt;}
.x10{left:360.066655pt;}
.x14{left:364.546655pt;}
.x44{left:372.066655pt;}
.x40{left:391.746667pt;}
.xd{left:396.866655pt;}
.x1a{left:408.226655pt;}
.x36{left:425.693333pt;}
.x1b{left:427.133322pt;}
.x27{left:455.613333pt;}
.x19{left:460.093322pt;}
.x1f{left:500.893333pt;}
.x16{left:502.973322pt;}
.x39{left:516.893333pt;}
.x12{left:530.653322pt;}
.x13{left:544.733322pt;}
.x31{left:561.533333pt;}
.x29{left:579.293333pt;}
.x17{left:587.773322pt;}
.x3a{left:608.133333pt;}
.x8{left:699.333322pt;}
}




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