
    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_299716383de97ac6387dd5a5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_f08b99aef713bcb9af7f4f1a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_2a0aab316e3e22871c567a31.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7780146d2e7595f7e805cf7e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_ba78e7ab8dbb370dbb9ac19f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2e7e01d03e730a3241f94344.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_28b342d8a30df7ce7f66d703.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_fe33885016fc72a8f39930d6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929688;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_d6779c13a46224e74c624d05.woff')format("woff");}.ff9{font-family:ff9;line-height:0.929688;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_6b8ecba98fea44c56025cbba.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4eeb4b92c74d0a1e2c2aad19.woff')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_807daefeecba05183b6995f0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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_992476662217ec63c6a55b81.woff')format("woff");}.ffd{font-family:ffd;line-height:0.837891;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_c1704e9d6607d5f2cc5b3b70.woff')format("woff");}.ffe{font-family:ffe;line-height:0.837891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls30{letter-spacing:-9.480000px;}
.ls2d{letter-spacing:-3.240000px;}
.ls1e{letter-spacing:-2.880000px;}
.ls21{letter-spacing:-2.808000px;}
.ls2e{letter-spacing:-1.368000px;}
.ls31{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.313800px;}
.ls2{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.269400px;}
.lsa{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.188640px;}
.ls24{letter-spacing:0.199920px;}
.ls16{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.223920px;}
.ls23{letter-spacing:0.269400px;}
.ls20{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.403920px;}
.ls7{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls2b{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls29{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.900000px;}
.ls26{letter-spacing:1.440000px;}
.lse{letter-spacing:2.160000px;}
.ls28{letter-spacing:2.880000px;}
.ls1b{letter-spacing:3.600000px;}
.ls15{letter-spacing:4.320000px;}
.ls25{letter-spacing:5.040000px;}
.ls18{letter-spacing:7.200000px;}
.ls17{letter-spacing:7.920000px;}
.ls6{letter-spacing:11.520000px;}
.ls3{letter-spacing:12.240000px;}
.ls12{letter-spacing:13.680000px;}
.ls27{letter-spacing:17.280000px;}
.ls19{letter-spacing:50.400000px;}
.ls1a{letter-spacing:174.960000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws3{word-spacing:-59.760000px;}
.wsd{word-spacing:-18.864000px;}
.wsf{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.576000px;}
.ws15{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.640000px;}
.ws19{word-spacing:-17.280000px;}
.ws1d{word-spacing:-16.632000px;}
.ws16{word-spacing:-15.192000px;}
.ws13{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.616000px;}
.ws10{word-spacing:-14.328000px;}
.ws18{word-spacing:-12.329400px;}
.ws6{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.817480px;}
.ws14{word-spacing:-11.790600px;}
.ws1c{word-spacing:-8.820000px;}
.ws1e{word-spacing:-8.520000px;}
.ws4{word-spacing:0.000000px;}
._34{margin-left:-9.036000px;}
._e{margin-left:-7.776000px;}
._2{margin-left:-6.480000px;}
._12{margin-left:-5.472000px;}
._3{margin-left:-4.392000px;}
._0{margin-left:-2.880000px;}
._1{margin-left:-1.224000px;}
._4{width:1.032000px;}
._9{width:2.040000px;}
._5{width:3.084000px;}
._16{width:4.224000px;}
._b{width:5.256000px;}
._17{width:6.480000px;}
._18{width:7.920000px;}
._f{width:9.648000px;}
._10{width:10.656000px;}
._6{width:11.712000px;}
._7{width:12.840000px;}
._8{width:14.568000px;}
._d{width:16.212000px;}
._a{width:19.584000px;}
._15{width:20.664000px;}
._19{width:21.744000px;}
._2b{width:23.400000px;}
._30{width:25.416000px;}
._13{width:26.856000px;}
._14{width:27.864000px;}
._33{width:28.968000px;}
._c{width:30.240000px;}
._50{width:31.440000px;}
._1c{width:32.616000px;}
._51{width:33.624000px;}
._2f{width:35.292000px;}
._3d{width:40.104000px;}
._38{width:42.192000px;}
._36{width:43.848000px;}
._35{width:45.252000px;}
._37{width:48.096000px;}
._4e{width:51.264000px;}
._4f{width:53.712000px;}
._4b{width:54.864000px;}
._47{width:57.096000px;}
._3f{width:58.176000px;}
._39{width:65.124000px;}
._11{width:66.960000px;}
._29{width:68.364000px;}
._1f{width:70.308000px;}
._3a{width:73.188000px;}
._49{width:75.096000px;}
._26{width:78.372000px;}
._22{width:83.376000px;}
._43{width:84.600000px;}
._32{width:86.340000px;}
._2e{width:90.000000px;}
._41{width:91.512000px;}
._2c{width:92.604000px;}
._3e{width:95.112000px;}
._1a{width:98.832000px;}
._45{width:100.044000px;}
._28{width:101.820000px;}
._21{width:102.852000px;}
._4a{width:104.472000px;}
._25{width:110.124000px;}
._42{width:112.464000px;}
._23{width:114.732000px;}
._2a{width:117.912000px;}
._2d{width:120.792000px;}
._31{width:126.252000px;}
._1d{width:138.276000px;}
._3b{width:144.864000px;}
._27{width:149.868000px;}
._4c{width:163.128000px;}
._1e{width:171.900000px;}
._24{width:177.300000px;}
._4d{width:181.128000px;}
._20{width:185.940000px;}
._48{width:190.944000px;}
._1b{width:194.580000px;}
._44{width:200.520000px;}
._3c{width:209.376000px;}
._46{width:215.856000px;}
._40{width:301.464000px;}
.fc2{color:rgb(32,33,34);}
.fc6{color:rgb(31,31,31);}
.fc5{color:rgb(84,84,84);}
.fc4{color:rgb(71,71,71);}
.fc3{color:rgb(10,10,10);}
.fc1{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:14.220000px;}
.y72{bottom:14.250000px;}
.yad{bottom:14.265000px;}
.y6a{bottom:14.400000px;}
.y129{bottom:14.430000px;}
.y9e{bottom:14.445000px;}
.y88{bottom:21.240000px;}
.y151{bottom:26.280000px;}
.y18b{bottom:26.310000px;}
.y158{bottom:26.325000px;}
.y156{bottom:26.460000px;}
.y175{bottom:26.490000px;}
.y112{bottom:45.180000px;}
.y6c{bottom:45.360000px;}
.y71{bottom:45.390000px;}
.y90{bottom:45.405000px;}
.ya4{bottom:52.200000px;}
.yc9{bottom:52.245000px;}
.y154{bottom:57.240000px;}
.y19a{bottom:57.270000px;}
.y16f{bottom:57.420000px;}
.y17a{bottom:57.465000px;}
.y2{bottom:58.860000px;}
.y8a{bottom:76.320000px;}
.yfa{bottom:76.365000px;}
.y10e{bottom:76.500000px;}
.y85{bottom:76.545000px;}
.y1{bottom:80.820000px;}
.y195{bottom:88.380000px;}
.y17e{bottom:88.590000px;}
.ye5{bottom:107.460000px;}
.y116{bottom:107.490000px;}
.y1e1{bottom:108.900000px;}
.y43{bottom:109.440000px;}
.y99{bottom:110.340000px;}
.y137{bottom:113.760000px;}
.y4f{bottom:114.660000px;}
.y3d{bottom:115.020000px;}
.y14f{bottom:117.720000px;}
.y7f{bottom:119.160000px;}
.y17d{bottom:119.550000px;}
.y24{bottom:120.240000px;}
.y121{bottom:120.960000px;}
.y10c{bottom:122.220000px;}
.y1c6{bottom:124.560000px;}
.y63{bottom:125.460000px;}
.yd2{bottom:125.820000px;}
.y42{bottom:126.720000px;}
.y98{bottom:128.700000px;}
.y193{bottom:129.060000px;}
.y46{bottom:131.940000px;}
.y1b6{bottom:133.740000px;}
.y97{bottom:133.920000px;}
.y21b{bottom:136.260000px;}
.y1fe{bottom:137.340000px;}
.y1e0{bottom:140.580000px;}
.y41{bottom:144.000000px;}
.y136{bottom:144.720000px;}
.y45{bottom:145.800000px;}
.y3c{bottom:146.160000px;}
.y96{bottom:147.960000px;}
.y14e{bottom:148.860000px;}
.y40{bottom:149.220000px;}
.y23{bottom:151.200000px;}
.y120{bottom:151.920000px;}
.y10b{bottom:153.900000px;}
.yb5{bottom:155.160000px;}
.y16c{bottom:155.340000px;}
.y62{bottom:156.420000px;}
.yd1{bottom:156.960000px;}
.y4e{bottom:161.100000px;}
.y21a{bottom:162.180000px;}
.y3f{bottom:163.080000px;}
.y1b5{bottom:164.880000px;}
.ye7{bottom:165.960000px;}
.y4d{bottom:166.320000px;}
.y1fd{bottom:168.480000px;}
.yf6{bottom:169.740000px;}
.y1a0{bottom:170.640000px;}
.y1df{bottom:172.440000px;}
.y135{bottom:175.860000px;}
.y3b{bottom:177.120000px;}
.y7e{bottom:177.300000px;}
.y4c{bottom:178.380000px;}
.y22{bottom:182.340000px;}
.y4b{bottom:183.600000px;}
.yb4{bottom:186.300000px;}
.y16b{bottom:186.480000px;}
.y61{bottom:187.560000px;}
.yd0{bottom:187.920000px;}
.y219{bottom:188.100000px;}
.y14d{bottom:191.880000px;}
.y11f{bottom:194.940000px;}
.y4a{bottom:197.460000px;}
.y1fc{bottom:199.440000px;}
.y192{bottom:203.970000px;}
.y1de{bottom:204.330000px;}
.y1b4{bottom:207.930000px;}
.y3a{bottom:208.290000px;}
.ye6{bottom:209.190000px;}
.y14c{bottom:209.370000px;}
.y21{bottom:213.330000px;}
.y218{bottom:214.050000px;}
.y19f{bottom:214.410000px;}
.y16a{bottom:217.470000px;}
.y60{bottom:218.550000px;}
.y134{bottom:218.910000px;}
.ycf{bottom:219.090000px;}
.y1c5{bottom:219.270000px;}
.y7d{bottom:220.350000px;}
.y95{bottom:223.770000px;}
.y11e{bottom:226.110000px;}
.ye4{bottom:226.650000px;}
.yb3{bottom:229.350000px;}
.y1fb{bottom:230.610000px;}
.yf5{bottom:232.590000px;}
.y1dd{bottom:236.010000px;}
.y133{bottom:236.370000px;}
.y1b3{bottom:238.890000px;}
.y39{bottom:239.250000px;}
.y217{bottom:239.790000px;}
.y10a{bottom:243.210000px;}
.y20{bottom:244.470000px;}
.y3e{bottom:246.090000px;}
.y5f{bottom:249.690000px;}
.yce{bottom:250.050000px;}
.y7c{bottom:251.490000px;}
.yb2{bottom:260.490000px;}
.y1fa{bottom:261.570000px;}
.y216{bottom:265.710000px;}
.y94{bottom:266.790000px;}
.ycd{bottom:267.510000px;}
.y11d{bottom:269.130000px;}
.y38{bottom:270.390000px;}
.y215{bottom:270.930000px;}
.y14b{bottom:272.190000px;}
.y1f{bottom:275.430000px;}
.y44{bottom:277.230000px;}
.y191{bottom:278.850000px;}
.y5e{bottom:280.650000px;}
.y1b2{bottom:282.090000px;}
.y17c{bottom:282.810000px;}
.y214{bottom:282.990000px;}
.y109{bottom:286.230000px;}
.y213{bottom:288.210000px;}
.y169{bottom:291.630000px;}
.y1f9{bottom:292.710000px;}
.y1dc{bottom:294.150000px;}
.y7b{bottom:294.510000px;}
.yf4{bottom:295.410000px;}
.y93{bottom:297.930000px;}
.y132{bottom:299.190000px;}
.ycc{bottom:299.370000px;}
.y37{bottom:301.350000px;}
.y212{bottom:302.070000px;}
.yb1{bottom:303.510000px;}
.y14a{bottom:304.050000px;}
.y1e{bottom:306.570000px;}
.y5d{bottom:311.790000px;}
.y11c{bottom:312.150000px;}
.y1b1{bottom:313.050000px;}
.y108{bottom:317.190000px;}
.y19e{bottom:320.250000px;}
.y168{bottom:322.590000px;}
.y1f8{bottom:323.670000px;}
.y1db{bottom:325.290000px;}
.y7a{bottom:325.470000px;}
.y131{bottom:331.050000px;}
.y36{bottom:332.490000px;}
.yb0{bottom:334.470000px;}
.y149{bottom:335.730000px;}
.y1d{bottom:337.530000px;}
.y51{bottom:339.330000px;}
.y92{bottom:340.950000px;}
.y5c{bottom:342.750000px;}
.y11b{bottom:343.290000px;}
.y1b0{bottom:344.010000px;}
.y1c4{bottom:344.910000px;}
.y211{bottom:346.530000px;}
.y107{bottom:348.330000px;}
.ye3{bottom:351.570000px;}
.y190{bottom:353.550000px;}
.y167{bottom:353.730000px;}
.y1f7{bottom:354.810000px;}
.y1da{bottom:356.250000px;}
.y79{bottom:356.610000px;}
.y17b{bottom:357.690000px;}
.yf3{bottom:358.230000px;}
.ycb{bottom:362.190000px;}
.y130{bottom:362.730000px;}
.y35{bottom:363.450000px;}
.yaf{bottom:365.610000px;}
.y1c{bottom:368.670000px;}
.y5b{bottom:373.890000px;}
.y11a{bottom:374.250000px;}
.y1af{bottom:375.150000px;}
.y1c3{bottom:376.770000px;}
.y210{bottom:377.490000px;}
.y106{bottom:379.290000px;}
.y91{bottom:383.970000px;}
.y1f6{bottom:385.770000px;}
.y1d9{bottom:387.390000px;}
.y78{bottom:387.570000px;}
.yca{bottom:394.050000px;}
.y34{bottom:394.590000px;}
.y19d{bottom:395.130000px;}
.y166{bottom:396.750000px;}
.y148{bottom:398.550000px;}
.y1b{bottom:399.630000px;}
.y8f{bottom:401.430000px;}
.y5a{bottom:404.850000px;}
.yae{bottom:408.630000px;}
.y105{bottom:410.430000px;}
.y1f5{bottom:416.910000px;}
.y119{bottom:417.270000px;}
.y1ae{bottom:418.170000px;}
.y1d8{bottom:418.350000px;}
.y77{bottom:418.710000px;}
.yf2{bottom:421.050000px;}
.y33{bottom:425.550000px;}
.yc8{bottom:425.730000px;}
.yac{bottom:426.090000px;}
.y12f{bottom:426.450000px;}
.y165{bottom:427.710000px;}
.y18f{bottom:428.430000px;}
.y147{bottom:430.410000px;}
.y1a{bottom:430.770000px;}
.y118{bottom:434.730000px;}
.y59{bottom:435.810000px;}
.y1c2{bottom:439.635000px;}
.ye2{bottom:440.715000px;}
.y1ad{bottom:449.355000px;}
.y104{bottom:453.495000px;}
.y32{bottom:456.555000px;}
.yab{bottom:457.995000px;}
.y12e{bottom:458.175000px;}
.y164{bottom:458.895000px;}
.y1f4{bottom:459.975000px;}
.y19{bottom:461.775000px;}
.y146{bottom:462.315000px;}
.y8e{bottom:464.295000px;}
.y58{bottom:466.995000px;}
.y19c{bottom:470.055000px;}
.y20f{bottom:470.775000px;}
.y1c1{bottom:471.495000px;}
.ye1{bottom:471.855000px;}
.y18e{bottom:472.395000px;}
.y179{bottom:476.355000px;}
.y76{bottom:479.235000px;}
.y1ac{bottom:480.315000px;}
.y1d7{bottom:480.495000px;}
.yf1{bottom:484.095000px;}
.y103{bottom:484.455000px;}
.y31{bottom:487.695000px;}
.yaa{bottom:489.675000px;}
.y163{bottom:489.855000px;}
.y12d{bottom:490.035000px;}
.y18{bottom:492.915000px;}
.y8d{bottom:496.155000px;}
.y117{bottom:497.595000px;}
.y57{bottom:497.955000px;}
.y20e{bottom:501.735000px;}
.ye0{bottom:502.815000px;}
.y1f3{bottom:502.995000px;}
.y1c0{bottom:503.175000px;}
.y1ab{bottom:511.455000px;}
.y19b{bottom:513.795000px;}
.yc7{bottom:515.055000px;}
.yf0{bottom:515.775000px;}
.y30{bottom:518.655000px;}
.y178{bottom:520.095000px;}
.y1f2{bottom:520.455000px;}
.y162{bottom:520.995000px;}
.ya9{bottom:521.535000px;}
.y17{bottom:523.875000px;}
.y145{bottom:525.135000px;}
.y102{bottom:527.655000px;}
.y56{bottom:529.095000px;}
.y20c{bottom:532.875000px;}
.y1bf{bottom:535.035000px;}
.yc6{bottom:535.755000px;}
.y20d{bottom:539.715000px;}
.y75{bottom:542.055000px;}
.y1aa{bottom:542.415000px;}
.y1d6{bottom:542.595000px;}
.ydf{bottom:545.835000px;}
.y18d{bottom:547.095000px;}
.y12c{bottom:548.175000px;}
.y2f{bottom:549.795000px;}
.y161{bottom:551.955000px;}
.y1f1{bottom:552.315000px;}
.ya8{bottom:553.395000px;}
.y16{bottom:555.015000px;}
.yc5{bottom:556.455000px;}
.y144{bottom:556.995000px;}
.y8c{bottom:558.975000px;}
.y55{bottom:560.055000px;}
.y20b{bottom:563.835000px;}
.y177{bottom:564.015000px;}
.y101{bottom:570.675000px;}
.yde{bottom:576.975000px;}
.yef{bottom:578.595000px;}
.y12b{bottom:579.135000px;}
.y2e{bottom:580.755000px;}
.y160{bottom:583.095000px;}
.y1f0{bottom:583.995000px;}
.ya7{bottom:585.075000px;}
.y1a9{bottom:585.435000px;}
.y1d5{bottom:585.615000px;}
.y15{bottom:585.975000px;}
.y143{bottom:588.675000px;}
.y54{bottom:591.195000px;}
.y115{bottom:591.555000px;}
.y20a{bottom:594.975000px;}
.y1be{bottom:597.855000px;}
.yc4{bottom:599.475000px;}
.y74{bottom:604.875000px;}
.y176{bottom:607.755000px;}
.y12a{bottom:610.275000px;}
.y2d{bottom:611.895000px;}
.y100{bottom:613.695000px;}
.y1ef{bottom:615.855000px;}
.y1a8{bottom:616.575000px;}
.y1d4{bottom:616.755000px;}
.ya6{bottom:616.935000px;}
.y14{bottom:617.115000px;}
.y50{bottom:618.735000px;}
.ydd{bottom:619.995000px;}
.y142{bottom:620.535000px;}
.y8b{bottom:621.795000px;}
.y18c{bottom:621.975000px;}
.y53{bottom:622.155000px;}
.y209{bottom:625.935000px;}
.y15f{bottom:626.115000px;}
.y1bd{bottom:629.715000px;}
.yc3{bottom:630.435000px;}
.y199{bottom:632.595000px;}
.y73{bottom:636.735000px;}
.ydc{bottom:637.455000px;}
.yee{bottom:641.595000px;}
.y2c{bottom:642.855000px;}
.y15e{bottom:643.575000px;}
.yff{bottom:644.655000px;}
.y1a7{bottom:647.535000px;}
.y1d3{bottom:647.715000px;}
.y13{bottom:648.075000px;}
.ya5{bottom:648.795000px;}
.y174{bottom:651.495000px;}
.y141{bottom:652.395000px;}
.y52{bottom:653.295000px;}
.y207{bottom:657.075000px;}
.y1bc{bottom:661.395000px;}
.y208{bottom:663.915000px;}
.y18a{bottom:665.895000px;}
.y70{bottom:668.595000px;}
.y128{bottom:670.755000px;}
.yc2{bottom:673.455000px;}
.y2b{bottom:673.995000px;}
.y1d2{bottom:678.885000px;}
.y12{bottom:679.245000px;}
.y1ee{bottom:679.425000px;}
.ya3{bottom:680.505000px;}
.y89{bottom:684.825000px;}
.y15d{bottom:687.345000px;}
.yfe{bottom:687.885000px;}
.y206{bottom:688.065000px;}
.y1a6{bottom:690.585000px;}
.y1bb{bottom:693.285000px;}
.y173{bottom:695.445000px;}
.ydb{bottom:700.305000px;}
.y127{bottom:702.645000px;}
.yed{bottom:704.445000px;}
.yc1{bottom:704.625000px;}
.y2a{bottom:704.985000px;}
.y198{bottom:707.325000px;}
.y1d1{bottom:709.845000px;}
.y11{bottom:710.205000px;}
.y140{bottom:710.385000px;}
.y1ed{bottom:711.285000px;}
.y114{bottom:716.505000px;}
.yfd{bottom:718.845000px;}
.y205{bottom:719.205000px;}
.y1a5{bottom:721.725000px;}
.y15c{bottom:731.265000px;}
.y6f{bottom:731.445000px;}
.yda{bottom:732.165000px;}
.y189{bottom:735.945000px;}
.y29{bottom:736.125000px;}
.y1d0{bottom:740.985000px;}
.y10{bottom:741.345000px;}
.y1ec{bottom:743.145000px;}
.ya2{bottom:743.325000px;}
.yc0{bottom:747.645000px;}
.y113{bottom:748.365000px;}
.yfc{bottom:749.985000px;}
.y204{bottom:750.165000px;}
.y13f{bottom:753.585000px;}
.y1ba{bottom:756.105000px;}
.yd9{bottom:763.845000px;}
.y1a4{bottom:764.745000px;}
.y126{bottom:765.465000px;}
.y28{bottom:767.085000px;}
.yec{bottom:767.265000px;}
.y172{bottom:770.145000px;}
.y1cf{bottom:771.945000px;}
.yf{bottom:772.305000px;}
.y13e{bottom:774.285000px;}
.y1eb{bottom:774.825000px;}
.y15b{bottom:775.005000px;}
.y87{bottom:778.605000px;}
.y188{bottom:778.965000px;}
.y111{bottom:780.225000px;}
.y203{bottom:781.305000px;}
.y197{bottom:782.205000px;}
.yfb{bottom:793.005000px;}
.y6e{bottom:794.265000px;}
.y27{bottom:798.225000px;}
.y1ce{bottom:802.905000px;}
.ye{bottom:803.445000px;}
.ya1{bottom:806.145000px;}
.y1ea{bottom:806.685000px;}
.y187{bottom:810.105000px;}
.y86{bottom:810.465000px;}
.y13d{bottom:817.305000px;}
.y15a{bottom:818.745000px;}
.y1b9{bottom:818.925000px;}
.ybf{bottom:821.805000px;}
.yd8{bottom:821.985000px;}
.y202{bottom:824.325000px;}
.y6d{bottom:825.945000px;}
.y125{bottom:828.285000px;}
.y26{bottom:829.185000px;}
.yeb{bottom:830.085000px;}
.yd{bottom:834.405000px;}
.ya0{bottom:838.005000px;}
.y1e9{bottom:838.545000px;}
.ybe{bottom:839.265000px;}
.y84{bottom:842.145000px;}
.y110{bottom:843.045000px;}
.y171{bottom:845.025000px;}
.y1cd{bottom:846.105000px;}
.y13c{bottom:848.265000px;}
.y186{bottom:853.125000px;}
.y201{bottom:855.285000px;}
.y1a3{bottom:857.085000px;}
.y6b{bottom:857.805000px;}
.y25{bottom:860.325000px;}
.yea{bottom:861.945000px;}
.y159{bottom:862.665000px;}
.yc{bottom:863.025000px;}
.yd7{bottom:865.005000px;}
.y9f{bottom:869.865000px;}
.y1e8{bottom:870.225000px;}
.ybd{bottom:870.945000px;}
.yf9{bottom:873.285000px;}
.y1cc{bottom:877.065000px;}
.y13b{bottom:879.405000px;}
.y1b8{bottom:881.745000px;}
.yd6{bottom:882.645000px;}
.y185{bottom:884.085000px;}
.y170{bottom:888.945000px;}
.yb{bottom:891.285000px;}
.y49{bottom:898.125000px;}
.y200{bottom:898.305000px;}
.y196{bottom:900.825000px;}
.y9d{bottom:901.545000px;}
.y1e7{bottom:902.085000px;}
.ybc{bottom:902.805000px;}
.y10f{bottom:905.865000px;}
.y157{bottom:906.405000px;}
.y1cb{bottom:908.205000px;}
.y13a{bottom:910.365000px;}
.y184{bottom:915.270000px;}
.y124{bottom:917.430000px;}
.y69{bottom:920.670000px;}
.ya{bottom:922.470000px;}
.ye9{bottom:924.810000px;}
.y48{bottom:929.310000px;}
.y1ff{bottom:929.490000px;}
.y1a2{bottom:932.010000px;}
.y16e{bottom:932.730000px;}
.y1e6{bottom:933.990000px;}
.ybb{bottom:934.710000px;}
.y83{bottom:936.150000px;}
.y1ca{bottom:939.210000px;}
.y139{bottom:941.550000px;}
.y1b7{bottom:944.790000px;}
.yd5{bottom:945.510000px;}
.y183{bottom:946.230000px;}
.y155{bottom:950.190000px;}
.y67{bottom:952.530000px;}
.y9{bottom:953.430000px;}
.y123{bottom:960.450000px;}
.y9c{bottom:964.590000px;}
.y1e5{bottom:965.670000px;}
.yba{bottom:966.390000px;}
.yf8{bottom:967.290000px;}
.y82{bottom:968.010000px;}
.y1c9{bottom:970.350000px;}
.y138{bottom:972.510000px;}
.y194{bottom:975.750000px;}
.y182{bottom:977.370000px;}
.y8{bottom:984.570000px;}
.yd4{bottom:991.590000px;}
.y153{bottom:994.110000px;}
.y1e4{bottom:997.530000px;}
.yb9{bottom:998.250000px;}
.y10d{bottom:999.690000px;}
.y1c8{bottom:1001.310000px;}
.y122{bottom:1003.650000px;}
.y1a1{bottom:1006.890000px;}
.y16d{bottom:1007.610000px;}
.y66{bottom:1010.670000px;}
.ye8{bottom:1013.910000px;}
.y7{bottom:1015.530000px;}
.y181{bottom:1020.390000px;}
.y9b{bottom:1022.550000px;}
.y1e3{bottom:1029.390000px;}
.yb8{bottom:1030.110000px;}
.y81{bottom:1030.830000px;}
.yd3{bottom:1034.610000px;}
.y180{bottom:1037.850000px;}
.y1c7{bottom:1044.330000px;}
.y6{bottom:1046.670000px;}
.y47{bottom:1053.510000px;}
.y65{bottom:1053.690000px;}
.y1e2{bottom:1061.070000px;}
.yf7{bottom:1061.790000px;}
.y9a{bottom:1065.750000px;}
.y152{bottom:1068.990000px;}
.y5{bottom:1077.630000px;}
.y17f{bottom:1081.590000px;}
.yb7{bottom:1092.930000px;}
.y80{bottom:1093.650000px;}
.y64{bottom:1096.710000px;}
.y4{bottom:1108.770000px;}
.y150{bottom:1112.730000px;}
.yb6{bottom:1124.790000px;}
.y3{bottom:1139.730000px;}
.hb{height:30.960000px;}
.h15{height:30.996000px;}
.hc{height:31.140000px;}
.h16{height:31.176000px;}
.h13{height:31.201172px;}
.h9{height:34.855313px;}
.h10{height:39.760312px;}
.h1d{height:43.020000px;}
.h1c{height:43.056000px;}
.h1f{height:43.200000px;}
.h21{height:43.236000px;}
.h8{height:43.246406px;}
.h6{height:43.536094px;}
.h4{height:48.761719px;}
.h14{height:51.793945px;}
.ha{height:53.573906px;}
.h5{height:59.343750px;}
.h1a{height:61.920000px;}
.he{height:62.100000px;}
.hd{height:62.136000px;}
.h2{height:62.402344px;}
.h3{height:64.546875px;}
.h7{height:67.120312px;}
.h12{height:70.606406px;}
.h1e{height:73.980000px;}
.h25{height:74.016000px;}
.h20{height:74.160000px;}
.h22{height:74.196000px;}
.h11{height:93.060000px;}
.h18{height:93.096000px;}
.h19{height:93.240000px;}
.hf{height:93.276000px;}
.h24{height:105.120000px;}
.h17{height:124.200000px;}
.h1b{height:124.236000px;}
.h23{height:136.296000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:33.480000px;}
.wf{width:40.140000px;}
.wb{width:42.480000px;}
.w24{width:45.360000px;}
.w19{width:49.320000px;}
.w26{width:49.500000px;}
.w1d{width:49.860000px;}
.w20{width:51.300000px;}
.w2d{width:51.480000px;}
.w31{width:56.520000px;}
.w35{width:60.300000px;}
.w2e{width:62.820000px;}
.w1a{width:66.420000px;}
.w25{width:67.500000px;}
.w16{width:70.560000px;}
.w13{width:73.440000px;}
.w10{width:75.240000px;}
.wc{width:83.196000px;}
.w3b{width:83.880000px;}
.w36{width:83.916000px;}
.w3d{width:84.240000px;}
.w1e{width:84.456000px;}
.w32{width:86.976000px;}
.w3c{width:90.576000px;}
.w27{width:91.476000px;}
.w8{width:91.656000px;}
.w5{width:93.636000px;}
.w2a{width:95.436000px;}
.w21{width:114.876000px;}
.w22{width:172.650000px;}
.w33{width:193.890000px;}
.w37{width:197.490000px;}
.w39{width:200.730000px;}
.w1f{width:201.270000px;}
.w2f{width:217.335000px;}
.w1b{width:220.215000px;}
.w14{width:221.655000px;}
.w2b{width:222.510000px;}
.w17{width:222.555000px;}
.w28{width:240.510000px;}
.we{width:240.735000px;}
.wa{width:241.095000px;}
.w7{width:243.255000px;}
.w11{width:262.695000px;}
.w29{width:272.235000px;}
.w12{width:275.835000px;}
.w6{width:283.530000px;}
.w2c{width:286.455000px;}
.wd{width:287.310000px;}
.w9{width:287.670000px;}
.w38{width:292.530000px;}
.w34{width:296.850000px;}
.w30{width:302.610000px;}
.w23{width:315.075000px;}
.w15{width:316.335000px;}
.w3a{width:317.235000px;}
.w1c{width:317.775000px;}
.w18{width:318.315000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x2{left:127.655987px;}
.x7{left:132.515987px;}
.x3a{left:137.375987px;}
.x3{left:159.509987px;}
.x17{left:162.570000px;}
.x1d{left:169.230000px;}
.x1c{left:171.570000px;}
.x28{left:174.630000px;}
.x23{left:178.410000px;}
.x25{left:180.390000px;}
.x2f{left:185.610000px;}
.x31{left:189.390000px;}
.x34{left:212.970000px;}
.xc{left:227.549973px;}
.xd{left:233.669987px;}
.x21{left:242.850000px;}
.x2d{left:244.110000px;}
.x1e{left:245.190000px;}
.x1a{left:254.955000px;}
.x18{left:256.935000px;}
.x24{left:264.135000px;}
.x33{left:265.755000px;}
.x29{left:270.975000px;}
.x30{left:273.315000px;}
.x2b{left:274.755000px;}
.x26{left:295.995000px;}
.x35{left:304.275000px;}
.x6{left:343.694987px;}
.x14{left:350.534987px;}
.x8{left:359.174973px;}
.x9{left:365.294987px;}
.xa{left:371.954987px;}
.x12{left:375.734973px;}
.x13{left:381.854987px;}
.x15{left:436.964987px;}
.x1{left:441.824987px;}
.x2e{left:462.165000px;}
.x22{left:466.125000px;}
.x20{left:468.105000px;}
.x27{left:469.365000px;}
.x32{left:472.245000px;}
.x2c{left:497.985000px;}
.x1f{left:508.605000px;}
.x2a{left:512.205000px;}
.x19{left:541.185000px;}
.x1b{left:543.345000px;}
.xb{left:584.384987px;}
.x4{left:608.909973px;}
.x5{left:615.029987px;}
.xe{left:623.669973px;}
.x10{left:625.649973px;}
.xf{left:629.789987px;}
.x11{left:631.769987px;}
.x36{left:664.709973px;}
.x37{left:676.949987px;}
.x38{left:687.569973px;}
.x39{left:699.809987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls30{letter-spacing:-8.426667pt;}
.ls2d{letter-spacing:-2.880000pt;}
.ls1e{letter-spacing:-2.560000pt;}
.ls21{letter-spacing:-2.496000pt;}
.ls2e{letter-spacing:-1.216000pt;}
.ls31{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.278933pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.239467pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.167680pt;}
.ls24{letter-spacing:0.177707pt;}
.ls16{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.199040pt;}
.ls23{letter-spacing:0.239467pt;}
.ls20{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.359040pt;}
.ls7{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls2b{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls29{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls26{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.920000pt;}
.ls28{letter-spacing:2.560000pt;}
.ls1b{letter-spacing:3.200000pt;}
.ls15{letter-spacing:3.840000pt;}
.ls25{letter-spacing:4.480000pt;}
.ls18{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls6{letter-spacing:10.240000pt;}
.ls3{letter-spacing:10.880000pt;}
.ls12{letter-spacing:12.160000pt;}
.ls27{letter-spacing:15.360000pt;}
.ls19{letter-spacing:44.800000pt;}
.ls1a{letter-spacing:155.520000pt;}
.wse{word-spacing:-64.000000pt;}
.ws3{word-spacing:-53.120000pt;}
.wsd{word-spacing:-16.768000pt;}
.wsf{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.512000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.680000pt;}
.ws19{word-spacing:-15.360000pt;}
.ws1d{word-spacing:-14.784000pt;}
.ws16{word-spacing:-13.504000pt;}
.ws13{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.992000pt;}
.ws10{word-spacing:-12.736000pt;}
.ws18{word-spacing:-10.959467pt;}
.ws6{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.504427pt;}
.ws14{word-spacing:-10.480533pt;}
.ws1c{word-spacing:-7.840000pt;}
.ws1e{word-spacing:-7.573333pt;}
.ws4{word-spacing:0.000000pt;}
._34{margin-left:-8.032000pt;}
._e{margin-left:-6.912000pt;}
._2{margin-left:-5.760000pt;}
._12{margin-left:-4.864000pt;}
._3{margin-left:-3.904000pt;}
._0{margin-left:-2.560000pt;}
._1{margin-left:-1.088000pt;}
._4{width:0.917333pt;}
._9{width:1.813333pt;}
._5{width:2.741333pt;}
._16{width:3.754667pt;}
._b{width:4.672000pt;}
._17{width:5.760000pt;}
._18{width:7.040000pt;}
._f{width:8.576000pt;}
._10{width:9.472000pt;}
._6{width:10.410667pt;}
._7{width:11.413333pt;}
._8{width:12.949333pt;}
._d{width:14.410667pt;}
._a{width:17.408000pt;}
._15{width:18.368000pt;}
._19{width:19.328000pt;}
._2b{width:20.800000pt;}
._30{width:22.592000pt;}
._13{width:23.872000pt;}
._14{width:24.768000pt;}
._33{width:25.749333pt;}
._c{width:26.880000pt;}
._50{width:27.946667pt;}
._1c{width:28.992000pt;}
._51{width:29.888000pt;}
._2f{width:31.370667pt;}
._3d{width:35.648000pt;}
._38{width:37.504000pt;}
._36{width:38.976000pt;}
._35{width:40.224000pt;}
._37{width:42.752000pt;}
._4e{width:45.568000pt;}
._4f{width:47.744000pt;}
._4b{width:48.768000pt;}
._47{width:50.752000pt;}
._3f{width:51.712000pt;}
._39{width:57.888000pt;}
._11{width:59.520000pt;}
._29{width:60.768000pt;}
._1f{width:62.496000pt;}
._3a{width:65.056000pt;}
._49{width:66.752000pt;}
._26{width:69.664000pt;}
._22{width:74.112000pt;}
._43{width:75.200000pt;}
._32{width:76.746667pt;}
._2e{width:80.000000pt;}
._41{width:81.344000pt;}
._2c{width:82.314667pt;}
._3e{width:84.544000pt;}
._1a{width:87.850667pt;}
._45{width:88.928000pt;}
._28{width:90.506667pt;}
._21{width:91.424000pt;}
._4a{width:92.864000pt;}
._25{width:97.888000pt;}
._42{width:99.968000pt;}
._23{width:101.984000pt;}
._2a{width:104.810667pt;}
._2d{width:107.370667pt;}
._31{width:112.224000pt;}
._1d{width:122.912000pt;}
._3b{width:128.768000pt;}
._27{width:133.216000pt;}
._4c{width:145.002667pt;}
._1e{width:152.800000pt;}
._24{width:157.600000pt;}
._4d{width:161.002667pt;}
._20{width:165.280000pt;}
._48{width:169.728000pt;}
._1b{width:172.960000pt;}
._44{width:178.240000pt;}
._3c{width:186.112000pt;}
._46{width:191.872000pt;}
._40{width:267.968000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:12.640000pt;}
.y72{bottom:12.666667pt;}
.yad{bottom:12.680000pt;}
.y6a{bottom:12.800000pt;}
.y129{bottom:12.826667pt;}
.y9e{bottom:12.840000pt;}
.y88{bottom:18.880000pt;}
.y151{bottom:23.360000pt;}
.y18b{bottom:23.386667pt;}
.y158{bottom:23.400000pt;}
.y156{bottom:23.520000pt;}
.y175{bottom:23.546667pt;}
.y112{bottom:40.160000pt;}
.y6c{bottom:40.320000pt;}
.y71{bottom:40.346667pt;}
.y90{bottom:40.360000pt;}
.ya4{bottom:46.400000pt;}
.yc9{bottom:46.440000pt;}
.y154{bottom:50.880000pt;}
.y19a{bottom:50.906667pt;}
.y16f{bottom:51.040000pt;}
.y17a{bottom:51.080000pt;}
.y2{bottom:52.320000pt;}
.y8a{bottom:67.840000pt;}
.yfa{bottom:67.880000pt;}
.y10e{bottom:68.000000pt;}
.y85{bottom:68.040000pt;}
.y1{bottom:71.840000pt;}
.y195{bottom:78.560000pt;}
.y17e{bottom:78.746667pt;}
.ye5{bottom:95.520000pt;}
.y116{bottom:95.546667pt;}
.y1e1{bottom:96.800000pt;}
.y43{bottom:97.280000pt;}
.y99{bottom:98.080000pt;}
.y137{bottom:101.120000pt;}
.y4f{bottom:101.920000pt;}
.y3d{bottom:102.240000pt;}
.y14f{bottom:104.640000pt;}
.y7f{bottom:105.920000pt;}
.y17d{bottom:106.266667pt;}
.y24{bottom:106.880000pt;}
.y121{bottom:107.520000pt;}
.y10c{bottom:108.640000pt;}
.y1c6{bottom:110.720000pt;}
.y63{bottom:111.520000pt;}
.yd2{bottom:111.840000pt;}
.y42{bottom:112.640000pt;}
.y98{bottom:114.400000pt;}
.y193{bottom:114.720000pt;}
.y46{bottom:117.280000pt;}
.y1b6{bottom:118.880000pt;}
.y97{bottom:119.040000pt;}
.y21b{bottom:121.120000pt;}
.y1fe{bottom:122.080000pt;}
.y1e0{bottom:124.960000pt;}
.y41{bottom:128.000000pt;}
.y136{bottom:128.640000pt;}
.y45{bottom:129.600000pt;}
.y3c{bottom:129.920000pt;}
.y96{bottom:131.520000pt;}
.y14e{bottom:132.320000pt;}
.y40{bottom:132.640000pt;}
.y23{bottom:134.400000pt;}
.y120{bottom:135.040000pt;}
.y10b{bottom:136.800000pt;}
.yb5{bottom:137.920000pt;}
.y16c{bottom:138.080000pt;}
.y62{bottom:139.040000pt;}
.yd1{bottom:139.520000pt;}
.y4e{bottom:143.200000pt;}
.y21a{bottom:144.160000pt;}
.y3f{bottom:144.960000pt;}
.y1b5{bottom:146.560000pt;}
.ye7{bottom:147.520000pt;}
.y4d{bottom:147.840000pt;}
.y1fd{bottom:149.760000pt;}
.yf6{bottom:150.880000pt;}
.y1a0{bottom:151.680000pt;}
.y1df{bottom:153.280000pt;}
.y135{bottom:156.320000pt;}
.y3b{bottom:157.440000pt;}
.y7e{bottom:157.600000pt;}
.y4c{bottom:158.560000pt;}
.y22{bottom:162.080000pt;}
.y4b{bottom:163.200000pt;}
.yb4{bottom:165.600000pt;}
.y16b{bottom:165.760000pt;}
.y61{bottom:166.720000pt;}
.yd0{bottom:167.040000pt;}
.y219{bottom:167.200000pt;}
.y14d{bottom:170.560000pt;}
.y11f{bottom:173.280000pt;}
.y4a{bottom:175.520000pt;}
.y1fc{bottom:177.280000pt;}
.y192{bottom:181.306667pt;}
.y1de{bottom:181.626667pt;}
.y1b4{bottom:184.826667pt;}
.y3a{bottom:185.146667pt;}
.ye6{bottom:185.946667pt;}
.y14c{bottom:186.106667pt;}
.y21{bottom:189.626667pt;}
.y218{bottom:190.266667pt;}
.y19f{bottom:190.586667pt;}
.y16a{bottom:193.306667pt;}
.y60{bottom:194.266667pt;}
.y134{bottom:194.586667pt;}
.ycf{bottom:194.746667pt;}
.y1c5{bottom:194.906667pt;}
.y7d{bottom:195.866667pt;}
.y95{bottom:198.906667pt;}
.y11e{bottom:200.986667pt;}
.ye4{bottom:201.466667pt;}
.yb3{bottom:203.866667pt;}
.y1fb{bottom:204.986667pt;}
.yf5{bottom:206.746667pt;}
.y1dd{bottom:209.786667pt;}
.y133{bottom:210.106667pt;}
.y1b3{bottom:212.346667pt;}
.y39{bottom:212.666667pt;}
.y217{bottom:213.146667pt;}
.y10a{bottom:216.186667pt;}
.y20{bottom:217.306667pt;}
.y3e{bottom:218.746667pt;}
.y5f{bottom:221.946667pt;}
.yce{bottom:222.266667pt;}
.y7c{bottom:223.546667pt;}
.yb2{bottom:231.546667pt;}
.y1fa{bottom:232.506667pt;}
.y216{bottom:236.186667pt;}
.y94{bottom:237.146667pt;}
.ycd{bottom:237.786667pt;}
.y11d{bottom:239.226667pt;}
.y38{bottom:240.346667pt;}
.y215{bottom:240.826667pt;}
.y14b{bottom:241.946667pt;}
.y1f{bottom:244.826667pt;}
.y44{bottom:246.426667pt;}
.y191{bottom:247.866667pt;}
.y5e{bottom:249.466667pt;}
.y1b2{bottom:250.746667pt;}
.y17c{bottom:251.386667pt;}
.y214{bottom:251.546667pt;}
.y109{bottom:254.426667pt;}
.y213{bottom:256.186667pt;}
.y169{bottom:259.226667pt;}
.y1f9{bottom:260.186667pt;}
.y1dc{bottom:261.466667pt;}
.y7b{bottom:261.786667pt;}
.yf4{bottom:262.586667pt;}
.y93{bottom:264.826667pt;}
.y132{bottom:265.946667pt;}
.ycc{bottom:266.106667pt;}
.y37{bottom:267.866667pt;}
.y212{bottom:268.506667pt;}
.yb1{bottom:269.786667pt;}
.y14a{bottom:270.266667pt;}
.y1e{bottom:272.506667pt;}
.y5d{bottom:277.146667pt;}
.y11c{bottom:277.466667pt;}
.y1b1{bottom:278.266667pt;}
.y108{bottom:281.946667pt;}
.y19e{bottom:284.666667pt;}
.y168{bottom:286.746667pt;}
.y1f8{bottom:287.706667pt;}
.y1db{bottom:289.146667pt;}
.y7a{bottom:289.306667pt;}
.y131{bottom:294.266667pt;}
.y36{bottom:295.546667pt;}
.yb0{bottom:297.306667pt;}
.y149{bottom:298.426667pt;}
.y1d{bottom:300.026667pt;}
.y51{bottom:301.626667pt;}
.y92{bottom:303.066667pt;}
.y5c{bottom:304.666667pt;}
.y11b{bottom:305.146667pt;}
.y1b0{bottom:305.786667pt;}
.y1c4{bottom:306.586667pt;}
.y211{bottom:308.026667pt;}
.y107{bottom:309.626667pt;}
.ye3{bottom:312.506667pt;}
.y190{bottom:314.266667pt;}
.y167{bottom:314.426667pt;}
.y1f7{bottom:315.386667pt;}
.y1da{bottom:316.666667pt;}
.y79{bottom:316.986667pt;}
.y17b{bottom:317.946667pt;}
.yf3{bottom:318.426667pt;}
.ycb{bottom:321.946667pt;}
.y130{bottom:322.426667pt;}
.y35{bottom:323.066667pt;}
.yaf{bottom:324.986667pt;}
.y1c{bottom:327.706667pt;}
.y5b{bottom:332.346667pt;}
.y11a{bottom:332.666667pt;}
.y1af{bottom:333.466667pt;}
.y1c3{bottom:334.906667pt;}
.y210{bottom:335.546667pt;}
.y106{bottom:337.146667pt;}
.y91{bottom:341.306667pt;}
.y1f6{bottom:342.906667pt;}
.y1d9{bottom:344.346667pt;}
.y78{bottom:344.506667pt;}
.yca{bottom:350.266667pt;}
.y34{bottom:350.746667pt;}
.y19d{bottom:351.226667pt;}
.y166{bottom:352.666667pt;}
.y148{bottom:354.266667pt;}
.y1b{bottom:355.226667pt;}
.y8f{bottom:356.826667pt;}
.y5a{bottom:359.866667pt;}
.yae{bottom:363.226667pt;}
.y105{bottom:364.826667pt;}
.y1f5{bottom:370.586667pt;}
.y119{bottom:370.906667pt;}
.y1ae{bottom:371.706667pt;}
.y1d8{bottom:371.866667pt;}
.y77{bottom:372.186667pt;}
.yf2{bottom:374.266667pt;}
.y33{bottom:378.266667pt;}
.yc8{bottom:378.426667pt;}
.yac{bottom:378.746667pt;}
.y12f{bottom:379.066667pt;}
.y165{bottom:380.186667pt;}
.y18f{bottom:380.826667pt;}
.y147{bottom:382.586667pt;}
.y1a{bottom:382.906667pt;}
.y118{bottom:386.426667pt;}
.y59{bottom:387.386667pt;}
.y1c2{bottom:390.786667pt;}
.ye2{bottom:391.746667pt;}
.y1ad{bottom:399.426667pt;}
.y104{bottom:403.106667pt;}
.y32{bottom:405.826667pt;}
.yab{bottom:407.106667pt;}
.y12e{bottom:407.266667pt;}
.y164{bottom:407.906667pt;}
.y1f4{bottom:408.866667pt;}
.y19{bottom:410.466667pt;}
.y146{bottom:410.946667pt;}
.y8e{bottom:412.706667pt;}
.y58{bottom:415.106667pt;}
.y19c{bottom:417.826667pt;}
.y20f{bottom:418.466667pt;}
.y1c1{bottom:419.106667pt;}
.ye1{bottom:419.426667pt;}
.y18e{bottom:419.906667pt;}
.y179{bottom:423.426667pt;}
.y76{bottom:425.986667pt;}
.y1ac{bottom:426.946667pt;}
.y1d7{bottom:427.106667pt;}
.yf1{bottom:430.306667pt;}
.y103{bottom:430.626667pt;}
.y31{bottom:433.506667pt;}
.yaa{bottom:435.266667pt;}
.y163{bottom:435.426667pt;}
.y12d{bottom:435.586667pt;}
.y18{bottom:438.146667pt;}
.y8d{bottom:441.026667pt;}
.y117{bottom:442.306667pt;}
.y57{bottom:442.626667pt;}
.y20e{bottom:445.986667pt;}
.ye0{bottom:446.946667pt;}
.y1f3{bottom:447.106667pt;}
.y1c0{bottom:447.266667pt;}
.y1ab{bottom:454.626667pt;}
.y19b{bottom:456.706667pt;}
.yc7{bottom:457.826667pt;}
.yf0{bottom:458.466667pt;}
.y30{bottom:461.026667pt;}
.y178{bottom:462.306667pt;}
.y1f2{bottom:462.626667pt;}
.y162{bottom:463.106667pt;}
.ya9{bottom:463.586667pt;}
.y17{bottom:465.666667pt;}
.y145{bottom:466.786667pt;}
.y102{bottom:469.026667pt;}
.y56{bottom:470.306667pt;}
.y20c{bottom:473.666667pt;}
.y1bf{bottom:475.586667pt;}
.yc6{bottom:476.226667pt;}
.y20d{bottom:479.746667pt;}
.y75{bottom:481.826667pt;}
.y1aa{bottom:482.146667pt;}
.y1d6{bottom:482.306667pt;}
.ydf{bottom:485.186667pt;}
.y18d{bottom:486.306667pt;}
.y12c{bottom:487.266667pt;}
.y2f{bottom:488.706667pt;}
.y161{bottom:490.626667pt;}
.y1f1{bottom:490.946667pt;}
.ya8{bottom:491.906667pt;}
.y16{bottom:493.346667pt;}
.yc5{bottom:494.626667pt;}
.y144{bottom:495.106667pt;}
.y8c{bottom:496.866667pt;}
.y55{bottom:497.826667pt;}
.y20b{bottom:501.186667pt;}
.y177{bottom:501.346667pt;}
.y101{bottom:507.266667pt;}
.yde{bottom:512.866667pt;}
.yef{bottom:514.306667pt;}
.y12b{bottom:514.786667pt;}
.y2e{bottom:516.226667pt;}
.y160{bottom:518.306667pt;}
.y1f0{bottom:519.106667pt;}
.ya7{bottom:520.066667pt;}
.y1a9{bottom:520.386667pt;}
.y1d5{bottom:520.546667pt;}
.y15{bottom:520.866667pt;}
.y143{bottom:523.266667pt;}
.y54{bottom:525.506667pt;}
.y115{bottom:525.826667pt;}
.y20a{bottom:528.866667pt;}
.y1be{bottom:531.426667pt;}
.yc4{bottom:532.866667pt;}
.y74{bottom:537.666667pt;}
.y176{bottom:540.226667pt;}
.y12a{bottom:542.466667pt;}
.y2d{bottom:543.906667pt;}
.y100{bottom:545.506667pt;}
.y1ef{bottom:547.426667pt;}
.y1a8{bottom:548.066667pt;}
.y1d4{bottom:548.226667pt;}
.ya6{bottom:548.386667pt;}
.y14{bottom:548.546667pt;}
.y50{bottom:549.986667pt;}
.ydd{bottom:551.106667pt;}
.y142{bottom:551.586667pt;}
.y8b{bottom:552.706667pt;}
.y18c{bottom:552.866667pt;}
.y53{bottom:553.026667pt;}
.y209{bottom:556.386667pt;}
.y15f{bottom:556.546667pt;}
.y1bd{bottom:559.746667pt;}
.yc3{bottom:560.386667pt;}
.y199{bottom:562.306667pt;}
.y73{bottom:565.986667pt;}
.ydc{bottom:566.626667pt;}
.yee{bottom:570.306667pt;}
.y2c{bottom:571.426667pt;}
.y15e{bottom:572.066667pt;}
.yff{bottom:573.026667pt;}
.y1a7{bottom:575.586667pt;}
.y1d3{bottom:575.746667pt;}
.y13{bottom:576.066667pt;}
.ya5{bottom:576.706667pt;}
.y174{bottom:579.106667pt;}
.y141{bottom:579.906667pt;}
.y52{bottom:580.706667pt;}
.y207{bottom:584.066667pt;}
.y1bc{bottom:587.906667pt;}
.y208{bottom:590.146667pt;}
.y18a{bottom:591.906667pt;}
.y70{bottom:594.306667pt;}
.y128{bottom:596.226667pt;}
.yc2{bottom:598.626667pt;}
.y2b{bottom:599.106667pt;}
.y1d2{bottom:603.453333pt;}
.y12{bottom:603.773333pt;}
.y1ee{bottom:603.933333pt;}
.ya3{bottom:604.893333pt;}
.y89{bottom:608.733333pt;}
.y15d{bottom:610.973333pt;}
.yfe{bottom:611.453333pt;}
.y206{bottom:611.613333pt;}
.y1a6{bottom:613.853333pt;}
.y1bb{bottom:616.253333pt;}
.y173{bottom:618.173333pt;}
.ydb{bottom:622.493333pt;}
.y127{bottom:624.573333pt;}
.yed{bottom:626.173333pt;}
.yc1{bottom:626.333333pt;}
.y2a{bottom:626.653333pt;}
.y198{bottom:628.733333pt;}
.y1d1{bottom:630.973333pt;}
.y11{bottom:631.293333pt;}
.y140{bottom:631.453333pt;}
.y1ed{bottom:632.253333pt;}
.y114{bottom:636.893333pt;}
.yfd{bottom:638.973333pt;}
.y205{bottom:639.293333pt;}
.y1a5{bottom:641.533333pt;}
.y15c{bottom:650.013333pt;}
.y6f{bottom:650.173333pt;}
.yda{bottom:650.813333pt;}
.y189{bottom:654.173333pt;}
.y29{bottom:654.333333pt;}
.y1d0{bottom:658.653333pt;}
.y10{bottom:658.973333pt;}
.y1ec{bottom:660.573333pt;}
.ya2{bottom:660.733333pt;}
.yc0{bottom:664.573333pt;}
.y113{bottom:665.213333pt;}
.yfc{bottom:666.653333pt;}
.y204{bottom:666.813333pt;}
.y13f{bottom:669.853333pt;}
.y1ba{bottom:672.093333pt;}
.yd9{bottom:678.973333pt;}
.y1a4{bottom:679.773333pt;}
.y126{bottom:680.413333pt;}
.y28{bottom:681.853333pt;}
.yec{bottom:682.013333pt;}
.y172{bottom:684.573333pt;}
.y1cf{bottom:686.173333pt;}
.yf{bottom:686.493333pt;}
.y13e{bottom:688.253333pt;}
.y1eb{bottom:688.733333pt;}
.y15b{bottom:688.893333pt;}
.y87{bottom:692.093333pt;}
.y188{bottom:692.413333pt;}
.y111{bottom:693.533333pt;}
.y203{bottom:694.493333pt;}
.y197{bottom:695.293333pt;}
.yfb{bottom:704.893333pt;}
.y6e{bottom:706.013333pt;}
.y27{bottom:709.533333pt;}
.y1ce{bottom:713.693333pt;}
.ye{bottom:714.173333pt;}
.ya1{bottom:716.573333pt;}
.y1ea{bottom:717.053333pt;}
.y187{bottom:720.093333pt;}
.y86{bottom:720.413333pt;}
.y13d{bottom:726.493333pt;}
.y15a{bottom:727.773333pt;}
.y1b9{bottom:727.933333pt;}
.ybf{bottom:730.493333pt;}
.yd8{bottom:730.653333pt;}
.y202{bottom:732.733333pt;}
.y6d{bottom:734.173333pt;}
.y125{bottom:736.253333pt;}
.y26{bottom:737.053333pt;}
.yeb{bottom:737.853333pt;}
.yd{bottom:741.693333pt;}
.ya0{bottom:744.893333pt;}
.y1e9{bottom:745.373333pt;}
.ybe{bottom:746.013333pt;}
.y84{bottom:748.573333pt;}
.y110{bottom:749.373333pt;}
.y171{bottom:751.133333pt;}
.y1cd{bottom:752.093333pt;}
.y13c{bottom:754.013333pt;}
.y186{bottom:758.333333pt;}
.y201{bottom:760.253333pt;}
.y1a3{bottom:761.853333pt;}
.y6b{bottom:762.493333pt;}
.y25{bottom:764.733333pt;}
.yea{bottom:766.173333pt;}
.y159{bottom:766.813333pt;}
.yc{bottom:767.133333pt;}
.yd7{bottom:768.893333pt;}
.y9f{bottom:773.213333pt;}
.y1e8{bottom:773.533333pt;}
.ybd{bottom:774.173333pt;}
.yf9{bottom:776.253333pt;}
.y1cc{bottom:779.613333pt;}
.y13b{bottom:781.693333pt;}
.y1b8{bottom:783.773333pt;}
.yd6{bottom:784.573333pt;}
.y185{bottom:785.853333pt;}
.y170{bottom:790.173333pt;}
.yb{bottom:792.253333pt;}
.y49{bottom:798.333333pt;}
.y200{bottom:798.493333pt;}
.y196{bottom:800.733333pt;}
.y9d{bottom:801.373333pt;}
.y1e7{bottom:801.853333pt;}
.ybc{bottom:802.493333pt;}
.y10f{bottom:805.213333pt;}
.y157{bottom:805.693333pt;}
.y1cb{bottom:807.293333pt;}
.y13a{bottom:809.213333pt;}
.y184{bottom:813.573333pt;}
.y124{bottom:815.493333pt;}
.y69{bottom:818.373333pt;}
.ya{bottom:819.973333pt;}
.ye9{bottom:822.053333pt;}
.y48{bottom:826.053333pt;}
.y1ff{bottom:826.213333pt;}
.y1a2{bottom:828.453333pt;}
.y16e{bottom:829.093333pt;}
.y1e6{bottom:830.213333pt;}
.ybb{bottom:830.853333pt;}
.y83{bottom:832.133333pt;}
.y1ca{bottom:834.853333pt;}
.y139{bottom:836.933333pt;}
.y1b7{bottom:839.813333pt;}
.yd5{bottom:840.453333pt;}
.y183{bottom:841.093333pt;}
.y155{bottom:844.613333pt;}
.y67{bottom:846.693333pt;}
.y9{bottom:847.493333pt;}
.y123{bottom:853.733333pt;}
.y9c{bottom:857.413333pt;}
.y1e5{bottom:858.373333pt;}
.yba{bottom:859.013333pt;}
.yf8{bottom:859.813333pt;}
.y82{bottom:860.453333pt;}
.y1c9{bottom:862.533333pt;}
.y138{bottom:864.453333pt;}
.y194{bottom:867.333333pt;}
.y182{bottom:868.773333pt;}
.y8{bottom:875.173333pt;}
.yd4{bottom:881.413333pt;}
.y153{bottom:883.653333pt;}
.y1e4{bottom:886.693333pt;}
.yb9{bottom:887.333333pt;}
.y10d{bottom:888.613333pt;}
.y1c8{bottom:890.053333pt;}
.y122{bottom:892.133333pt;}
.y1a1{bottom:895.013333pt;}
.y16d{bottom:895.653333pt;}
.y66{bottom:898.373333pt;}
.ye8{bottom:901.253333pt;}
.y7{bottom:902.693333pt;}
.y181{bottom:907.013333pt;}
.y9b{bottom:908.933333pt;}
.y1e3{bottom:915.013333pt;}
.yb8{bottom:915.653333pt;}
.y81{bottom:916.293333pt;}
.yd3{bottom:919.653333pt;}
.y180{bottom:922.533333pt;}
.y1c7{bottom:928.293333pt;}
.y6{bottom:930.373333pt;}
.y47{bottom:936.453333pt;}
.y65{bottom:936.613333pt;}
.y1e2{bottom:943.173333pt;}
.yf7{bottom:943.813333pt;}
.y9a{bottom:947.333333pt;}
.y152{bottom:950.213333pt;}
.y5{bottom:957.893333pt;}
.y17f{bottom:961.413333pt;}
.yb7{bottom:971.493333pt;}
.y80{bottom:972.133333pt;}
.y64{bottom:974.853333pt;}
.y4{bottom:985.573333pt;}
.y150{bottom:989.093333pt;}
.yb6{bottom:999.813333pt;}
.y3{bottom:1013.093333pt;}
.hb{height:27.520000pt;}
.h15{height:27.552000pt;}
.hc{height:27.680000pt;}
.h16{height:27.712000pt;}
.h13{height:27.734375pt;}
.h9{height:30.982500pt;}
.h10{height:35.342500pt;}
.h1d{height:38.240000pt;}
.h1c{height:38.272000pt;}
.h1f{height:38.400000pt;}
.h21{height:38.432000pt;}
.h8{height:38.441250pt;}
.h6{height:38.698750pt;}
.h4{height:43.343750pt;}
.h14{height:46.039063pt;}
.ha{height:47.621250pt;}
.h5{height:52.750000pt;}
.h1a{height:55.040000pt;}
.he{height:55.200000pt;}
.hd{height:55.232000pt;}
.h2{height:55.468750pt;}
.h3{height:57.375000pt;}
.h7{height:59.662500pt;}
.h12{height:62.761250pt;}
.h1e{height:65.760000pt;}
.h25{height:65.792000pt;}
.h20{height:65.920000pt;}
.h22{height:65.952000pt;}
.h11{height:82.720000pt;}
.h18{height:82.752000pt;}
.h19{height:82.880000pt;}
.hf{height:82.912000pt;}
.h24{height:93.440000pt;}
.h17{height:110.400000pt;}
.h1b{height:110.432000pt;}
.h23{height:121.152000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:29.760000pt;}
.wf{width:35.680000pt;}
.wb{width:37.760000pt;}
.w24{width:40.320000pt;}
.w19{width:43.840000pt;}
.w26{width:44.000000pt;}
.w1d{width:44.320000pt;}
.w20{width:45.600000pt;}
.w2d{width:45.760000pt;}
.w31{width:50.240000pt;}
.w35{width:53.600000pt;}
.w2e{width:55.840000pt;}
.w1a{width:59.040000pt;}
.w25{width:60.000000pt;}
.w16{width:62.720000pt;}
.w13{width:65.280000pt;}
.w10{width:66.880000pt;}
.wc{width:73.952000pt;}
.w3b{width:74.560000pt;}
.w36{width:74.592000pt;}
.w3d{width:74.880000pt;}
.w1e{width:75.072000pt;}
.w32{width:77.312000pt;}
.w3c{width:80.512000pt;}
.w27{width:81.312000pt;}
.w8{width:81.472000pt;}
.w5{width:83.232000pt;}
.w2a{width:84.832000pt;}
.w21{width:102.112000pt;}
.w22{width:153.466667pt;}
.w33{width:172.346667pt;}
.w37{width:175.546667pt;}
.w39{width:178.426667pt;}
.w1f{width:178.906667pt;}
.w2f{width:193.186667pt;}
.w1b{width:195.746667pt;}
.w14{width:197.026667pt;}
.w2b{width:197.786667pt;}
.w17{width:197.826667pt;}
.w28{width:213.786667pt;}
.we{width:213.986667pt;}
.wa{width:214.306667pt;}
.w7{width:216.226667pt;}
.w11{width:233.506667pt;}
.w29{width:241.986667pt;}
.w12{width:245.186667pt;}
.w6{width:252.026667pt;}
.w2c{width:254.626667pt;}
.wd{width:255.386667pt;}
.w9{width:255.706667pt;}
.w38{width:260.026667pt;}
.w34{width:263.866667pt;}
.w30{width:268.986667pt;}
.w23{width:280.066667pt;}
.w15{width:281.186667pt;}
.w3a{width:281.986667pt;}
.w1c{width:282.466667pt;}
.w18{width:282.946667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x2{left:113.471988pt;}
.x7{left:117.791988pt;}
.x3a{left:122.111988pt;}
.x3{left:141.786655pt;}
.x17{left:144.506667pt;}
.x1d{left:150.426667pt;}
.x1c{left:152.506667pt;}
.x28{left:155.226667pt;}
.x23{left:158.586667pt;}
.x25{left:160.346667pt;}
.x2f{left:164.986667pt;}
.x31{left:168.346667pt;}
.x34{left:189.306667pt;}
.xc{left:202.266643pt;}
.xd{left:207.706655pt;}
.x21{left:215.866667pt;}
.x2d{left:216.986667pt;}
.x1e{left:217.946667pt;}
.x1a{left:226.626667pt;}
.x18{left:228.386667pt;}
.x24{left:234.786667pt;}
.x33{left:236.226667pt;}
.x29{left:240.866667pt;}
.x30{left:242.946667pt;}
.x2b{left:244.226667pt;}
.x26{left:263.106667pt;}
.x35{left:270.466667pt;}
.x6{left:305.506655pt;}
.x14{left:311.586655pt;}
.x8{left:319.266643pt;}
.x9{left:324.706655pt;}
.xa{left:330.626655pt;}
.x12{left:333.986643pt;}
.x13{left:339.426655pt;}
.x15{left:388.413322pt;}
.x1{left:392.733322pt;}
.x2e{left:410.813333pt;}
.x22{left:414.333333pt;}
.x20{left:416.093333pt;}
.x27{left:417.213333pt;}
.x32{left:419.773333pt;}
.x2c{left:442.653333pt;}
.x1f{left:452.093333pt;}
.x2a{left:455.293333pt;}
.x19{left:481.053333pt;}
.x1b{left:482.973333pt;}
.xb{left:519.453322pt;}
.x4{left:541.253310pt;}
.x5{left:546.693322pt;}
.xe{left:554.373310pt;}
.x10{left:556.133310pt;}
.xf{left:559.813322pt;}
.x11{left:561.573322pt;}
.x36{left:590.853310pt;}
.x37{left:601.733322pt;}
.x38{left:611.173310pt;}
.x39{left:622.053322pt;}
}




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