
    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_fe92bd5ac9d71ee8500ef8a2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_8de3e533c17f21e5c9e07448.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946777;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_44380277852aefb2f2b4dbff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.950684;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_9cccb5359123bbc3b82a57f6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.766602;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_bdedd54c076e329a2e6071fb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.m1{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:33.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.204000px;}
.ls9{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.468000px;}
.ls2{letter-spacing:2.100000px;}
.ls4{letter-spacing:84.570000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.082018px;}
.ws1{word-spacing:-16.500000px;}
.ws7{word-spacing:-15.060000px;}
.ws0{word-spacing:-15.000000px;}
.ws2{word-spacing:-9.600000px;}
.ws4{word-spacing:-0.042000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:240.720000px;}
.ws9{word-spacing:312.900000px;}
.ws8{word-spacing:575.460000px;}
.wsb{word-spacing:711.120000px;}
.wsa{word-spacing:711.720000px;}
._a4{margin-left:-1791.000000px;}
._8a{margin-left:-1781.460000px;}
._b4{margin-left:-10.404000px;}
._b3{margin-left:-8.778000px;}
._16{margin-left:-7.266000px;}
._5{margin-left:-5.940000px;}
._13{margin-left:-4.254000px;}
._6{margin-left:-3.192000px;}
._0{margin-left:-1.740000px;}
._1{width:1.020000px;}
._3{width:2.028000px;}
._8{width:3.720000px;}
._7{width:5.203200px;}
._e{width:6.996000px;}
._f{width:8.208000px;}
._9{width:9.624000px;}
._a{width:11.364000px;}
._b{width:13.326000px;}
._4{width:14.346000px;}
._14{width:15.444000px;}
._d{width:18.480000px;}
._10{width:19.608000px;}
._21{width:20.994000px;}
._11{width:22.944000px;}
._15{width:27.468000px;}
._12{width:28.776000px;}
._c{width:35.640000px;}
._70{width:59.100000px;}
._6d{width:66.900000px;}
._2{width:68.190000px;}
._6e{width:77.160000px;}
._6f{width:80.940000px;}
._88{width:87.360000px;}
._89{width:91.560000px;}
._71{width:98.160000px;}
._87{width:99.360000px;}
._7a{width:101.172000px;}
._76{width:102.360000px;}
._75{width:108.180000px;}
._73{width:109.560000px;}
._7e{width:112.380000px;}
._7f{width:117.180000px;}
._74{width:118.560000px;}
._8d{width:120.660000px;}
._7d{width:122.580000px;}
._7c{width:124.380000px;}
._78{width:128.904000px;}
._82{width:131.580000px;}
._81{width:137.580000px;}
._77{width:140.160000px;}
._49{width:141.840000px;}
._79{width:143.532000px;}
._83{width:153.696000px;}
._b1{width:157.500000px;}
._a1{width:159.660000px;}
._a2{width:163.860000px;}
._90{width:165.000000px;}
._91{width:166.200000px;}
._72{width:171.618000px;}
._a7{width:174.600000px;}
._b2{width:181.500000px;}
._6b{width:184.500000px;}
._4a{width:186.540000px;}
._69{width:192.900000px;}
._8e{width:195.480000px;}
._98{width:197.100000px;}
._3b{width:198.900000px;}
._ae{width:205.512000px;}
._9a{width:206.640000px;}
._9b{width:207.780000px;}
._96{width:215.808000px;}
._ac{width:221.940000px;}
._a3{width:223.440000px;}
._92{width:228.600000px;}
._95{width:235.572000px;}
._aa{width:242.172000px;}
._3d{width:243.960000px;}
._99{width:246.900000px;}
._67{width:253.140000px;}
._9c{width:255.780000px;}
._9e{width:256.800000px;}
._8b{width:258.240000px;}
._93{width:263.112000px;}
._a5{width:267.060000px;}
._a8{width:269.712000px;}
._94{width:277.932000px;}
._45{width:282.780000px;}
._a9{width:284.532000px;}
._43{width:303.180000px;}
._47{width:304.440000px;}
._8f{width:305.472000px;}
._a6{width:312.072000px;}
._18{width:313.320000px;}
._44{width:320.520000px;}
._48{width:322.860000px;}
._41{width:324.372000px;}
._2f{width:327.540000px;}
._66{width:330.852000px;}
._17{width:338.820000px;}
._3e{width:352.104000px;}
._3a{width:363.900000px;}
._3f{width:366.732000px;}
._55{width:374.400000px;}
._22{width:378.240000px;}
._5e{width:380.880000px;}
._57{width:387.600000px;}
._3c{width:394.818000px;}
._5a{width:401.940000px;}
._42{width:404.160000px;}
._68{width:408.480000px;}
._4d{width:411.600000px;}
._64{width:416.280000px;}
._86{width:418.620000px;}
._2e{width:420.714000px;}
._1c{width:454.740000px;}
._50{width:459.000000px;}
._6a{width:460.500000px;}
._53{width:470.400000px;}
._58{width:488.826000px;}
._7b{width:505.560000px;}
._4b{width:509.640000px;}
._4c{width:517.800000px;}
._52{width:522.000000px;}
._39{width:524.700000px;}
._19{width:547.914000px;}
._46{width:549.480000px;}
._a0{width:560.820000px;}
._4f{width:565.800000px;}
._1a{width:567.360000px;}
._85{width:572.760000px;}
._1b{width:581.760000px;}
._84{width:582.780000px;}
._5f{width:587.820000px;}
._1f{width:595.440000px;}
._40{width:599.220000px;}
._61{width:619.680000px;}
._28{width:632.220000px;}
._35{width:638.400000px;}
._97{width:644.340000px;}
._ab{width:650.940000px;}
._2a{width:664.080000px;}
._51{width:667.800000px;}
._80{width:677.520000px;}
._9f{width:708.360000px;}
._b0{width:714.360000px;}
._9d{width:718.380000px;}
._af{width:724.380000px;}
._1e{width:735.600000px;}
._4e{width:738.420000px;}
._63{width:745.620000px;}
._6c{width:751.080000px;}
._65{width:764.700000px;}
._5d{width:812.520000px;}
._ad{width:818.880000px;}
._54{width:821.652000px;}
._2c{width:839.100000px;}
._1d{width:848.580000px;}
._5c{width:855.060000px;}
._20{width:867.960000px;}
._5b{width:869.460000px;}
._8c{width:881.220000px;}
._59{width:883.260000px;}
._56{width:887.520000px;}
._62{width:889.440000px;}
._36{width:890.700000px;}
._27{width:894.720000px;}
._60{width:904.200000px;}
._23{width:910.452000px;}
._2b{width:933.840000px;}
._34{width:935.154000px;}
._38{width:942.174000px;}
._29{width:948.600000px;}
._26{width:958.260000px;}
._32{width:964.980000px;}
._24{width:976.560000px;}
._2d{width:979.080000px;}
._30{width:980.814000px;}
._25{width:986.460000px;}
._37{width:1020.000000px;}
._33{width:1042.440000px;}
._31{width:1070.460000px;}
.fc4{color:rgb(205,8,39);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(255,149,14);}
.fs4{font-size:38.400000px;}
.fs6{font-size:42.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:62.116428px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:68.328071px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2c{bottom:65.791500px;}
.y133{bottom:104.491500px;}
.y87{bottom:107.941500px;}
.y180{bottom:110.341500px;}
.y59{bottom:113.341500px;}
.yd1{bottom:113.641500px;}
.y2ab{bottom:115.291500px;}
.y2b{bottom:115.441500px;}
.y250{bottom:118.591500px;}
.y21b{bottom:119.941500px;}
.y22d{bottom:121.441500px;}
.y132{bottom:124.891500px;}
.y86{bottom:128.341500px;}
.y10f{bottom:131.791500px;}
.y17f{bottom:133.591500px;}
.y58{bottom:133.741500px;}
.yd0{bottom:134.041500px;}
.y2aa{bottom:135.691500px;}
.y2a{bottom:135.841500px;}
.y24f{bottom:138.991500px;}
.y2bc{bottom:139.741500px;}
.yfd{bottom:140.191500px;}
.ye2{bottom:140.341500px;}
.y22c{bottom:141.841500px;}
.y218{bottom:142.741500px;}
.y2be{bottom:144.241500px;}
.y131{bottom:145.291500px;}
.y26f{bottom:145.591500px;}
.y28e{bottom:147.691500px;}
.ya3{bottom:148.741500px;}
.y10e{bottom:152.191500px;}
.y57{bottom:154.141500px;}
.y17e{bottom:154.741500px;}
.y159{bottom:156.991500px;}
.y85{bottom:157.291500px;}
.y24e{bottom:159.391500px;}
.y2bb{bottom:160.141500px;}
.yfc{bottom:160.591500px;}
.ye1{bottom:160.741500px;}
.y22b{bottom:162.241500px;}
.ycf{bottom:162.991500px;}
.y217{bottom:163.141500px;}
.y29{bottom:164.641500px;}
.y130{bottom:165.691500px;}
.y26e{bottom:165.991500px;}
.y28d{bottom:168.091500px;}
.ya2{bottom:169.141500px;}
.y56{bottom:174.541500px;}
.y17d{bottom:175.891500px;}
.y84{bottom:177.691500px;}
.y158{bottom:180.241500px;}
.y2ba{bottom:180.541500px;}
.yfb{bottom:180.991500px;}
.ye0{bottom:181.141500px;}
.y22a{bottom:182.641500px;}
.yce{bottom:183.391500px;}
.y216{bottom:183.541500px;}
.y1a1{bottom:184.441500px;}
.y28{bottom:185.041500px;}
.y26d{bottom:186.391500px;}
.y24d{bottom:188.191500px;}
.y28c{bottom:188.491500px;}
.y21a{bottom:189.541500px;}
.y12f{bottom:194.641500px;}
.y55{bottom:194.941500px;}
.y17c{bottom:197.041500px;}
.y83{bottom:198.091500px;}
.yfa{bottom:201.391500px;}
.ydf{bottom:201.541500px;}
.ycd{bottom:203.791500px;}
.y215{bottom:203.941500px;}
.y27{bottom:205.441500px;}
.y1a0{bottom:207.691500px;}
.y24c{bottom:208.591500px;}
.y2b9{bottom:209.491500px;}
.y156{bottom:209.791500px;}
.y219{bottom:209.941500px;}
.y229{bottom:211.441500px;}
.y12e{bottom:215.041500px;}
.y54{bottom:215.341500px;}
.y28b{bottom:217.291500px;}
.y157{bottom:218.191500px;}
.y82{bottom:218.491500px;}
.yf9{bottom:221.791500px;}
.ycc{bottom:224.191500px;}
.y214{bottom:224.341500px;}
.y26{bottom:225.841500px;}
.y1ed{bottom:228.691500px;}
.y19f{bottom:228.841500px;}
.y24b{bottom:228.991500px;}
.y2b8{bottom:229.891500px;}
.yde{bottom:230.341500px;}
.y228{bottom:231.841500px;}
.y2a9{bottom:234.241500px;}
.y12d{bottom:235.441500px;}
.y26c{bottom:235.741500px;}
.y28a{bottom:237.691500px;}
.y81{bottom:238.891500px;}
.y17b{bottom:239.341500px;}
.y10d{bottom:242.191500px;}
.y53{bottom:244.291500px;}
.ycb{bottom:244.591500px;}
.y213{bottom:244.741500px;}
.y25{bottom:246.241500px;}
.y1ec{bottom:249.091500px;}
.y19e{bottom:249.991500px;}
.y2b7{bottom:250.291500px;}
.ydd{bottom:250.741500px;}
.y227{bottom:252.241500px;}
.y2a8{bottom:254.641500px;}
.y12c{bottom:255.841500px;}
.y24a{bottom:257.941500px;}
.y289{bottom:258.091500px;}
.y80{bottom:259.291500px;}
.y17a{bottom:260.491500px;}
.y10c{bottom:262.591500px;}
.y26b{bottom:264.541500px;}
.y52{bottom:264.691500px;}
.y155{bottom:268.291500px;}
.yca{bottom:269.191500px;}
.y1eb{bottom:269.491500px;}
.ydc{bottom:271.141500px;}
.y226{bottom:272.641500px;}
.y212{bottom:273.691500px;}
.y2a7{bottom:275.041500px;}
.y24{bottom:275.191500px;}
.y1c4{bottom:275.641500px;}
.y12b{bottom:276.241500px;}
.y249{bottom:278.341500px;}
.y2b6{bottom:279.091500px;}
.ya1{bottom:279.691500px;}
.y179{bottom:281.641500px;}
.y26a{bottom:284.941500px;}
.y51{bottom:285.091500px;}
.y288{bottom:287.041500px;}
.y7f{bottom:288.091500px;}
.y154{bottom:288.691500px;}
.ydb{bottom:291.541500px;}
.y19d{bottom:292.291500px;}
.y225{bottom:293.041500px;}
.y211{bottom:294.091500px;}
.y23{bottom:295.591500px;}
.y1c3{bottom:296.041500px;}
.y248{bottom:298.741500px;}
.y2b5{bottom:299.491500px;}
.ya0{bottom:300.091500px;}
.yc9{bottom:302.341500px;}
.y178{bottom:302.791500px;}
.y2a6{bottom:303.991500px;}
.y269{bottom:305.341500px;}
.y50{bottom:305.491500px;}
.y1ea{bottom:306.391500px;}
.y287{bottom:307.441500px;}
.y7e{bottom:308.491500px;}
.y153{bottom:309.091500px;}
.yda{bottom:311.941500px;}
.y12a{bottom:313.141500px;}
.y224{bottom:313.441500px;}
.y210{bottom:314.491500px;}
.y22{bottom:315.991500px;}
.y1c2{bottom:316.441500px;}
.y2b4{bottom:319.891500px;}
.y9f{bottom:320.491500px;}
.yc8{bottom:322.741500px;}
.y177{bottom:323.941500px;}
.y2a5{bottom:324.391500px;}
.y1e9{bottom:324.841500px;}
.y4f{bottom:325.891500px;}
.y247{bottom:327.541500px;}
.y7d{bottom:328.891500px;}
.y152{bottom:329.491500px;}
.yd9{bottom:332.341500px;}
.y223{bottom:333.841500px;}
.y268{bottom:334.291500px;}
.y20f{bottom:334.891500px;}
.y286{bottom:336.241500px;}
.y21{bottom:336.391500px;}
.y9e{bottom:340.891500px;}
.y19c{bottom:342.391500px;}
.yc7{bottom:343.141500px;}
.y2a4{bottom:344.791500px;}
.y176{bottom:345.091500px;}
.y4e{bottom:346.291500px;}
.y246{bottom:347.941500px;}
.y1e8{bottom:348.241500px;}
.y2b3{bottom:348.841500px;}
.y7c{bottom:349.291500px;}
.yf8{bottom:352.741500px;}
.y1c1{bottom:353.341500px;}
.y151{bottom:354.241500px;}
.y267{bottom:354.691500px;}
.y20e{bottom:355.291500px;}
.y285{bottom:356.641500px;}
.y129{bottom:357.541500px;}
.y9d{bottom:361.291500px;}
.y19b{bottom:362.791500px;}
.yc6{bottom:363.541500px;}
.y20{bottom:365.191500px;}
.y175{bottom:366.241500px;}
.y245{bottom:368.341500px;}
.y1e7{bottom:369.391500px;}
.y7b{bottom:369.691500px;}
.yf7{bottom:373.141500px;}
.y2a3{bottom:373.591500px;}
.y1c0{bottom:374.491500px;}
.y4d{bottom:375.091500px;}
.y20d{bottom:375.691500px;}
.y284{bottom:377.041500px;}
.y2b2{bottom:377.641500px;}
.y128{bottom:378.691500px;}
.y9c{bottom:381.691500px;}
.y19a{bottom:383.191500px;}
.yc5{bottom:383.941500px;}
.y1f{bottom:385.591500px;}
.y150{bottom:387.391500px;}
.y7a{bottom:390.091500px;}
.y1e6{bottom:390.541500px;}
.y1bf{bottom:391.441500px;}
.yf6{bottom:393.541500px;}
.y2a2{bottom:393.991500px;}
.y4c{bottom:395.491500px;}
.y20c{bottom:396.091500px;}
.y244{bottom:397.291500px;}
.y2b1{bottom:398.041500px;}
.y127{bottom:399.841500px;}
.yd8{bottom:402.091500px;}
.y199{bottom:403.591500px;}
.y266{bottom:403.891500px;}
.yc4{bottom:404.341500px;}
.y1e{bottom:405.991500px;}
.y14f{bottom:407.791500px;}
.y1be{bottom:408.391500px;}
.y174{bottom:408.541500px;}
.y79{bottom:410.491500px;}
.y1e5{bottom:411.691500px;}
.yf5{bottom:413.941500px;}
.y2a1{bottom:414.391500px;}
.y4b{bottom:415.891500px;}
.y243{bottom:417.691500px;}
.y2b0{bottom:418.441500px;}
.y10b{bottom:422.341500px;}
.yd7{bottom:422.491500px;}
.y198{bottom:423.991500px;}
.y265{bottom:424.291500px;}
.y20b{bottom:424.891500px;}
.y1bd{bottom:425.341500px;}
.y1d{bottom:426.391500px;}
.y14e{bottom:428.191500px;}
.y173{bottom:429.691500px;}
.y78{bottom:430.891500px;}
.y1e4{bottom:432.841500px;}
.yc3{bottom:433.291500px;}
.y4a{bottom:436.291500px;}
.y1bc{bottom:442.291500px;}
.yf4{bottom:442.741500px;}
.y2a0{bottom:443.341500px;}
.y197{bottom:444.391500px;}
.y264{bottom:444.691500px;}
.y20a{bottom:445.291500px;}
.y242{bottom:446.491500px;}
.y1c{bottom:446.791500px;}
.y14d{bottom:448.591500px;}
.y126{bottom:449.941500px;}
.y172{bottom:450.841500px;}
.y9b{bottom:451.291500px;}
.yc2{bottom:453.691500px;}
.y1e3{bottom:453.991500px;}
.y283{bottom:455.191500px;}
.y49{bottom:456.691500px;}
.y1bb{bottom:459.241500px;}
.y77{bottom:459.841500px;}
.yf3{bottom:463.141500px;}
.y29f{bottom:463.741500px;}
.y196{bottom:464.791500px;}
.y209{bottom:465.691500px;}
.y241{bottom:466.891500px;}
.y1b{bottom:467.191500px;}
.y14c{bottom:468.991500px;}
.y125{bottom:470.341500px;}
.y9a{bottom:471.691500px;}
.y171{bottom:471.991500px;}
.y263{bottom:473.641500px;}
.yc1{bottom:474.091500px;}
.y1e2{bottom:475.141500px;}
.y1ba{bottom:476.191500px;}
.y48{bottom:477.091500px;}
.y76{bottom:480.241500px;}
.yf2{bottom:483.541500px;}
.y282{bottom:484.141500px;}
.y208{bottom:486.091500px;}
.y240{bottom:487.291500px;}
.y14b{bottom:489.391500px;}
.y124{bottom:490.741500px;}
.y99{bottom:492.091500px;}
.y170{bottom:493.141500px;}
.y222{bottom:493.591500px;}
.y262{bottom:494.041500px;}
.yc0{bottom:494.491500px;}
.y1a{bottom:496.141500px;}
.y1e1{bottom:496.291500px;}
.y47{bottom:497.491500px;}
.y75{bottom:500.641500px;}
.y195{bottom:501.691500px;}
.yf1{bottom:503.941500px;}
.y281{bottom:504.541500px;}
.y207{bottom:506.491500px;}
.y23f{bottom:507.691500px;}
.y1b9{bottom:510.091500px;}
.y123{bottom:511.141500px;}
.yd6{bottom:512.491500px;}
.y29e{bottom:512.941500px;}
.y14a{bottom:513.991500px;}
.y16f{bottom:514.291500px;}
.y261{bottom:514.441500px;}
.ybf{bottom:514.891500px;}
.y19{bottom:516.541500px;}
.y1e0{bottom:517.441500px;}
.y46{bottom:517.891500px;}
.y74{bottom:521.041500px;}
.yf0{bottom:524.341500px;}
.y280{bottom:524.941500px;}
.y194{bottom:525.091500px;}
.y1b8{bottom:527.041500px;}
.y122{bottom:531.541500px;}
.yd5{bottom:532.891500px;}
.y29d{bottom:533.341500px;}
.y221{bottom:534.391500px;}
.ybe{bottom:535.291500px;}
.y16e{bottom:535.441500px;}
.y23e{bottom:536.641500px;}
.y18{bottom:536.941500px;}
.y45{bottom:538.291500px;}
.y1df{bottom:538.591500px;}
.y73{bottom:541.441500px;}
.y260{bottom:543.241500px;}
.y1b7{bottom:543.991500px;}
.yef{bottom:544.741500px;}
.y193{bottom:546.241500px;}
.y149{bottom:547.141500px;}
.y121{bottom:551.941500px;}
.y10a{bottom:553.291500px;}
.y27f{bottom:553.741500px;}
.y220{bottom:554.791500px;}
.ybd{bottom:555.691500px;}
.y206{bottom:555.841500px;}
.y16d{bottom:556.591500px;}
.y44{bottom:558.691500px;}
.y1de{bottom:559.741500px;}
.y1b6{bottom:560.941500px;}
.y72{bottom:561.841500px;}
.y25f{bottom:563.641500px;}
.y23d{bottom:565.441500px;}
.y17{bottom:565.741500px;}
.y192{bottom:567.391500px;}
.y148{bottom:567.541500px;}
.yee{bottom:569.491500px;}
.y109{bottom:573.691500px;}
.y27e{bottom:574.141500px;}
.ybc{bottom:576.091500px;}
.y205{bottom:576.241500px;}
.y16c{bottom:577.741500px;}
.y1b5{bottom:577.891500px;}
.y21f{bottom:580.141500px;}
.y1dd{bottom:580.891500px;}
.y71{bottom:582.241500px;}
.y29c{bottom:582.691500px;}
.y23c{bottom:585.841500px;}
.y16{bottom:586.141500px;}
.y43{bottom:587.641500px;}
.y147{bottom:587.941500px;}
.y191{bottom:588.541500px;}
.y120{bottom:588.841500px;}
.y25e{bottom:592.591500px;}
.y108{bottom:594.091500px;}
.y1b4{bottom:594.841500px;}
.y204{bottom:596.641500px;}
.y1db{bottom:602.041500px;}
.y70{bottom:602.641500px;}
.y27d{bottom:603.091500px;}
.ybb{bottom:604.891500px;}
.y23b{bottom:606.241500px;}
.y15{bottom:606.541500px;}
.y42{bottom:608.041500px;}
.y146{bottom:608.341500px;}
.y190{bottom:609.691500px;}
.y1b3{bottom:611.791500px;}
.y11f{bottom:612.241500px;}
.y25d{bottom:612.991500px;}
.y107{bottom:614.491500px;}
.y203{bottom:617.041500px;}
.y6f{bottom:623.041500px;}
.y1dc{bottom:623.191500px;}
.y27c{bottom:623.491500px;}
.yba{bottom:625.291500px;}
.y14{bottom:626.941500px;}
.y41{bottom:628.441500px;}
.y145{bottom:628.741500px;}
.y18f{bottom:630.841500px;}
.y98{bottom:631.441500px;}
.y11e{bottom:633.391500px;}
.y106{bottom:634.891500px;}
.y23a{bottom:635.191500px;}
.y16b{bottom:636.391500px;}
.y202{bottom:637.441500px;}
.y25c{bottom:641.791500px;}
.yd4{bottom:643.441500px;}
.y27b{bottom:643.891500px;}
.yb9{bottom:645.691500px;}
.y40{bottom:648.841500px;}
.y144{bottom:649.141500px;}
.y6e{bottom:651.841500px;}
.y18e{bottom:651.991500px;}
.y29b{bottom:652.291500px;}
.y11d{bottom:654.541500px;}
.y105{bottom:655.291500px;}
.y239{bottom:655.591500px;}
.y13{bottom:655.891500px;}
.y16a{bottom:656.791500px;}
.y201{bottom:657.841500px;}
.y25b{bottom:662.191500px;}
.y1b2{bottom:662.641500px;}
.yd3{bottom:663.841500px;}
.yb8{bottom:666.091500px;}
.y3f{bottom:669.241500px;}
.y143{bottom:669.541500px;}
.y6d{bottom:672.241500px;}
.y27a{bottom:672.691500px;}
.y18d{bottom:673.141500px;}
.y11c{bottom:675.691500px;}
.y238{bottom:675.991500px;}
.y169{bottom:677.191500px;}
.y200{bottom:678.241500px;}
.y1b1{bottom:679.591500px;}
.y1da{bottom:681.691500px;}
.y104{bottom:684.091500px;}
.yed{bottom:684.241500px;}
.yb7{bottom:686.491500px;}
.y142{bottom:689.941500px;}
.y25a{bottom:691.141500px;}
.y6c{bottom:692.641500px;}
.y279{bottom:693.091500px;}
.y21e{bottom:696.091500px;}
.y237{bottom:696.391500px;}
.y1b0{bottom:696.541500px;}
.y11b{bottom:696.841500px;}
.y168{bottom:697.591500px;}
.y3e{bottom:698.041500px;}
.y1ff{bottom:698.641500px;}
.y29a{bottom:701.641500px;}
.y1d9{bottom:702.091500px;}
.y103{bottom:704.491500px;}
.yec{bottom:704.641500px;}
.yb6{bottom:706.891500px;}
.y12{bottom:707.791500px;}
.y259{bottom:711.541500px;}
.y6b{bottom:713.041500px;}
.y1af{bottom:713.491500px;}
.y141{bottom:714.691500px;}
.y21d{bottom:716.491500px;}
.y3d{bottom:718.441500px;}
.y1fe{bottom:719.041500px;}
.y18c{bottom:719.341500px;}
.y236{bottom:719.491500px;}
.y97{bottom:721.591500px;}
.y278{bottom:722.041500px;}
.y167{bottom:722.191500px;}
.y1d8{bottom:722.491500px;}
.y102{bottom:724.891500px;}
.yeb{bottom:725.041500px;}
.yb5{bottom:727.291500px;}
.y1ae{bottom:730.441500px;}
.y11{bottom:730.741500px;}
.y6a{bottom:733.441500px;}
.y3c{bottom:738.841500px;}
.y258{bottom:740.341500px;}
.y96{bottom:741.991500px;}
.y277{bottom:742.441500px;}
.y18b{bottom:742.591500px;}
.y1d7{bottom:742.891500px;}
.y166{bottom:743.191500px;}
.y1fd{bottom:744.241500px;}
.y101{bottom:745.291500px;}
.yea{bottom:745.441500px;}
.y11a{bottom:746.941500px;}
.y1ac{bottom:747.391500px;}
.yb4{bottom:747.691500px;}
.y140{bottom:747.841500px;}
.y69{bottom:753.841500px;}
.y3b{bottom:759.241500px;}
.y257{bottom:760.741500px;}
.y95{bottom:762.391500px;}
.y276{bottom:762.841500px;}
.y18a{bottom:763.741500px;}
.y1ad{bottom:764.341500px;}
.y100{bottom:765.691500px;}
.ye9{bottom:765.841500px;}
.y119{bottom:767.341500px;}
.y10{bottom:768.091500px;}
.y13f{bottom:768.241500px;}
.y299{bottom:771.241500px;}
.y68{bottom:774.241500px;}
.y165{bottom:777.691500px;}
.y1fc{bottom:778.141500px;}
.y235{bottom:779.191500px;}
.y3a{bottom:779.641500px;}
.y1d6{bottom:779.791500px;}
.y94{bottom:782.791500px;}
.y189{bottom:784.891500px;}
.yff{bottom:786.091500px;}
.y21c{bottom:786.241500px;}
.y118{bottom:787.741500px;}
.yb3{bottom:788.491500px;}
.y13e{bottom:788.641500px;}
.y256{bottom:789.691500px;}
.y275{bottom:791.641500px;}
.yf{bottom:794.491500px;}
.y67{bottom:794.641500px;}
.y1fb{bottom:796.741500px;}
.y164{bottom:798.091500px;}
.y39{bottom:800.041500px;}
.y1d5{bottom:803.041500px;}
.y93{bottom:803.191500px;}
.y188{bottom:806.041500px;}
.y117{bottom:808.141500px;}
.ye{bottom:808.891500px;}
.y13d{bottom:809.041500px;}
.y2c3{bottom:809.491500px;}
.y255{bottom:810.091500px;}
.yfe{bottom:810.841500px;}
.y274{bottom:812.041500px;}
.y234{bottom:813.541500px;}
.y66{bottom:815.041500px;}
.yb2{bottom:817.441500px;}
.y163{bottom:818.491500px;}
.y1fa{bottom:819.991500px;}
.y2af{bottom:820.591500px;}
.y1ab{bottom:820.741500px;}
.y92{bottom:823.591500px;}
.y1d4{bottom:824.191500px;}
.y38{bottom:825.391500px;}
.y187{bottom:827.191500px;}
.y2c2{bottom:828.091500px;}
.y13c{bottom:829.441500px;}
.y233{bottom:833.941500px;}
.y65{bottom:835.441500px;}
.y116{bottom:836.941500px;}
.yd{bottom:837.841500px;}
.y162{bottom:838.891500px;}
.y273{bottom:840.991500px;}
.y1aa{bottom:841.141500px;}
.y91{bottom:843.991500px;}
.y1d3{bottom:845.341500px;}
.y2c1{bottom:846.541500px;}
.y186{bottom:848.341500px;}
.y13b{bottom:849.841500px;}
.ye8{bottom:855.841500px;}
.y115{bottom:857.341500px;}
.yb1{bottom:858.241500px;}
.y161{bottom:859.291500px;}
.y272{bottom:861.391500px;}
.y1a9{bottom:861.541500px;}
.y1f9{bottom:862.291500px;}
.yc{bottom:864.241500px;}
.y64{bottom:864.391500px;}
.y2c0{bottom:865.141500px;}
.y1d2{bottom:866.491500px;}
.y185{bottom:869.491500px;}
.y13a{bottom:870.241500px;}
.y90{bottom:872.791500px;}
.ye7{bottom:876.241500px;}
.y114{bottom:877.741500px;}
.yb0{bottom:878.641500px;}
.y160{bottom:879.691500px;}
.y271{bottom:881.791500px;}
.y1f8{bottom:883.441500px;}
.y63{bottom:884.791500px;}
.y1a8{bottom:886.291500px;}
.y1d1{bottom:887.641500px;}
.y298{bottom:890.191500px;}
.y184{bottom:890.641500px;}
.yb{bottom:893.041500px;}
.y8f{bottom:893.191500px;}
.y232{bottom:894.241500px;}
.ye6{bottom:896.641500px;}
.yaf{bottom:899.041500px;}
.y15f{bottom:900.091500px;}
.y1f7{bottom:904.591500px;}
.y62{bottom:905.191500px;}
.y113{bottom:906.691500px;}
.y139{bottom:907.591500px;}
.y254{bottom:908.641500px;}
.y1d0{bottom:908.791500px;}
.y270{bottom:910.141500px;}
.y297{bottom:910.591500px;}
.y183{bottom:911.791500px;}
.y37{bottom:911.941500px;}
.y8e{bottom:913.591500px;}
.ya{bottom:915.991500px;}
.y231{bottom:916.591500px;}
.ye5{bottom:917.041500px;}
.y1a7{bottom:918.841500px;}
.yae{bottom:919.441500px;}
.y15e{bottom:920.491500px;}
.y61{bottom:925.591500px;}
.y1f6{bottom:925.741500px;}
.y112{bottom:927.091500px;}
.y253{bottom:929.041500px;}
.y1cf{bottom:929.941500px;}
.y296{bottom:930.991500px;}
.y36{bottom:932.341500px;}
.y182{bottom:932.941500px;}
.y2bf{bottom:933.841500px;}
.y8d{bottom:933.991500px;}
.y9{bottom:936.391500px;}
.ye4{bottom:937.441500px;}
.y230{bottom:938.791500px;}
.y2bd{bottom:938.941500px;}
.y2ae{bottom:939.541500px;}
.yad{bottom:939.841500px;}
.y138{bottom:940.741500px;}
.y15d{bottom:940.891500px;}
.y1a6{bottom:942.091500px;}
.y60{bottom:945.991500px;}
.y1f5{bottom:946.891500px;}
.y252{bottom:949.441500px;}
.y1ce{bottom:951.091500px;}
.y111{bottom:951.691500px;}
.y35{bottom:952.741500px;}
.y181{bottom:954.091500px;}
.y8c{bottom:954.391500px;}
.ye3{bottom:957.841500px;}
.y295{bottom:959.941500px;}
.yac{bottom:960.241500px;}
.y137{bottom:961.141500px;}
.y8{bottom:962.791500px;}
.y1a5{bottom:963.241500px;}
.y15c{bottom:965.491500px;}
.y5f{bottom:966.391500px;}
.y1f4{bottom:968.041500px;}
.y1cd{bottom:972.241500px;}
.y110{bottom:972.691500px;}
.y8b{bottom:974.791500px;}
.y251{bottom:978.241500px;}
.y294{bottom:980.341500px;}
.yab{bottom:980.641500px;}
.y7{bottom:981.391500px;}
.y22f{bottom:983.341500px;}
.y1a4{bottom:984.391500px;}
.y136{bottom:985.891500px;}
.y5e{bottom:986.791500px;}
.y1f3{bottom:989.191500px;}
.y34{bottom:990.241500px;}
.y1cc{bottom:993.391500px;}
.y8a{bottom:995.191500px;}
.y15b{bottom:998.641500px;}
.y293{bottom:1000.741500px;}
.yaa{bottom:1001.041500px;}
.y1a3{bottom:1005.541500px;}
.y22e{bottom:1005.691500px;}
.y5d{bottom:1007.191500px;}
.y2ad{bottom:1009.141500px;}
.y1f2{bottom:1010.341500px;}
.y6{bottom:1013.491500px;}
.y1cb{bottom:1014.541500px;}
.y89{bottom:1015.591500px;}
.y33{bottom:1019.041500px;}
.y1a2{bottom:1026.691500px;}
.y5c{bottom:1027.591500px;}
.y292{bottom:1029.541500px;}
.ya9{bottom:1029.841500px;}
.y1f1{bottom:1031.491500px;}
.y1ca{bottom:1035.691500px;}
.y88{bottom:1035.991500px;}
.y135{bottom:1039.441500px;}
.y5{bottom:1041.241500px;}
.y32{bottom:1047.991500px;}
.y291{bottom:1049.941500px;}
.ya8{bottom:1050.241500px;}
.y1f0{bottom:1052.641500px;}
.y5b{bottom:1056.391500px;}
.y1c9{bottom:1056.841500px;}
.y134{bottom:1064.041500px;}
.y31{bottom:1068.391500px;}
.y290{bottom:1070.341500px;}
.ya7{bottom:1070.641500px;}
.y1ef{bottom:1073.791500px;}
.y5a{bottom:1076.791500px;}
.y1c6{bottom:1077.991500px;}
.y2ac{bottom:1078.291500px;}
.yd2{bottom:1088.791500px;}
.ya6{bottom:1091.041500px;}
.y1ee{bottom:1094.941500px;}
.y30{bottom:1097.191500px;}
.y28f{bottom:1098.691500px;}
.y1c8{bottom:1099.141500px;}
.y15a{bottom:1109.191500px;}
.y4{bottom:1115.341500px;}
.ya5{bottom:1115.791500px;}
.y1c7{bottom:1116.091500px;}
.y2f{bottom:1117.591500px;}
.ya4{bottom:1136.791500px;}
.y1c5{bottom:1137.241500px;}
.y2e{bottom:1137.991500px;}
.y3{bottom:1140.541500px;}
.y2{bottom:1176.841500px;}
.y2d{bottom:1181.941500px;}
.h9{height:26.662500px;}
.hc{height:31.500000px;}
.h7{height:32.137500px;}
.hf{height:41.777344px;}
.h11{height:43.250989px;}
.h8{height:45.826172px;}
.he{height:45.955078px;}
.ha{height:47.576088px;}
.hd{height:50.132812px;}
.h4{height:50.214844px;}
.hb{height:55.236328px;}
.h6{height:56.137500px;}
.h12{height:60.257812px;}
.h5{height:62.666016px;}
.h3{height:70.300781px;}
.h10{height:83.814844px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:85.200000px;}
.x1b{left:89.550000px;}
.x19{left:97.950000px;}
.x55{left:101.700000px;}
.x1e{left:105.900000px;}
.x25{left:112.200000px;}
.xf{left:139.200000px;}
.x35{left:142.950000px;}
.x32{left:147.000000px;}
.xa{left:148.050000px;}
.x6{left:152.400000px;}
.x7{left:153.600000px;}
.x18{left:154.800000px;}
.x17{left:159.450000px;}
.x53{left:177.450000px;}
.x4d{left:180.900000px;}
.x8{left:183.300000px;}
.x4{left:190.800000px;}
.x2e{left:195.900000px;}
.x10{left:207.000000px;}
.x3d{left:213.000000px;}
.x1f{left:219.600000px;}
.x49{left:222.300000px;}
.x2a{left:230.250000px;}
.xb{left:234.000000px;}
.x9{left:244.200000px;}
.x26{left:248.850000px;}
.x2d{left:253.950000px;}
.x3e{left:255.300000px;}
.x54{left:258.000000px;}
.x2f{left:261.000000px;}
.x14{left:264.600000px;}
.x29{left:265.800000px;}
.x36{left:273.450000px;}
.x5{left:280.500000px;}
.x1d{left:290.400000px;}
.x16{left:292.500000px;}
.x13{left:297.000000px;}
.x1c{left:299.250000px;}
.x43{left:306.000000px;}
.x2c{left:311.550000px;}
.xd{left:317.700000px;}
.x2b{left:320.700000px;}
.x24{left:328.800000px;}
.x2{left:364.500000px;}
.x1a{left:366.000000px;}
.x3f{left:367.050000px;}
.x11{left:369.300000px;}
.xc{left:378.600000px;}
.x20{left:381.600000px;}
.x12{left:385.950000px;}
.x4a{left:404.250000px;}
.x4e{left:405.450000px;}
.x44{left:406.650000px;}
.x21{left:420.750000px;}
.x37{left:424.800000px;}
.x15{left:435.150000px;}
.x38{left:464.100000px;}
.x39{left:469.500000px;}
.x3a{left:477.750000px;}
.x40{left:503.400000px;}
.x27{left:546.150000px;}
.x28{left:554.400000px;}
.x45{left:564.300000px;}
.x46{left:569.250000px;}
.x22{left:574.950000px;}
.x3b{left:584.550000px;}
.x3c{left:608.550000px;}
.x3{left:613.800000px;}
.x23{left:622.050000px;}
.x30{left:623.400000px;}
.x41{left:629.100000px;}
.x31{left:631.800000px;}
.x47{left:642.600000px;}
.x1{left:659.850000px;}
.x48{left:663.000000px;}
.x51{left:730.800000px;}
.x4f{left:734.550000px;}
.x4b{left:737.850000px;}
.x52{left:739.200000px;}
.x33{left:740.400000px;}
.x50{left:742.800000px;}
.x4c{left:746.100000px;}
.x34{left:748.800000px;}
.x42{left:765.150000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:29.866667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.181333pt;}
.ls9{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.416000pt;}
.ls2{letter-spacing:1.866667pt;}
.ls4{letter-spacing:75.173333pt;}
.wsc{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.184016pt;}
.ws1{word-spacing:-14.666667pt;}
.ws7{word-spacing:-13.386667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:-8.533333pt;}
.ws4{word-spacing:-0.037333pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:213.973333pt;}
.ws9{word-spacing:278.133333pt;}
.ws8{word-spacing:511.520000pt;}
.wsb{word-spacing:632.106667pt;}
.wsa{word-spacing:632.640000pt;}
._a4{margin-left:-1592.000000pt;}
._8a{margin-left:-1583.520000pt;}
._b4{margin-left:-9.248000pt;}
._b3{margin-left:-7.802667pt;}
._16{margin-left:-6.458667pt;}
._5{margin-left:-5.280000pt;}
._13{margin-left:-3.781333pt;}
._6{margin-left:-2.837333pt;}
._0{margin-left:-1.546667pt;}
._1{width:0.906667pt;}
._3{width:1.802667pt;}
._8{width:3.306667pt;}
._7{width:4.625067pt;}
._e{width:6.218667pt;}
._f{width:7.296000pt;}
._9{width:8.554667pt;}
._a{width:10.101333pt;}
._b{width:11.845333pt;}
._4{width:12.752000pt;}
._14{width:13.728000pt;}
._d{width:16.426667pt;}
._10{width:17.429333pt;}
._21{width:18.661333pt;}
._11{width:20.394667pt;}
._15{width:24.416000pt;}
._12{width:25.578667pt;}
._c{width:31.680000pt;}
._70{width:52.533333pt;}
._6d{width:59.466667pt;}
._2{width:60.613333pt;}
._6e{width:68.586667pt;}
._6f{width:71.946667pt;}
._88{width:77.653333pt;}
._89{width:81.386667pt;}
._71{width:87.253333pt;}
._87{width:88.320000pt;}
._7a{width:89.930667pt;}
._76{width:90.986667pt;}
._75{width:96.160000pt;}
._73{width:97.386667pt;}
._7e{width:99.893333pt;}
._7f{width:104.160000pt;}
._74{width:105.386667pt;}
._8d{width:107.253333pt;}
._7d{width:108.960000pt;}
._7c{width:110.560000pt;}
._78{width:114.581333pt;}
._82{width:116.960000pt;}
._81{width:122.293333pt;}
._77{width:124.586667pt;}
._49{width:126.080000pt;}
._79{width:127.584000pt;}
._83{width:136.618667pt;}
._b1{width:140.000000pt;}
._a1{width:141.920000pt;}
._a2{width:145.653333pt;}
._90{width:146.666667pt;}
._91{width:147.733333pt;}
._72{width:152.549333pt;}
._a7{width:155.200000pt;}
._b2{width:161.333333pt;}
._6b{width:164.000000pt;}
._4a{width:165.813333pt;}
._69{width:171.466667pt;}
._8e{width:173.760000pt;}
._98{width:175.200000pt;}
._3b{width:176.800000pt;}
._ae{width:182.677333pt;}
._9a{width:183.680000pt;}
._9b{width:184.693333pt;}
._96{width:191.829333pt;}
._ac{width:197.280000pt;}
._a3{width:198.613333pt;}
._92{width:203.200000pt;}
._95{width:209.397333pt;}
._aa{width:215.264000pt;}
._3d{width:216.853333pt;}
._99{width:219.466667pt;}
._67{width:225.013333pt;}
._9c{width:227.360000pt;}
._9e{width:228.266667pt;}
._8b{width:229.546667pt;}
._93{width:233.877333pt;}
._a5{width:237.386667pt;}
._a8{width:239.744000pt;}
._94{width:247.050667pt;}
._45{width:251.360000pt;}
._a9{width:252.917333pt;}
._43{width:269.493333pt;}
._47{width:270.613333pt;}
._8f{width:271.530667pt;}
._a6{width:277.397333pt;}
._18{width:278.506667pt;}
._44{width:284.906667pt;}
._48{width:286.986667pt;}
._41{width:288.330667pt;}
._2f{width:291.146667pt;}
._66{width:294.090667pt;}
._17{width:301.173333pt;}
._3e{width:312.981333pt;}
._3a{width:323.466667pt;}
._3f{width:325.984000pt;}
._55{width:332.800000pt;}
._22{width:336.213333pt;}
._5e{width:338.560000pt;}
._57{width:344.533333pt;}
._3c{width:350.949333pt;}
._5a{width:357.280000pt;}
._42{width:359.253333pt;}
._68{width:363.093333pt;}
._4d{width:365.866667pt;}
._64{width:370.026667pt;}
._86{width:372.106667pt;}
._2e{width:373.968000pt;}
._1c{width:404.213333pt;}
._50{width:408.000000pt;}
._6a{width:409.333333pt;}
._53{width:418.133333pt;}
._58{width:434.512000pt;}
._7b{width:449.386667pt;}
._4b{width:453.013333pt;}
._4c{width:460.266667pt;}
._52{width:464.000000pt;}
._39{width:466.400000pt;}
._19{width:487.034667pt;}
._46{width:488.426667pt;}
._a0{width:498.506667pt;}
._4f{width:502.933333pt;}
._1a{width:504.320000pt;}
._85{width:509.120000pt;}
._1b{width:517.120000pt;}
._84{width:518.026667pt;}
._5f{width:522.506667pt;}
._1f{width:529.280000pt;}
._40{width:532.640000pt;}
._61{width:550.826667pt;}
._28{width:561.973333pt;}
._35{width:567.466667pt;}
._97{width:572.746667pt;}
._ab{width:578.613333pt;}
._2a{width:590.293333pt;}
._51{width:593.600000pt;}
._80{width:602.240000pt;}
._9f{width:629.653333pt;}
._b0{width:634.986667pt;}
._9d{width:638.560000pt;}
._af{width:643.893333pt;}
._1e{width:653.866667pt;}
._4e{width:656.373333pt;}
._63{width:662.773333pt;}
._6c{width:667.626667pt;}
._65{width:679.733333pt;}
._5d{width:722.240000pt;}
._ad{width:727.893333pt;}
._54{width:730.357333pt;}
._2c{width:745.866667pt;}
._1d{width:754.293333pt;}
._5c{width:760.053333pt;}
._20{width:771.520000pt;}
._5b{width:772.853333pt;}
._8c{width:783.306667pt;}
._59{width:785.120000pt;}
._56{width:788.906667pt;}
._62{width:790.613333pt;}
._36{width:791.733333pt;}
._27{width:795.306667pt;}
._60{width:803.733333pt;}
._23{width:809.290667pt;}
._2b{width:830.080000pt;}
._34{width:831.248000pt;}
._38{width:837.488000pt;}
._29{width:843.200000pt;}
._26{width:851.786667pt;}
._32{width:857.760000pt;}
._24{width:868.053333pt;}
._2d{width:870.293333pt;}
._30{width:871.834667pt;}
._25{width:876.853333pt;}
._37{width:906.666667pt;}
._33{width:926.613333pt;}
._31{width:951.520000pt;}
.fs4{font-size:34.133333pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:55.214603pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:60.736063pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2c{bottom:58.481333pt;}
.y133{bottom:92.881333pt;}
.y87{bottom:95.948000pt;}
.y180{bottom:98.081333pt;}
.y59{bottom:100.748000pt;}
.yd1{bottom:101.014667pt;}
.y2ab{bottom:102.481333pt;}
.y2b{bottom:102.614667pt;}
.y250{bottom:105.414667pt;}
.y21b{bottom:106.614667pt;}
.y22d{bottom:107.948000pt;}
.y132{bottom:111.014667pt;}
.y86{bottom:114.081333pt;}
.y10f{bottom:117.148000pt;}
.y17f{bottom:118.748000pt;}
.y58{bottom:118.881333pt;}
.yd0{bottom:119.148000pt;}
.y2aa{bottom:120.614667pt;}
.y2a{bottom:120.748000pt;}
.y24f{bottom:123.548000pt;}
.y2bc{bottom:124.214667pt;}
.yfd{bottom:124.614667pt;}
.ye2{bottom:124.748000pt;}
.y22c{bottom:126.081333pt;}
.y218{bottom:126.881333pt;}
.y2be{bottom:128.214667pt;}
.y131{bottom:129.148000pt;}
.y26f{bottom:129.414667pt;}
.y28e{bottom:131.281333pt;}
.ya3{bottom:132.214667pt;}
.y10e{bottom:135.281333pt;}
.y57{bottom:137.014667pt;}
.y17e{bottom:137.548000pt;}
.y159{bottom:139.548000pt;}
.y85{bottom:139.814667pt;}
.y24e{bottom:141.681333pt;}
.y2bb{bottom:142.348000pt;}
.yfc{bottom:142.748000pt;}
.ye1{bottom:142.881333pt;}
.y22b{bottom:144.214667pt;}
.ycf{bottom:144.881333pt;}
.y217{bottom:145.014667pt;}
.y29{bottom:146.348000pt;}
.y130{bottom:147.281333pt;}
.y26e{bottom:147.548000pt;}
.y28d{bottom:149.414667pt;}
.ya2{bottom:150.348000pt;}
.y56{bottom:155.148000pt;}
.y17d{bottom:156.348000pt;}
.y84{bottom:157.948000pt;}
.y158{bottom:160.214667pt;}
.y2ba{bottom:160.481333pt;}
.yfb{bottom:160.881333pt;}
.ye0{bottom:161.014667pt;}
.y22a{bottom:162.348000pt;}
.yce{bottom:163.014667pt;}
.y216{bottom:163.148000pt;}
.y1a1{bottom:163.948000pt;}
.y28{bottom:164.481333pt;}
.y26d{bottom:165.681333pt;}
.y24d{bottom:167.281333pt;}
.y28c{bottom:167.548000pt;}
.y21a{bottom:168.481333pt;}
.y12f{bottom:173.014667pt;}
.y55{bottom:173.281333pt;}
.y17c{bottom:175.148000pt;}
.y83{bottom:176.081333pt;}
.yfa{bottom:179.014667pt;}
.ydf{bottom:179.148000pt;}
.ycd{bottom:181.148000pt;}
.y215{bottom:181.281333pt;}
.y27{bottom:182.614667pt;}
.y1a0{bottom:184.614667pt;}
.y24c{bottom:185.414667pt;}
.y2b9{bottom:186.214667pt;}
.y156{bottom:186.481333pt;}
.y219{bottom:186.614667pt;}
.y229{bottom:187.948000pt;}
.y12e{bottom:191.148000pt;}
.y54{bottom:191.414667pt;}
.y28b{bottom:193.148000pt;}
.y157{bottom:193.948000pt;}
.y82{bottom:194.214667pt;}
.yf9{bottom:197.148000pt;}
.ycc{bottom:199.281333pt;}
.y214{bottom:199.414667pt;}
.y26{bottom:200.748000pt;}
.y1ed{bottom:203.281333pt;}
.y19f{bottom:203.414667pt;}
.y24b{bottom:203.548000pt;}
.y2b8{bottom:204.348000pt;}
.yde{bottom:204.748000pt;}
.y228{bottom:206.081333pt;}
.y2a9{bottom:208.214667pt;}
.y12d{bottom:209.281333pt;}
.y26c{bottom:209.548000pt;}
.y28a{bottom:211.281333pt;}
.y81{bottom:212.348000pt;}
.y17b{bottom:212.748000pt;}
.y10d{bottom:215.281333pt;}
.y53{bottom:217.148000pt;}
.ycb{bottom:217.414667pt;}
.y213{bottom:217.548000pt;}
.y25{bottom:218.881333pt;}
.y1ec{bottom:221.414667pt;}
.y19e{bottom:222.214667pt;}
.y2b7{bottom:222.481333pt;}
.ydd{bottom:222.881333pt;}
.y227{bottom:224.214667pt;}
.y2a8{bottom:226.348000pt;}
.y12c{bottom:227.414667pt;}
.y24a{bottom:229.281333pt;}
.y289{bottom:229.414667pt;}
.y80{bottom:230.481333pt;}
.y17a{bottom:231.548000pt;}
.y10c{bottom:233.414667pt;}
.y26b{bottom:235.148000pt;}
.y52{bottom:235.281333pt;}
.y155{bottom:238.481333pt;}
.yca{bottom:239.281333pt;}
.y1eb{bottom:239.548000pt;}
.ydc{bottom:241.014667pt;}
.y226{bottom:242.348000pt;}
.y212{bottom:243.281333pt;}
.y2a7{bottom:244.481333pt;}
.y24{bottom:244.614667pt;}
.y1c4{bottom:245.014667pt;}
.y12b{bottom:245.548000pt;}
.y249{bottom:247.414667pt;}
.y2b6{bottom:248.081333pt;}
.ya1{bottom:248.614667pt;}
.y179{bottom:250.348000pt;}
.y26a{bottom:253.281333pt;}
.y51{bottom:253.414667pt;}
.y288{bottom:255.148000pt;}
.y7f{bottom:256.081333pt;}
.y154{bottom:256.614667pt;}
.ydb{bottom:259.148000pt;}
.y19d{bottom:259.814667pt;}
.y225{bottom:260.481333pt;}
.y211{bottom:261.414667pt;}
.y23{bottom:262.748000pt;}
.y1c3{bottom:263.148000pt;}
.y248{bottom:265.548000pt;}
.y2b5{bottom:266.214667pt;}
.ya0{bottom:266.748000pt;}
.yc9{bottom:268.748000pt;}
.y178{bottom:269.148000pt;}
.y2a6{bottom:270.214667pt;}
.y269{bottom:271.414667pt;}
.y50{bottom:271.548000pt;}
.y1ea{bottom:272.348000pt;}
.y287{bottom:273.281333pt;}
.y7e{bottom:274.214667pt;}
.y153{bottom:274.748000pt;}
.yda{bottom:277.281333pt;}
.y12a{bottom:278.348000pt;}
.y224{bottom:278.614667pt;}
.y210{bottom:279.548000pt;}
.y22{bottom:280.881333pt;}
.y1c2{bottom:281.281333pt;}
.y2b4{bottom:284.348000pt;}
.y9f{bottom:284.881333pt;}
.yc8{bottom:286.881333pt;}
.y177{bottom:287.948000pt;}
.y2a5{bottom:288.348000pt;}
.y1e9{bottom:288.748000pt;}
.y4f{bottom:289.681333pt;}
.y247{bottom:291.148000pt;}
.y7d{bottom:292.348000pt;}
.y152{bottom:292.881333pt;}
.yd9{bottom:295.414667pt;}
.y223{bottom:296.748000pt;}
.y268{bottom:297.148000pt;}
.y20f{bottom:297.681333pt;}
.y286{bottom:298.881333pt;}
.y21{bottom:299.014667pt;}
.y9e{bottom:303.014667pt;}
.y19c{bottom:304.348000pt;}
.yc7{bottom:305.014667pt;}
.y2a4{bottom:306.481333pt;}
.y176{bottom:306.748000pt;}
.y4e{bottom:307.814667pt;}
.y246{bottom:309.281333pt;}
.y1e8{bottom:309.548000pt;}
.y2b3{bottom:310.081333pt;}
.y7c{bottom:310.481333pt;}
.yf8{bottom:313.548000pt;}
.y1c1{bottom:314.081333pt;}
.y151{bottom:314.881333pt;}
.y267{bottom:315.281333pt;}
.y20e{bottom:315.814667pt;}
.y285{bottom:317.014667pt;}
.y129{bottom:317.814667pt;}
.y9d{bottom:321.148000pt;}
.y19b{bottom:322.481333pt;}
.yc6{bottom:323.148000pt;}
.y20{bottom:324.614667pt;}
.y175{bottom:325.548000pt;}
.y245{bottom:327.414667pt;}
.y1e7{bottom:328.348000pt;}
.y7b{bottom:328.614667pt;}
.yf7{bottom:331.681333pt;}
.y2a3{bottom:332.081333pt;}
.y1c0{bottom:332.881333pt;}
.y4d{bottom:333.414667pt;}
.y20d{bottom:333.948000pt;}
.y284{bottom:335.148000pt;}
.y2b2{bottom:335.681333pt;}
.y128{bottom:336.614667pt;}
.y9c{bottom:339.281333pt;}
.y19a{bottom:340.614667pt;}
.yc5{bottom:341.281333pt;}
.y1f{bottom:342.748000pt;}
.y150{bottom:344.348000pt;}
.y7a{bottom:346.748000pt;}
.y1e6{bottom:347.148000pt;}
.y1bf{bottom:347.948000pt;}
.yf6{bottom:349.814667pt;}
.y2a2{bottom:350.214667pt;}
.y4c{bottom:351.548000pt;}
.y20c{bottom:352.081333pt;}
.y244{bottom:353.148000pt;}
.y2b1{bottom:353.814667pt;}
.y127{bottom:355.414667pt;}
.yd8{bottom:357.414667pt;}
.y199{bottom:358.748000pt;}
.y266{bottom:359.014667pt;}
.yc4{bottom:359.414667pt;}
.y1e{bottom:360.881333pt;}
.y14f{bottom:362.481333pt;}
.y1be{bottom:363.014667pt;}
.y174{bottom:363.148000pt;}
.y79{bottom:364.881333pt;}
.y1e5{bottom:365.948000pt;}
.yf5{bottom:367.948000pt;}
.y2a1{bottom:368.348000pt;}
.y4b{bottom:369.681333pt;}
.y243{bottom:371.281333pt;}
.y2b0{bottom:371.948000pt;}
.y10b{bottom:375.414667pt;}
.yd7{bottom:375.548000pt;}
.y198{bottom:376.881333pt;}
.y265{bottom:377.148000pt;}
.y20b{bottom:377.681333pt;}
.y1bd{bottom:378.081333pt;}
.y1d{bottom:379.014667pt;}
.y14e{bottom:380.614667pt;}
.y173{bottom:381.948000pt;}
.y78{bottom:383.014667pt;}
.y1e4{bottom:384.748000pt;}
.yc3{bottom:385.148000pt;}
.y4a{bottom:387.814667pt;}
.y1bc{bottom:393.148000pt;}
.yf4{bottom:393.548000pt;}
.y2a0{bottom:394.081333pt;}
.y197{bottom:395.014667pt;}
.y264{bottom:395.281333pt;}
.y20a{bottom:395.814667pt;}
.y242{bottom:396.881333pt;}
.y1c{bottom:397.148000pt;}
.y14d{bottom:398.748000pt;}
.y126{bottom:399.948000pt;}
.y172{bottom:400.748000pt;}
.y9b{bottom:401.148000pt;}
.yc2{bottom:403.281333pt;}
.y1e3{bottom:403.548000pt;}
.y283{bottom:404.614667pt;}
.y49{bottom:405.948000pt;}
.y1bb{bottom:408.214667pt;}
.y77{bottom:408.748000pt;}
.yf3{bottom:411.681333pt;}
.y29f{bottom:412.214667pt;}
.y196{bottom:413.148000pt;}
.y209{bottom:413.948000pt;}
.y241{bottom:415.014667pt;}
.y1b{bottom:415.281333pt;}
.y14c{bottom:416.881333pt;}
.y125{bottom:418.081333pt;}
.y9a{bottom:419.281333pt;}
.y171{bottom:419.548000pt;}
.y263{bottom:421.014667pt;}
.yc1{bottom:421.414667pt;}
.y1e2{bottom:422.348000pt;}
.y1ba{bottom:423.281333pt;}
.y48{bottom:424.081333pt;}
.y76{bottom:426.881333pt;}
.yf2{bottom:429.814667pt;}
.y282{bottom:430.348000pt;}
.y208{bottom:432.081333pt;}
.y240{bottom:433.148000pt;}
.y14b{bottom:435.014667pt;}
.y124{bottom:436.214667pt;}
.y99{bottom:437.414667pt;}
.y170{bottom:438.348000pt;}
.y222{bottom:438.748000pt;}
.y262{bottom:439.148000pt;}
.yc0{bottom:439.548000pt;}
.y1a{bottom:441.014667pt;}
.y1e1{bottom:441.148000pt;}
.y47{bottom:442.214667pt;}
.y75{bottom:445.014667pt;}
.y195{bottom:445.948000pt;}
.yf1{bottom:447.948000pt;}
.y281{bottom:448.481333pt;}
.y207{bottom:450.214667pt;}
.y23f{bottom:451.281333pt;}
.y1b9{bottom:453.414667pt;}
.y123{bottom:454.348000pt;}
.yd6{bottom:455.548000pt;}
.y29e{bottom:455.948000pt;}
.y14a{bottom:456.881333pt;}
.y16f{bottom:457.148000pt;}
.y261{bottom:457.281333pt;}
.ybf{bottom:457.681333pt;}
.y19{bottom:459.148000pt;}
.y1e0{bottom:459.948000pt;}
.y46{bottom:460.348000pt;}
.y74{bottom:463.148000pt;}
.yf0{bottom:466.081333pt;}
.y280{bottom:466.614667pt;}
.y194{bottom:466.748000pt;}
.y1b8{bottom:468.481333pt;}
.y122{bottom:472.481333pt;}
.yd5{bottom:473.681333pt;}
.y29d{bottom:474.081333pt;}
.y221{bottom:475.014667pt;}
.ybe{bottom:475.814667pt;}
.y16e{bottom:475.948000pt;}
.y23e{bottom:477.014667pt;}
.y18{bottom:477.281333pt;}
.y45{bottom:478.481333pt;}
.y1df{bottom:478.748000pt;}
.y73{bottom:481.281333pt;}
.y260{bottom:482.881333pt;}
.y1b7{bottom:483.548000pt;}
.yef{bottom:484.214667pt;}
.y193{bottom:485.548000pt;}
.y149{bottom:486.348000pt;}
.y121{bottom:490.614667pt;}
.y10a{bottom:491.814667pt;}
.y27f{bottom:492.214667pt;}
.y220{bottom:493.148000pt;}
.ybd{bottom:493.948000pt;}
.y206{bottom:494.081333pt;}
.y16d{bottom:494.748000pt;}
.y44{bottom:496.614667pt;}
.y1de{bottom:497.548000pt;}
.y1b6{bottom:498.614667pt;}
.y72{bottom:499.414667pt;}
.y25f{bottom:501.014667pt;}
.y23d{bottom:502.614667pt;}
.y17{bottom:502.881333pt;}
.y192{bottom:504.348000pt;}
.y148{bottom:504.481333pt;}
.yee{bottom:506.214667pt;}
.y109{bottom:509.948000pt;}
.y27e{bottom:510.348000pt;}
.ybc{bottom:512.081333pt;}
.y205{bottom:512.214667pt;}
.y16c{bottom:513.548000pt;}
.y1b5{bottom:513.681333pt;}
.y21f{bottom:515.681333pt;}
.y1dd{bottom:516.348000pt;}
.y71{bottom:517.548000pt;}
.y29c{bottom:517.948000pt;}
.y23c{bottom:520.748000pt;}
.y16{bottom:521.014667pt;}
.y43{bottom:522.348000pt;}
.y147{bottom:522.614667pt;}
.y191{bottom:523.148000pt;}
.y120{bottom:523.414667pt;}
.y25e{bottom:526.748000pt;}
.y108{bottom:528.081333pt;}
.y1b4{bottom:528.748000pt;}
.y204{bottom:530.348000pt;}
.y1db{bottom:535.148000pt;}
.y70{bottom:535.681333pt;}
.y27d{bottom:536.081333pt;}
.ybb{bottom:537.681333pt;}
.y23b{bottom:538.881333pt;}
.y15{bottom:539.148000pt;}
.y42{bottom:540.481333pt;}
.y146{bottom:540.748000pt;}
.y190{bottom:541.948000pt;}
.y1b3{bottom:543.814667pt;}
.y11f{bottom:544.214667pt;}
.y25d{bottom:544.881333pt;}
.y107{bottom:546.214667pt;}
.y203{bottom:548.481333pt;}
.y6f{bottom:553.814667pt;}
.y1dc{bottom:553.948000pt;}
.y27c{bottom:554.214667pt;}
.yba{bottom:555.814667pt;}
.y14{bottom:557.281333pt;}
.y41{bottom:558.614667pt;}
.y145{bottom:558.881333pt;}
.y18f{bottom:560.748000pt;}
.y98{bottom:561.281333pt;}
.y11e{bottom:563.014667pt;}
.y106{bottom:564.348000pt;}
.y23a{bottom:564.614667pt;}
.y16b{bottom:565.681333pt;}
.y202{bottom:566.614667pt;}
.y25c{bottom:570.481333pt;}
.yd4{bottom:571.948000pt;}
.y27b{bottom:572.348000pt;}
.yb9{bottom:573.948000pt;}
.y40{bottom:576.748000pt;}
.y144{bottom:577.014667pt;}
.y6e{bottom:579.414667pt;}
.y18e{bottom:579.548000pt;}
.y29b{bottom:579.814667pt;}
.y11d{bottom:581.814667pt;}
.y105{bottom:582.481333pt;}
.y239{bottom:582.748000pt;}
.y13{bottom:583.014667pt;}
.y16a{bottom:583.814667pt;}
.y201{bottom:584.748000pt;}
.y25b{bottom:588.614667pt;}
.y1b2{bottom:589.014667pt;}
.yd3{bottom:590.081333pt;}
.yb8{bottom:592.081333pt;}
.y3f{bottom:594.881333pt;}
.y143{bottom:595.148000pt;}
.y6d{bottom:597.548000pt;}
.y27a{bottom:597.948000pt;}
.y18d{bottom:598.348000pt;}
.y11c{bottom:600.614667pt;}
.y238{bottom:600.881333pt;}
.y169{bottom:601.948000pt;}
.y200{bottom:602.881333pt;}
.y1b1{bottom:604.081333pt;}
.y1da{bottom:605.948000pt;}
.y104{bottom:608.081333pt;}
.yed{bottom:608.214667pt;}
.yb7{bottom:610.214667pt;}
.y142{bottom:613.281333pt;}
.y25a{bottom:614.348000pt;}
.y6c{bottom:615.681333pt;}
.y279{bottom:616.081333pt;}
.y21e{bottom:618.748000pt;}
.y237{bottom:619.014667pt;}
.y1b0{bottom:619.148000pt;}
.y11b{bottom:619.414667pt;}
.y168{bottom:620.081333pt;}
.y3e{bottom:620.481333pt;}
.y1ff{bottom:621.014667pt;}
.y29a{bottom:623.681333pt;}
.y1d9{bottom:624.081333pt;}
.y103{bottom:626.214667pt;}
.yec{bottom:626.348000pt;}
.yb6{bottom:628.348000pt;}
.y12{bottom:629.148000pt;}
.y259{bottom:632.481333pt;}
.y6b{bottom:633.814667pt;}
.y1af{bottom:634.214667pt;}
.y141{bottom:635.281333pt;}
.y21d{bottom:636.881333pt;}
.y3d{bottom:638.614667pt;}
.y1fe{bottom:639.148000pt;}
.y18c{bottom:639.414667pt;}
.y236{bottom:639.548000pt;}
.y97{bottom:641.414667pt;}
.y278{bottom:641.814667pt;}
.y167{bottom:641.948000pt;}
.y1d8{bottom:642.214667pt;}
.y102{bottom:644.348000pt;}
.yeb{bottom:644.481333pt;}
.yb5{bottom:646.481333pt;}
.y1ae{bottom:649.281333pt;}
.y11{bottom:649.548000pt;}
.y6a{bottom:651.948000pt;}
.y3c{bottom:656.748000pt;}
.y258{bottom:658.081333pt;}
.y96{bottom:659.548000pt;}
.y277{bottom:659.948000pt;}
.y18b{bottom:660.081333pt;}
.y1d7{bottom:660.348000pt;}
.y166{bottom:660.614667pt;}
.y1fd{bottom:661.548000pt;}
.y101{bottom:662.481333pt;}
.yea{bottom:662.614667pt;}
.y11a{bottom:663.948000pt;}
.y1ac{bottom:664.348000pt;}
.yb4{bottom:664.614667pt;}
.y140{bottom:664.748000pt;}
.y69{bottom:670.081333pt;}
.y3b{bottom:674.881333pt;}
.y257{bottom:676.214667pt;}
.y95{bottom:677.681333pt;}
.y276{bottom:678.081333pt;}
.y18a{bottom:678.881333pt;}
.y1ad{bottom:679.414667pt;}
.y100{bottom:680.614667pt;}
.ye9{bottom:680.748000pt;}
.y119{bottom:682.081333pt;}
.y10{bottom:682.748000pt;}
.y13f{bottom:682.881333pt;}
.y299{bottom:685.548000pt;}
.y68{bottom:688.214667pt;}
.y165{bottom:691.281333pt;}
.y1fc{bottom:691.681333pt;}
.y235{bottom:692.614667pt;}
.y3a{bottom:693.014667pt;}
.y1d6{bottom:693.148000pt;}
.y94{bottom:695.814667pt;}
.y189{bottom:697.681333pt;}
.yff{bottom:698.748000pt;}
.y21c{bottom:698.881333pt;}
.y118{bottom:700.214667pt;}
.yb3{bottom:700.881333pt;}
.y13e{bottom:701.014667pt;}
.y256{bottom:701.948000pt;}
.y275{bottom:703.681333pt;}
.yf{bottom:706.214667pt;}
.y67{bottom:706.348000pt;}
.y1fb{bottom:708.214667pt;}
.y164{bottom:709.414667pt;}
.y39{bottom:711.148000pt;}
.y1d5{bottom:713.814667pt;}
.y93{bottom:713.948000pt;}
.y188{bottom:716.481333pt;}
.y117{bottom:718.348000pt;}
.ye{bottom:719.014667pt;}
.y13d{bottom:719.148000pt;}
.y2c3{bottom:719.548000pt;}
.y255{bottom:720.081333pt;}
.yfe{bottom:720.748000pt;}
.y274{bottom:721.814667pt;}
.y234{bottom:723.148000pt;}
.y66{bottom:724.481333pt;}
.yb2{bottom:726.614667pt;}
.y163{bottom:727.548000pt;}
.y1fa{bottom:728.881333pt;}
.y2af{bottom:729.414667pt;}
.y1ab{bottom:729.548000pt;}
.y92{bottom:732.081333pt;}
.y1d4{bottom:732.614667pt;}
.y38{bottom:733.681333pt;}
.y187{bottom:735.281333pt;}
.y2c2{bottom:736.081333pt;}
.y13c{bottom:737.281333pt;}
.y233{bottom:741.281333pt;}
.y65{bottom:742.614667pt;}
.y116{bottom:743.948000pt;}
.yd{bottom:744.748000pt;}
.y162{bottom:745.681333pt;}
.y273{bottom:747.548000pt;}
.y1aa{bottom:747.681333pt;}
.y91{bottom:750.214667pt;}
.y1d3{bottom:751.414667pt;}
.y2c1{bottom:752.481333pt;}
.y186{bottom:754.081333pt;}
.y13b{bottom:755.414667pt;}
.ye8{bottom:760.748000pt;}
.y115{bottom:762.081333pt;}
.yb1{bottom:762.881333pt;}
.y161{bottom:763.814667pt;}
.y272{bottom:765.681333pt;}
.y1a9{bottom:765.814667pt;}
.y1f9{bottom:766.481333pt;}
.yc{bottom:768.214667pt;}
.y64{bottom:768.348000pt;}
.y2c0{bottom:769.014667pt;}
.y1d2{bottom:770.214667pt;}
.y185{bottom:772.881333pt;}
.y13a{bottom:773.548000pt;}
.y90{bottom:775.814667pt;}
.ye7{bottom:778.881333pt;}
.y114{bottom:780.214667pt;}
.yb0{bottom:781.014667pt;}
.y160{bottom:781.948000pt;}
.y271{bottom:783.814667pt;}
.y1f8{bottom:785.281333pt;}
.y63{bottom:786.481333pt;}
.y1a8{bottom:787.814667pt;}
.y1d1{bottom:789.014667pt;}
.y298{bottom:791.281333pt;}
.y184{bottom:791.681333pt;}
.yb{bottom:793.814667pt;}
.y8f{bottom:793.948000pt;}
.y232{bottom:794.881333pt;}
.ye6{bottom:797.014667pt;}
.yaf{bottom:799.148000pt;}
.y15f{bottom:800.081333pt;}
.y1f7{bottom:804.081333pt;}
.y62{bottom:804.614667pt;}
.y113{bottom:805.948000pt;}
.y139{bottom:806.748000pt;}
.y254{bottom:807.681333pt;}
.y1d0{bottom:807.814667pt;}
.y270{bottom:809.014667pt;}
.y297{bottom:809.414667pt;}
.y183{bottom:810.481333pt;}
.y37{bottom:810.614667pt;}
.y8e{bottom:812.081333pt;}
.ya{bottom:814.214667pt;}
.y231{bottom:814.748000pt;}
.ye5{bottom:815.148000pt;}
.y1a7{bottom:816.748000pt;}
.yae{bottom:817.281333pt;}
.y15e{bottom:818.214667pt;}
.y61{bottom:822.748000pt;}
.y1f6{bottom:822.881333pt;}
.y112{bottom:824.081333pt;}
.y253{bottom:825.814667pt;}
.y1cf{bottom:826.614667pt;}
.y296{bottom:827.548000pt;}
.y36{bottom:828.748000pt;}
.y182{bottom:829.281333pt;}
.y2bf{bottom:830.081333pt;}
.y8d{bottom:830.214667pt;}
.y9{bottom:832.348000pt;}
.ye4{bottom:833.281333pt;}
.y230{bottom:834.481333pt;}
.y2bd{bottom:834.614667pt;}
.y2ae{bottom:835.148000pt;}
.yad{bottom:835.414667pt;}
.y138{bottom:836.214667pt;}
.y15d{bottom:836.348000pt;}
.y1a6{bottom:837.414667pt;}
.y60{bottom:840.881333pt;}
.y1f5{bottom:841.681333pt;}
.y252{bottom:843.948000pt;}
.y1ce{bottom:845.414667pt;}
.y111{bottom:845.948000pt;}
.y35{bottom:846.881333pt;}
.y181{bottom:848.081333pt;}
.y8c{bottom:848.348000pt;}
.ye3{bottom:851.414667pt;}
.y295{bottom:853.281333pt;}
.yac{bottom:853.548000pt;}
.y137{bottom:854.348000pt;}
.y8{bottom:855.814667pt;}
.y1a5{bottom:856.214667pt;}
.y15c{bottom:858.214667pt;}
.y5f{bottom:859.014667pt;}
.y1f4{bottom:860.481333pt;}
.y1cd{bottom:864.214667pt;}
.y110{bottom:864.614667pt;}
.y8b{bottom:866.481333pt;}
.y251{bottom:869.548000pt;}
.y294{bottom:871.414667pt;}
.yab{bottom:871.681333pt;}
.y7{bottom:872.348000pt;}
.y22f{bottom:874.081333pt;}
.y1a4{bottom:875.014667pt;}
.y136{bottom:876.348000pt;}
.y5e{bottom:877.148000pt;}
.y1f3{bottom:879.281333pt;}
.y34{bottom:880.214667pt;}
.y1cc{bottom:883.014667pt;}
.y8a{bottom:884.614667pt;}
.y15b{bottom:887.681333pt;}
.y293{bottom:889.548000pt;}
.yaa{bottom:889.814667pt;}
.y1a3{bottom:893.814667pt;}
.y22e{bottom:893.948000pt;}
.y5d{bottom:895.281333pt;}
.y2ad{bottom:897.014667pt;}
.y1f2{bottom:898.081333pt;}
.y6{bottom:900.881333pt;}
.y1cb{bottom:901.814667pt;}
.y89{bottom:902.748000pt;}
.y33{bottom:905.814667pt;}
.y1a2{bottom:912.614667pt;}
.y5c{bottom:913.414667pt;}
.y292{bottom:915.148000pt;}
.ya9{bottom:915.414667pt;}
.y1f1{bottom:916.881333pt;}
.y1ca{bottom:920.614667pt;}
.y88{bottom:920.881333pt;}
.y135{bottom:923.948000pt;}
.y5{bottom:925.548000pt;}
.y32{bottom:931.548000pt;}
.y291{bottom:933.281333pt;}
.ya8{bottom:933.548000pt;}
.y1f0{bottom:935.681333pt;}
.y5b{bottom:939.014667pt;}
.y1c9{bottom:939.414667pt;}
.y134{bottom:945.814667pt;}
.y31{bottom:949.681333pt;}
.y290{bottom:951.414667pt;}
.ya7{bottom:951.681333pt;}
.y1ef{bottom:954.481333pt;}
.y5a{bottom:957.148000pt;}
.y1c6{bottom:958.214667pt;}
.y2ac{bottom:958.481333pt;}
.yd2{bottom:967.814667pt;}
.ya6{bottom:969.814667pt;}
.y1ee{bottom:973.281333pt;}
.y30{bottom:975.281333pt;}
.y28f{bottom:976.614667pt;}
.y1c8{bottom:977.014667pt;}
.y15a{bottom:985.948000pt;}
.y4{bottom:991.414667pt;}
.ya5{bottom:991.814667pt;}
.y1c7{bottom:992.081333pt;}
.y2f{bottom:993.414667pt;}
.ya4{bottom:1010.481333pt;}
.y1c5{bottom:1010.881333pt;}
.y2e{bottom:1011.548000pt;}
.y3{bottom:1013.814667pt;}
.y2{bottom:1046.081333pt;}
.y2d{bottom:1050.614667pt;}
.h9{height:23.700000pt;}
.hc{height:28.000000pt;}
.h7{height:28.566667pt;}
.hf{height:37.135417pt;}
.h11{height:38.445324pt;}
.h8{height:40.734375pt;}
.he{height:40.848958pt;}
.ha{height:42.289856pt;}
.hd{height:44.562500pt;}
.h4{height:44.635417pt;}
.hb{height:49.098958pt;}
.h6{height:49.900000pt;}
.h12{height:53.562500pt;}
.h5{height:55.703125pt;}
.h3{height:62.489583pt;}
.h10{height:74.502083pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:75.733333pt;}
.x1b{left:79.600000pt;}
.x19{left:87.066667pt;}
.x55{left:90.400000pt;}
.x1e{left:94.133333pt;}
.x25{left:99.733333pt;}
.xf{left:123.733333pt;}
.x35{left:127.066667pt;}
.x32{left:130.666667pt;}
.xa{left:131.600000pt;}
.x6{left:135.466667pt;}
.x7{left:136.533333pt;}
.x18{left:137.600000pt;}
.x17{left:141.733333pt;}
.x53{left:157.733333pt;}
.x4d{left:160.800000pt;}
.x8{left:162.933333pt;}
.x4{left:169.600000pt;}
.x2e{left:174.133333pt;}
.x10{left:184.000000pt;}
.x3d{left:189.333333pt;}
.x1f{left:195.200000pt;}
.x49{left:197.600000pt;}
.x2a{left:204.666667pt;}
.xb{left:208.000000pt;}
.x9{left:217.066667pt;}
.x26{left:221.200000pt;}
.x2d{left:225.733333pt;}
.x3e{left:226.933333pt;}
.x54{left:229.333333pt;}
.x2f{left:232.000000pt;}
.x14{left:235.200000pt;}
.x29{left:236.266667pt;}
.x36{left:243.066667pt;}
.x5{left:249.333333pt;}
.x1d{left:258.133333pt;}
.x16{left:260.000000pt;}
.x13{left:264.000000pt;}
.x1c{left:266.000000pt;}
.x43{left:272.000000pt;}
.x2c{left:276.933333pt;}
.xd{left:282.400000pt;}
.x2b{left:285.066667pt;}
.x24{left:292.266667pt;}
.x2{left:324.000000pt;}
.x1a{left:325.333333pt;}
.x3f{left:326.266667pt;}
.x11{left:328.266667pt;}
.xc{left:336.533333pt;}
.x20{left:339.200000pt;}
.x12{left:343.066667pt;}
.x4a{left:359.333333pt;}
.x4e{left:360.400000pt;}
.x44{left:361.466667pt;}
.x21{left:374.000000pt;}
.x37{left:377.600000pt;}
.x15{left:386.800000pt;}
.x38{left:412.533333pt;}
.x39{left:417.333333pt;}
.x3a{left:424.666667pt;}
.x40{left:447.466667pt;}
.x27{left:485.466667pt;}
.x28{left:492.800000pt;}
.x45{left:501.600000pt;}
.x46{left:506.000000pt;}
.x22{left:511.066667pt;}
.x3b{left:519.600000pt;}
.x3c{left:540.933333pt;}
.x3{left:545.600000pt;}
.x23{left:552.933333pt;}
.x30{left:554.133333pt;}
.x41{left:559.200000pt;}
.x31{left:561.600000pt;}
.x47{left:571.200000pt;}
.x1{left:586.533333pt;}
.x48{left:589.333333pt;}
.x51{left:649.600000pt;}
.x4f{left:652.933333pt;}
.x4b{left:655.866667pt;}
.x52{left:657.066667pt;}
.x33{left:658.133333pt;}
.x50{left:660.266667pt;}
.x4c{left:663.200000pt;}
.x34{left:665.600000pt;}
.x42{left:680.133333pt;}
}




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