
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_62e57800b87b0d65994ab860.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eb7693ef75defe4dc1254a2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7e4e87acfcd4a9c7abd82b26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_edaf8c5bb1a6fc91f37991f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_26096483cb511f61e1f16f40.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_75b85e7627f24ebf8995c007.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_07ada27197315db4cc4ca096.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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);}
.v3{vertical-align:-82.980000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.256200px;}
.lse{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls12{letter-spacing:14.400000px;}
.ls6{letter-spacing:31.680000px;}
.ls7{letter-spacing:87.960000px;}
.ls9{letter-spacing:87.984000px;}
.ls2{letter-spacing:293.736000px;}
.ls13{letter-spacing:849.149760px;}
.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;}
}
.wsb{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.496000px;}
.ws0{word-spacing:-15.226440px;}
.ws3{word-spacing:0.000000px;}
._29{margin-left:-4.824000px;}
._a{margin-left:-3.672000px;}
._2{margin-left:-2.304000px;}
._0{margin-left:-1.183440px;}
._1{width:1.003440px;}
._6{width:2.284560px;}
._7{width:3.460560px;}
._f{width:5.112000px;}
._10{width:6.412560px;}
._5{width:8.269680px;}
._14{width:9.293280px;}
._b{width:10.584000px;}
._1c{width:12.456000px;}
._1d{width:13.756560px;}
._2f{width:15.408000px;}
._1b{width:16.992000px;}
._11{width:19.944000px;}
._12{width:20.952000px;}
._21{width:22.396560px;}
._c{width:23.760000px;}
._28{width:24.768000px;}
._2e{width:26.712000px;}
._13{width:28.512000px;}
._23{width:29.592000px;}
._1f{width:31.248000px;}
._20{width:32.488560px;}
._36{width:34.447440px;}
._9{width:35.568000px;}
._8{width:36.607440px;}
._1e{width:38.232000px;}
._31{width:39.888000px;}
._33{width:41.760000px;}
._2b{width:43.560000px;}
._2c{width:44.779440px;}
._17{width:45.936000px;}
._18{width:47.160000px;}
._1a{width:48.168000px;}
._34{width:50.335440px;}
._30{width:51.768000px;}
._d{width:53.136000px;}
._e{width:54.652560px;}
._32{width:55.766880px;}
._19{width:58.135440px;}
._2d{width:59.616000px;}
._24{width:60.768000px;}
._25{width:62.001120px;}
._26{width:63.072000px;}
._27{width:64.147440px;}
._16{width:67.432560px;}
._15{width:68.647440px;}
._22{width:69.741120px;}
._35{width:70.802880px;}
._37{width:73.944000px;}
._38{width:75.492000px;}
._43{width:77.076000px;}
._3a{width:78.552000px;}
._40{width:79.879440px;}
._2a{width:83.304000px;}
._39{width:84.576000px;}
._3f{width:85.968000px;}
._46{width:86.976000px;}
._3d{width:95.760000px;}
._3e{width:97.704000px;}
._41{width:99.103440px;}
._42{width:100.588560px;}
._3c{width:111.456000px;}
._3b{width:112.464000px;}
._44{width:115.200000px;}
._3{width:126.391440px;}
._48{width:137.088000px;}
._49{width:138.528000px;}
._4{width:201.681120px;}
._47{width:234.648000px;}
._45{width:577.512000px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(146,208,80);}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yde{bottom:4.140000px;}
.y156{bottom:4.320000px;}
.yec{bottom:4.485000px;}
.y152{bottom:4.491000px;}
.ye0{bottom:4.500000px;}
.y10e{bottom:7.020000px;}
.yb8{bottom:7.365000px;}
.y11a{bottom:7.371000px;}
.yae{bottom:7.380000px;}
.y112{bottom:7.410000px;}
.y115{bottom:7.545000px;}
.yb5{bottom:7.560000px;}
.y16e{bottom:7.590000px;}
.y184{bottom:20.700000px;}
.y1bd{bottom:20.730000px;}
.y18b{bottom:20.865000px;}
.y19a{bottom:20.880000px;}
.y1f1{bottom:20.925000px;}
.y251{bottom:22.500000px;}
.yac{bottom:24.840000px;}
.ye1{bottom:25.200000px;}
.y1f8{bottom:26.640000px;}
.yaf{bottom:31.140000px;}
.yb1{bottom:31.320000px;}
.y17d{bottom:31.680000px;}
.y1e7{bottom:46.965000px;}
.y209{bottom:46.980000px;}
.y1f4{bottom:47.025000px;}
.y29e{bottom:57.636000px;}
.y1{bottom:58.536000px;}
.y1de{bottom:66.075000px;}
.y1e1{bottom:66.420000px;}
.y17c{bottom:66.600000px;}
.y1eb{bottom:70.755000px;}
.y1fb{bottom:73.620000px;}
.y1ff{bottom:79.065000px;}
.y202{bottom:79.410000px;}
.y1e4{bottom:88.005000px;}
.y206{bottom:88.035000px;}
.y1f0{bottom:88.065000px;}
.y1e6{bottom:88.365000px;}
.y208{bottom:88.380000px;}
.y1f3{bottom:88.425000px;}
.y192{bottom:99.375000px;}
.y195{bottom:99.720000px;}
.y1b0{bottom:101.715000px;}
.y1b6{bottom:105.345000px;}
.y1dd{bottom:107.475000px;}
.y1e0{bottom:107.820000px;}
.y17b{bottom:108.000000px;}
.y1bc{bottom:108.585000px;}
.y1ea{bottom:112.155000px;}
.y1ed{bottom:112.500000px;}
.y173{bottom:112.896000px;}
.y1f7{bottom:114.660000px;}
.y1fa{bottom:115.020000px;}
.y1ca{bottom:116.655000px;}
.y151{bottom:120.105000px;}
.y1fe{bottom:120.465000px;}
.y201{bottom:120.810000px;}
.y119{bottom:122.265000px;}
.y25a{bottom:124.425000px;}
.y290{bottom:125.136000px;}
.y29{bottom:128.376000px;}
.y204{bottom:129.420000px;}
.y1e3{bottom:129.450000px;}
.y1ef{bottom:129.465000px;}
.y207{bottom:129.780000px;}
.y1e5{bottom:129.810000px;}
.y1f2{bottom:129.825000px;}
.y1cf{bottom:132.840000px;}
.y183{bottom:132.855000px;}
.y8f{bottom:132.876000px;}
.y29c{bottom:135.216000px;}
.y1c2{bottom:136.275000px;}
.y1c5{bottom:136.620000px;}
.y172{bottom:136.656000px;}
.y17e{bottom:137.340000px;}
.y18a{bottom:137.370000px;}
.y199{bottom:139.725000px;}
.y191{bottom:140.775000px;}
.y1a8{bottom:140.970000px;}
.y194{bottom:141.120000px;}
.y1ab{bottom:141.330000px;}
.y1d6{bottom:141.885000px;}
.y1d9{bottom:142.230000px;}
.y1af{bottom:143.115000px;}
.y1b2{bottom:143.460000px;}
.y259{bottom:146.025000px;}
.y28f{bottom:146.376000px;}
.y1b5{bottom:146.745000px;}
.y1b8{bottom:147.090000px;}
.y118{bottom:147.285000px;}
.y1db{bottom:148.860000px;}
.y1df{bottom:149.220000px;}
.y17a{bottom:149.400000px;}
.y1a1{bottom:149.985000px;}
.y1a4{bottom:150.330000px;}
.y1e2{bottom:150.345000px;}
.y150{bottom:151.425000px;}
.y28{bottom:152.130000px;}
.y8e{bottom:153.570000px;}
.y1ec{bottom:153.930000px;}
.ydc{bottom:155.370000px;}
.y1f6{bottom:156.060000px;}
.y133{bottom:156.090000px;}
.y29b{bottom:156.270000px;}
.y1f9{bottom:156.420000px;}
.y280{bottom:156.630000px;}
.y1c9{bottom:158.055000px;}
.y1cb{bottom:158.400000px;}
.y171{bottom:160.410000px;}
.y1fc{bottom:161.850000px;}
.y200{bottom:162.210000px;}
.y258{bottom:167.445000px;}
.y28e{bottom:167.610000px;}
.yaa{bottom:170.130000px;}
.y62{bottom:171.030000px;}
.y117{bottom:172.305000px;}
.y182{bottom:174.105000px;}
.y8d{bottom:174.270000px;}
.y1ce{bottom:174.285000px;}
.y186{bottom:174.450000px;}
.y1d1{bottom:174.645000px;}
.y27{bottom:175.890000px;}
.y2a{bottom:176.070000px;}
.y29a{bottom:177.510000px;}
.y1c1{bottom:177.675000px;}
.y220{bottom:177.690000px;}
.y1c4{bottom:178.020000px;}
.y189{bottom:178.770000px;}
.y18d{bottom:179.130000px;}
.y27f{bottom:180.390000px;}
.y198{bottom:181.125000px;}
.y19c{bottom:181.485000px;}
.y18f{bottom:182.190000px;}
.y1a7{bottom:182.370000px;}
.y193{bottom:182.550000px;}
.y1aa{bottom:182.730000px;}
.y14f{bottom:182.745000px;}
.y1d5{bottom:183.285000px;}
.y1d8{bottom:183.630000px;}
.y1ad{bottom:184.530000px;}
.y187{bottom:184.725000px;}
.y1b1{bottom:184.890000px;}
.ydb{bottom:188.130000px;}
.y1b7{bottom:188.490000px;}
.y28d{bottom:189.030000px;}
.y257{bottom:189.045000px;}
.y1ba{bottom:191.370000px;}
.y1a0{bottom:191.385000px;}
.y1a3{bottom:191.730000px;}
.ya9{bottom:193.890000px;}
.y21f{bottom:194.625000px;}
.y8c{bottom:194.970000px;}
.y116{bottom:197.325000px;}
.y132{bottom:197.490000px;}
.y299{bottom:198.930000px;}
.y1c7{bottom:199.470000px;}
.y26{bottom:199.830000px;}
.y61{bottom:202.530000px;}
.y27e{bottom:204.330000px;}
.y28c{bottom:210.270000px;}
.y256{bottom:210.645000px;}
.y170{bottom:214.050000px;}
.y14e{bottom:214.065000px;}
.y21e{bottom:215.325000px;}
.y180{bottom:215.490000px;}
.y8b{bottom:215.670000px;}
.y1cd{bottom:215.685000px;}
.y185{bottom:215.850000px;}
.y1d0{bottom:216.045000px;}
.ya8{bottom:217.650000px;}
.y1bf{bottom:219.060000px;}
.y1c3{bottom:219.420000px;}
.y188{bottom:220.170000px;}
.y18c{bottom:220.530000px;}
.yda{bottom:220.890000px;}
.y114{bottom:222.345000px;}
.y197{bottom:222.525000px;}
.y19b{bottom:222.885000px;}
.y25{bottom:223.590000px;}
.y1a6{bottom:223.770000px;}
.y1a9{bottom:224.130000px;}
.y1a5{bottom:224.505000px;}
.y1d3{bottom:224.670000px;}
.y1d7{bottom:225.030000px;}
.y27d{bottom:228.090000px;}
.y16f{bottom:230.985000px;}
.y28b{bottom:231.510000px;}
.y255{bottom:232.065000px;}
.y19e{bottom:232.770000px;}
.y1a2{bottom:233.130000px;}
.y21d{bottom:236.025000px;}
.y298{bottom:241.410000px;}
.y14d{bottom:245.565000px;}
.y131{bottom:246.630000px;}
.y24{bottom:247.350000px;}
.y113{bottom:247.545000px;}
.y2c6{bottom:250.410000px;}
.y8a{bottom:251.490000px;}
.y27c{bottom:251.850000px;}
.yd9{bottom:253.470000px;}
.y254{bottom:253.665000px;}
.y21c{bottom:256.725000px;}
.y297{bottom:262.830000px;}
.y28a{bottom:266.070000px;}
.y16d{bottom:267.165000px;}
.y23{bottom:271.110000px;}
.y2c5{bottom:272.550000px;}
.y111{bottom:272.565000px;}
.y227{bottom:274.575000px;}
.y89{bottom:275.115000px;}
.y27b{bottom:275.655000px;}
.y14c{bottom:276.915000px;}
.y21b{bottom:277.455000px;}
.y296{bottom:284.115000px;}
.yd8{bottom:286.275000px;}
.y289{bottom:288.255000px;}
.y22{bottom:294.915000px;}
.y253{bottom:296.715000px;}
.y1dc{bottom:297.060000px;}
.y1da{bottom:297.075000px;}
.y110{bottom:297.615000px;}
.y27a{bottom:299.415000px;}
.y21a{bottom:300.495000px;}
.y1c0{bottom:302.640000px;}
.y1be{bottom:302.655000px;}
.y16c{bottom:303.555000px;}
.y295{bottom:305.535000px;}
.y14b{bottom:308.235000px;}
.y288{bottom:310.575000px;}
.y160{bottom:314.895000px;}
.y226{bottom:315.975000px;}
.y88{bottom:316.695000px;}
.y2c4{bottom:317.235000px;}
.y252{bottom:318.315000px;}
.y21{bottom:318.855000px;}
.yd7{bottom:319.035000px;}
.ya7{bottom:320.295000px;}
.y20a{bottom:320.655000px;}
.y219{bottom:321.195000px;}
.y279{bottom:323.355000px;}
.y294{bottom:326.775000px;}
.y287{bottom:332.895000px;}
.y205{bottom:337.920000px;}
.y203{bottom:337.935000px;}
.y14a{bottom:339.555000px;}
.y16b{bottom:339.735000px;}
.y218{bottom:341.715000px;}
.y20{bottom:342.615000px;}
.y10f{bottom:345.135000px;}
.y278{bottom:347.115000px;}
.y293{bottom:348.015000px;}
.yd6{bottom:351.615000px;}
.y286{bottom:355.215000px;}
.y15f{bottom:356.295000px;}
.y225{bottom:357.375000px;}
.y87{bottom:362.055000px;}
.y217{bottom:362.415000px;}
.y1f{bottom:366.375000px;}
.y292{bottom:369.435000px;}
.y149{bottom:370.875000px;}
.yc9{bottom:375.375000px;}
.y16a{bottom:375.915000px;}
.y285{bottom:377.715000px;}
.y2c3{bottom:378.435000px;}
.y216{bottom:383.115000px;}
.y1e{bottom:390.135000px;}
.y103{bottom:393.375000px;}
.y10d{bottom:393.555000px;}
.y277{bottom:394.635000px;}
.y15e{bottom:397.515000px;}
.yc8{bottom:399.135000px;}
.y250{bottom:399.495000px;}
.y284{bottom:400.035000px;}
.y291{bottom:401.115000px;}
.y148{bottom:402.195000px;}
.y215{bottom:403.815000px;}
.y224{bottom:406.335000px;}
.yd5{bottom:411.015000px;}
.y169{bottom:412.095000px;}
.y1d{bottom:414.075000px;}
.y244{bottom:414.975000px;}
.yf9{bottom:417.135000px;}
.y276{bottom:418.575000px;}
.y86{bottom:420.015000px;}
.y181{bottom:422.160000px;}
.y17f{bottom:422.175000px;}
.y283{bottom:422.355000px;}
.yc7{bottom:422.895000px;}
.y60{bottom:424.335000px;}
.y214{bottom:424.515000px;}
.y2c2{bottom:425.955000px;}
.y102{bottom:429.195000px;}
.y147{bottom:433.695000px;}
.yd4{bottom:434.775000px;}
.y243{bottom:438.735000px;}
.y15d{bottom:438.915000px;}
.yf8{bottom:440.895000px;}
.y275{bottom:442.335000px;}
.y24f{bottom:443.595000px;}
.y282{bottom:444.315000px;}
.y1c{bottom:444.675000px;}
.y213{bottom:445.215000px;}
.y10c{bottom:446.475000px;}
.yc6{bottom:446.655000px;}
.y168{bottom:448.455000px;}
.y68{bottom:451.515000px;}
.y101{bottom:452.775000px;}
.yd3{bottom:458.535000px;}
.y5f{bottom:460.155000px;}
.y242{bottom:462.495000px;}
.y1d4{bottom:463.200000px;}
.y1d2{bottom:463.215000px;}
.yf7{bottom:464.655000px;}
.y2c1{bottom:464.835000px;}
.y24e{bottom:465.195000px;}
.y19f{bottom:465.540000px;}
.y19d{bottom:465.555000px;}
.y146{bottom:465.735000px;}
.y212{bottom:465.915000px;}
.y274{bottom:466.095000px;}
.y10b{bottom:467.175000px;}
.yc5{bottom:470.415000px;}
.y100{bottom:476.535000px;}
.yd2{bottom:482.295000px;}
.y1fd{bottom:484.620000px;}
.y167{bottom:484.635000px;}
.y241{bottom:486.255000px;}
.y24d{bottom:487.515000px;}
.y1b{bottom:488.055000px;}
.yf6{bottom:488.595000px;}
.y273{bottom:489.855000px;}
.y67{bottom:490.935000px;}
.y211{bottom:492.915000px;}
.yc4{bottom:494.355000px;}
.y46{bottom:495.975000px;}
.yff{bottom:500.295000px;}
.yd1{bottom:506.055000px;}
.y240{bottom:510.015000px;}
.yf5{bottom:512.355000px;}
.y272{bottom:513.795000px;}
.y145{bottom:514.335000px;}
.yc3{bottom:518.115000px;}
.y45{bottom:519.555000px;}
.y10a{bottom:520.635000px;}
.y1a{bottom:520.995000px;}
.y166{bottom:521.535000px;}
.yfe{bottom:524.235000px;}
.y281{bottom:524.955000px;}
.y24c{bottom:526.215000px;}
.y2b7{bottom:527.475000px;}
.yd0{bottom:529.995000px;}
.y23f{bottom:533.955000px;}
.y210{bottom:534.495000px;}
.y144{bottom:535.035000px;}
.yf4{bottom:536.115000px;}
.y271{bottom:537.555000px;}
.y1bb{bottom:538.980000px;}
.y1b9{bottom:538.995000px;}
.y19{bottom:541.695000px;}
.yc2{bottom:541.875000px;}
.y44{bottom:543.315000px;}
.y2c0{bottom:546.015000px;}
.y24b{bottom:546.915000px;}
.yfd{bottom:547.995000px;}
.y2b6{bottom:551.235000px;}
.y66{bottom:553.575000px;}
.ycf{bottom:553.755000px;}
.y20f{bottom:555.195000px;}
.yf3{bottom:559.905000px;}
.y5e{bottom:561.165000px;}
.y270{bottom:561.345000px;}
.y109{bottom:562.065000px;}
.y18{bottom:562.425000px;}
.yc1{bottom:565.665000px;}
.y43{bottom:567.105000px;}
.y2bf{bottom:569.805000px;}
.y23e{bottom:569.985000px;}
.yfc{bottom:571.785000px;}
.y2b5{bottom:575.025000px;}
.yce{bottom:577.545000px;}
.y12a{bottom:579.165000px;}
.y65{bottom:580.245000px;}
.y249{bottom:582.585000px;}
.y24a{bottom:582.765000px;}
.y17{bottom:583.125000px;}
.yf2{bottom:583.845000px;}
.y5d{bottom:584.745000px;}
.y26f{bottom:585.105000px;}
.y143{bottom:588.525000px;}
.yc0{bottom:589.605000px;}
.y20e{bottom:590.865000px;}
.y42{bottom:591.045000px;}
.y23d{bottom:593.565000px;}
.yfb{bottom:595.545000px;}
.y2b4{bottom:598.965000px;}
.y165{bottom:600.945000px;}
.ycd{bottom:601.305000px;}
.y108{bottom:603.465000px;}
.y16{bottom:603.825000px;}
.y248{bottom:606.345000px;}
.yf1{bottom:607.605000px;}
.y5c{bottom:608.505000px;}
.y26e{bottom:609.045000px;}
.ybf{bottom:613.365000px;}
.y20d{bottom:614.625000px;}
.y41{bottom:614.805000px;}
.y23c{bottom:617.325000px;}
.y129{bottom:620.565000px;}
.y2b3{bottom:622.725000px;}
.y15{bottom:624.525000px;}
.ycc{bottom:625.065000px;}
.y13d{bottom:629.925000px;}
.y247{bottom:630.105000px;}
.yf0{bottom:631.365000px;}
.yfa{bottom:631.545000px;}
.y5b{bottom:632.445000px;}
.y26d{bottom:632.805000px;}
.ybe{bottom:637.125000px;}
.y20c{bottom:638.385000px;}
.y40{bottom:638.565000px;}
.y23b{bottom:641.085000px;}
.y107{bottom:644.865000px;}
.y14{bottom:645.225000px;}
.y2b2{bottom:646.485000px;}
.ycb{bottom:649.005000px;}
.y130{bottom:649.905000px;}
.y164{bottom:654.405000px;}
.yef{bottom:655.125000px;}
.y5a{bottom:656.205000px;}
.y26c{bottom:656.565000px;}
.ybd{bottom:660.885000px;}
.y128{bottom:661.965000px;}
.y20b{bottom:662.145000px;}
.y3f{bottom:662.325000px;}
.y1f5{bottom:663.765000px;}
.y23a{bottom:665.025000px;}
.y13{bottom:665.925000px;}
.y2b1{bottom:670.245000px;}
.y13c{bottom:671.325000px;}
.yee{bottom:679.065000px;}
.y59{bottom:679.965000px;}
.y26b{bottom:680.325000px;}
.y142{bottom:683.205000px;}
.y246{bottom:683.745000px;}
.ybc{bottom:684.825000px;}
.yca{bottom:685.005000px;}
.y3e{bottom:686.085000px;}
.y106{bottom:686.265000px;}
.y12{bottom:686.625000px;}
.y239{bottom:688.785000px;}
.y12f{bottom:691.305000px;}
.y2b0{bottom:694.005000px;}
.y163{bottom:695.805000px;}
.y127{bottom:703.365000px;}
.y58{bottom:703.725000px;}
.y26a{bottom:704.265000px;}
.y1cc{bottom:705.165000px;}
.y11{bottom:707.325000px;}
.ybb{bottom:708.585000px;}
.y7a{bottom:709.665000px;}
.y3d{bottom:710.025000px;}
.ya6{bottom:712.005000px;}
.y238{bottom:712.545000px;}
.y13b{bottom:712.725000px;}
.y196{bottom:715.605000px;}
.y2af{bottom:717.945000px;}
.y141{bottom:724.605000px;}
.y245{bottom:725.145000px;}
.y57{bottom:727.665000px;}
.y10{bottom:728.025000px;}
.yed{bottom:732.525000px;}
.y12e{bottom:732.705000px;}
.y79{bottom:733.425000px;}
.y3c{bottom:733.785000px;}
.y237{bottom:736.305000px;}
.y162{bottom:737.205000px;}
.y105{bottom:739.545000px;}
.y2ae{bottom:741.705000px;}
.y85{bottom:742.605000px;}
.y126{bottom:744.765000px;}
.y1b4{bottom:747.645000px;}
.y1b3{bottom:747.660000px;}
.yf{bottom:748.185000px;}
.yeb{bottom:749.460000px;}
.y56{bottom:751.425000px;}
.y269{bottom:751.785000px;}
.ya5{bottom:753.405000px;}
.y13a{bottom:754.125000px;}
.y78{bottom:757.365000px;}
.y3b{bottom:757.545000px;}
.yba{bottom:762.225000px;}
.y140{bottom:766.005000px;}
.y84{bottom:766.185000px;}
.ye{bottom:770.145000px;}
.y236{bottom:772.305000px;}
.yea{bottom:772.665000px;}
.y12d{bottom:774.105000px;}
.y55{bottom:775.185000px;}
.y268{bottom:775.545000px;}
.y9f{bottom:776.985000px;}
.y161{bottom:778.605000px;}
.yb9{bottom:779.145000px;}
.y2ad{bottom:780.585000px;}
.y77{bottom:781.125000px;}
.y3a{bottom:781.305000px;}
.y125{bottom:786.165000px;}
.y104{bottom:788.685000px;}
.y235{bottom:789.225000px;}
.y83{bottom:789.945000px;}
.y223{bottom:793.005000px;}
.y139{bottom:795.345000px;}
.ye9{bottom:795.705000px;}
.y54{bottom:798.945000px;}
.y267{bottom:799.305000px;}
.y9e{bottom:800.925000px;}
.yb7{bottom:802.920000px;}
.y2ac{bottom:804.345000px;}
.y76{bottom:804.885000px;}
.y39{bottom:805.245000px;}
.y13f{bottom:807.405000px;}
.yd{bottom:809.385000px;}
.y234{bottom:809.925000px;}
.ya4{bottom:812.625000px;}
.y82{bottom:813.705000px;}
.y2be{bottom:814.065000px;}
.y15c{bottom:815.325000px;}
.y12c{bottom:815.505000px;}
.ye8{bottom:818.745000px;}
.y53{bottom:822.705000px;}
.y266{bottom:823.245000px;}
.y9d{bottom:824.685000px;}
.yb6{bottom:826.665000px;}
.y124{bottom:827.565000px;}
.y2ab{bottom:828.105000px;}
.y75{bottom:828.645000px;}
.y38{bottom:829.005000px;}
.y221{bottom:829.185000px;}
.y233{bottom:830.625000px;}
.ya3{bottom:836.385000px;}
.y138{bottom:836.745000px;}
.y1ee{bottom:837.105000px;}
.y81{bottom:837.645000px;}
.y2bd{bottom:837.825000px;}
.ye7{bottom:842.010000px;}
.y52{bottom:846.690000px;}
.y265{bottom:847.050000px;}
.y9c{bottom:848.490000px;}
.y13e{bottom:848.850000px;}
.yb4{bottom:850.470000px;}
.yc{bottom:850.830000px;}
.y232{bottom:851.370000px;}
.y2aa{bottom:851.910000px;}
.y74{bottom:852.630000px;}
.y37{bottom:852.810000px;}
.y15b{bottom:856.770000px;}
.y12b{bottom:856.950000px;}
.y64{bottom:857.130000px;}
.y179{bottom:859.110000px;}
.ya2{bottom:860.370000px;}
.y80{bottom:861.450000px;}
.y2bc{bottom:861.630000px;}
.ye6{bottom:865.050000px;}
.y123{bottom:869.010000px;}
.y51{bottom:870.450000px;}
.y264{bottom:870.810000px;}
.y231{bottom:872.070000px;}
.y9b{bottom:872.250000px;}
.yb3{bottom:874.410000px;}
.y2a9{bottom:875.850000px;}
.y73{bottom:876.390000px;}
.y36{bottom:876.570000px;}
.y222{bottom:876.750000px;}
.yb{bottom:878.370000px;}
.y63{bottom:883.590000px;}
.ya1{bottom:884.130000px;}
.y7f{bottom:885.210000px;}
.y2bb{bottom:885.390000px;}
.ye5{bottom:888.090000px;}
.y137{bottom:890.250000px;}
.y230{bottom:892.770000px;}
.y50{bottom:894.210000px;}
.y263{bottom:894.570000px;}
.y9a{bottom:896.190000px;}
.yb2{bottom:898.170000px;}
.ya{bottom:899.070000px;}
.y2a8{bottom:899.610000px;}
.y72{bottom:900.150000px;}
.y35{bottom:900.510000px;}
.y7e{bottom:908.970000px;}
.y2ba{bottom:909.330000px;}
.y122{bottom:910.410000px;}
.ye4{bottom:911.310000px;}
.y178{bottom:912.390000px;}
.y9{bottom:912.930000px;}
.y22f{bottom:913.470000px;}
.y4f{bottom:917.970000px;}
.y262{bottom:918.510000px;}
.y99{bottom:919.950000px;}
.ya0{bottom:920.130000px;}
.yb0{bottom:921.930000px;}
.y2a7{bottom:923.370000px;}
.y71{bottom:923.910000px;}
.y34{bottom:924.270000px;}
.y136{bottom:931.650000px;}
.y2b9{bottom:933.090000px;}
.y22e{bottom:934.170000px;}
.y176{bottom:935.970000px;}
.y1c8{bottom:938.115000px;}
.y1c6{bottom:938.130000px;}
.y15a{bottom:939.570000px;}
.y8{bottom:940.470000px;}
.y4e{bottom:941.910000px;}
.y261{bottom:942.270000px;}
.y98{bottom:943.710000px;}
.y70{bottom:947.850000px;}
.y33{bottom:948.030000px;}
.y177{bottom:948.210000px;}
.y7d{bottom:950.910000px;}
.y121{bottom:951.810000px;}
.ye3{bottom:952.710000px;}
.y1ae{bottom:953.055000px;}
.y1ac{bottom:953.070000px;}
.y22d{bottom:954.870000px;}
.y190{bottom:955.395000px;}
.y18e{bottom:955.410000px;}
.y2b8{bottom:956.850000px;}
.y2a6{bottom:957.930000px;}
.y175{bottom:959.910000px;}
.y7{bottom:964.230000px;}
.y4d{bottom:965.670000px;}
.y260{bottom:966.030000px;}
.y97{bottom:967.470000px;}
.yad{bottom:969.630000px;}
.y6f{bottom:971.610000px;}
.y32{bottom:971.790000px;}
.y135{bottom:973.050000px;}
.y7c{bottom:974.670000px;}
.y22c{bottom:975.570000px;}
.y159{bottom:980.970000px;}
.y174{bottom:983.670000px;}
.y1e9{bottom:984.015000px;}
.y1e8{bottom:984.030000px;}
.y4c{bottom:989.430000px;}
.y2a5{bottom:989.610000px;}
.y25f{bottom:989.790000px;}
.y96{bottom:991.410000px;}
.y120{bottom:993.210000px;}
.ye2{bottom:994.110000px;}
.y6{bottom:995.190000px;}
.y6e{bottom:995.370000px;}
.y31{bottom:995.730000px;}
.y22b{bottom:996.270000px;}
.y2a4{bottom:1010.670000px;}
.y4b{bottom:1013.190000px;}
.y25e{bottom:1013.730000px;}
.y11f{bottom:1013.910000px;}
.y134{bottom:1014.450000px;}
.y95{bottom:1015.170000px;}
.y22a{bottom:1016.970000px;}
.yab{bottom:1017.870000px;}
.y6d{bottom:1019.130000px;}
.y30{bottom:1019.490000px;}
.y7b{bottom:1019.670000px;}
.y158{bottom:1022.370000px;}
.y5{bottom:1030.830000px;}
.y2a3{bottom:1031.910000px;}
.ydf{bottom:1035.510000px;}
.y4a{bottom:1037.130000px;}
.y25d{bottom:1037.490000px;}
.y229{bottom:1037.670000px;}
.y94{bottom:1038.930000px;}
.y6c{bottom:1043.070000px;}
.y2f{bottom:1043.250000px;}
.y2a2{bottom:1053.330000px;}
.y11e{bottom:1055.850000px;}
.y4{bottom:1056.750000px;}
.y228{bottom:1058.370000px;}
.y157{bottom:1059.990000px;}
.y25c{bottom:1061.250000px;}
.y93{bottom:1062.690000px;}
.y2c7{bottom:1065.390000px;}
.y6b{bottom:1066.830000px;}
.y2e{bottom:1067.010000px;}
.y2a1{bottom:1074.570000px;}
.ydd{bottom:1077.630000px;}
.y49{bottom:1078.530000px;}
.y11d{bottom:1079.790000px;}
.y25b{bottom:1085.010000px;}
.y2d{bottom:1090.950000px;}
.y155{bottom:1091.490000px;}
.y2a0{bottom:1095.810000px;}
.y92{bottom:1097.250000px;}
.y3{bottom:1099.230000px;}
.y48{bottom:1102.290000px;}
.y11c{bottom:1104.810000px;}
.y6a{bottom:1107.150000px;}
.y2c{bottom:1114.710000px;}
.y29f{bottom:1117.230000px;}
.y91{bottom:1117.950000px;}
.y154{bottom:1122.840000px;}
.y69{bottom:1129.500000px;}
.y11b{bottom:1129.860000px;}
.y2{bottom:1134.000000px;}
.y47{bottom:1138.320000px;}
.y2b{bottom:1138.500000px;}
.y90{bottom:1138.680000px;}
.y29d{bottom:1194.300000px;}
.y153{bottom:1247.400000px;}
.h4f{height:20.505000px;}
.h4e{height:20.685000px;}
.h53{height:20.700000px;}
.h50{height:20.721000px;}
.h52{height:20.722500px;}
.h51{height:20.865000px;}
.h54{height:21.405000px;}
.h59{height:21.411000px;}
.h58{height:21.441000px;}
.h55{height:21.585000px;}
.h5a{height:21.591000px;}
.h56{height:22.665000px;}
.h13{height:23.025000px;}
.h16{height:23.040000px;}
.h14{height:23.205000px;}
.h15{height:23.242500px;}
.hf{height:23.745000px;}
.h12{height:23.760000px;}
.h11{height:23.782500px;}
.h10{height:23.925000px;}
.h4c{height:24.285000px;}
.h19{height:25.005000px;}
.h1b{height:25.011000px;}
.h1c{height:25.020000px;}
.h18{height:25.041000px;}
.h1d{height:25.050000px;}
.h1a{height:25.185000px;}
.h4d{height:26.265000px;}
.h1e{height:31.305000px;}
.h21{height:31.311000px;}
.h22{height:31.320000px;}
.h20{height:31.341000px;}
.h23{height:31.350000px;}
.h1f{height:31.485000px;}
.h17{height:35.625000px;}
.h25{height:36.165000px;}
.h26{height:36.345000px;}
.h27{height:36.381000px;}
.hc{height:41.385000px;}
.h24{height:41.430000px;}
.h7{height:47.344922px;}
.hd{height:47.505000px;}
.he{height:47.685000px;}
.h57{height:59.745000px;}
.h5b{height:63.035156px;}
.h9{height:65.010937px;}
.h2{height:65.884219px;}
.h4{height:66.757500px;}
.ha{height:70.628906px;}
.h8{height:70.664062px;}
.hb{height:71.824219px;}
.h6{height:72.562500px;}
.h5{height:84.898125px;}
.h3{height:90.703125px;}
.h4b{height:145.965000px;}
.h49{height:145.975500px;}
.h4a{height:145.980000px;}
.h43{height:146.001000px;}
.h42{height:146.002500px;}
.h41{height:165.405000px;}
.h40{height:165.420000px;}
.h28{height:165.960000px;}
.h44{height:170.130000px;}
.h45{height:170.145000px;}
.h46{height:172.620000px;}
.h47{height:178.410000px;}
.h48{height:178.425000px;}
.h2d{height:198.750000px;}
.h2e{height:198.765000px;}
.h33{height:201.090000px;}
.h34{height:201.105000px;}
.h35{height:204.690000px;}
.h36{height:207.930000px;}
.h37{height:207.945000px;}
.h3a{height:216.030000px;}
.h3b{height:216.045000px;}
.h29{height:232.050000px;}
.h2a{height:232.065000px;}
.h3c{height:232.215000px;}
.h3d{height:232.230000px;}
.h39{height:235.605000px;}
.h38{height:235.620000px;}
.h2c{height:236.715000px;}
.h2b{height:236.730000px;}
.h2f{height:239.070000px;}
.h32{height:240.315000px;}
.h3e{height:241.230000px;}
.h3f{height:241.245000px;}
.h30{height:249.330000px;}
.h31{height:249.345000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:78.651000px;}
.w17{width:78.660000px;}
.w1b{width:79.191000px;}
.w2{width:82.251000px;}
.wa{width:95.031000px;}
.w1f{width:96.831000px;}
.we{width:97.191000px;}
.w12{width:99.711000px;}
.w23{width:100.611000px;}
.w6{width:116.271000px;}
.w1e{width:130.701000px;}
.wd{width:146.181000px;}
.w8{width:152.490000px;}
.w10{width:153.390000px;}
.w11{width:153.735000px;}
.w21{width:153.750000px;}
.w22{width:154.095000px;}
.w25{width:155.370000px;}
.w26{width:159.315000px;}
.w14{width:166.710000px;}
.w15{width:169.035000px;}
.w3{width:181.995000px;}
.w4{width:188.670000px;}
.wb{width:205.575000px;}
.w7{width:212.235000px;}
.w1d{width:227.370000px;}
.w9{width:237.975000px;}
.w1c{width:238.155000px;}
.wc{width:246.270000px;}
.w18{width:257.970000px;}
.wf{width:268.215000px;}
.w20{width:270.735000px;}
.w5{width:276.495000px;}
.w24{width:276.675000px;}
.w13{width:292.515000px;}
.w19{width:362.580000px;}
.w1a{width:362.595000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.091000px;}
.x24{left:15.471000px;}
.x2a{left:16.731000px;}
.x1b{left:33.651000px;}
.x2d{left:39.231000px;}
.x39{left:57.045000px;}
.x3c{left:61.005000px;}
.x1e{left:76.665000px;}
.x40{left:86.760000px;}
.xc{left:108.036000px;}
.x3d{left:111.636000px;}
.x12{left:125.496000px;}
.x8{left:131.256000px;}
.x4{left:133.596000px;}
.xd{left:147.456000px;}
.x13{left:162.030000px;}
.x2{left:176.070000px;}
.x2e{left:188.145000px;}
.x19{left:190.305000px;}
.x6{left:198.210000px;}
.x20{left:202.725000px;}
.x25{left:205.245000px;}
.x2f{left:206.490000px;}
.x2b{left:207.765000px;}
.xa{left:224.130000px;}
.x3{left:228.450000px;}
.x31{left:247.890000px;}
.x32{left:248.970000px;}
.x33{left:250.230000px;}
.xb{left:255.270000px;}
.x5{left:266.070000px;}
.x30{left:354.855000px;}
.x7{left:371.955000px;}
.x21{left:408.315000px;}
.x34{left:425.415000px;}
.x9{left:432.975000px;}
.x3f{left:434.055000px;}
.x1c{left:436.575000px;}
.x1{left:447.555000px;}
.x26{left:473.475000px;}
.x37{left:475.635000px;}
.x3e{left:476.715000px;}
.x3a{left:485.355000px;}
.xe{left:486.975000px;}
.x14{left:499.395000px;}
.x15{left:541.005000px;}
.x10{left:554.865000px;}
.x1a{left:561.000000px;}
.x1d{left:589.080000px;}
.xf{left:608.865000px;}
.x27{left:626.880000px;}
.x38{left:629.400000px;}
.x11{left:634.425000px;}
.x3b{left:640.740000px;}
.x35{left:652.800000px;}
.x22{left:654.600000px;}
.x2c{left:667.020000px;}
.x23{left:701.610000px;}
.x16{left:713.130000px;}
.x1f{left:732.390000px;}
.x36{left:764.430000px;}
.x29{left:769.290000px;}
.x28{left:773.970000px;}
.x17{left:779.010000px;}
@media print{
.v3{vertical-align:-73.760000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls12{letter-spacing:12.800000pt;}
.ls6{letter-spacing:28.160000pt;}
.ls7{letter-spacing:78.186667pt;}
.ls9{letter-spacing:78.208000pt;}
.ls2{letter-spacing:261.098667pt;}
.ls13{letter-spacing:754.799787pt;}
.wsb{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.552000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws3{word-spacing:0.000000pt;}
._29{margin-left:-4.288000pt;}
._a{margin-left:-3.264000pt;}
._2{margin-left:-2.048000pt;}
._0{margin-left:-1.051947pt;}
._1{width:0.891947pt;}
._6{width:2.030720pt;}
._7{width:3.076053pt;}
._f{width:4.544000pt;}
._10{width:5.700053pt;}
._5{width:7.350827pt;}
._14{width:8.260693pt;}
._b{width:9.408000pt;}
._1c{width:11.072000pt;}
._1d{width:12.228053pt;}
._2f{width:13.696000pt;}
._1b{width:15.104000pt;}
._11{width:17.728000pt;}
._12{width:18.624000pt;}
._21{width:19.908053pt;}
._c{width:21.120000pt;}
._28{width:22.016000pt;}
._2e{width:23.744000pt;}
._13{width:25.344000pt;}
._23{width:26.304000pt;}
._1f{width:27.776000pt;}
._20{width:28.878720pt;}
._36{width:30.619947pt;}
._9{width:31.616000pt;}
._8{width:32.539947pt;}
._1e{width:33.984000pt;}
._31{width:35.456000pt;}
._33{width:37.120000pt;}
._2b{width:38.720000pt;}
._2c{width:39.803947pt;}
._17{width:40.832000pt;}
._18{width:41.920000pt;}
._1a{width:42.816000pt;}
._34{width:44.742613pt;}
._30{width:46.016000pt;}
._d{width:47.232000pt;}
._e{width:48.580053pt;}
._32{width:49.570560pt;}
._19{width:51.675947pt;}
._2d{width:52.992000pt;}
._24{width:54.016000pt;}
._25{width:55.112107pt;}
._26{width:56.064000pt;}
._27{width:57.019947pt;}
._16{width:59.940053pt;}
._15{width:61.019947pt;}
._22{width:61.992107pt;}
._35{width:62.935893pt;}
._37{width:65.728000pt;}
._38{width:67.104000pt;}
._43{width:68.512000pt;}
._3a{width:69.824000pt;}
._40{width:71.003947pt;}
._2a{width:74.048000pt;}
._39{width:75.178667pt;}
._3f{width:76.416000pt;}
._46{width:77.312000pt;}
._3d{width:85.120000pt;}
._3e{width:86.848000pt;}
._41{width:88.091947pt;}
._42{width:89.412053pt;}
._3c{width:99.072000pt;}
._3b{width:99.968000pt;}
._44{width:102.400000pt;}
._3{width:112.347947pt;}
._48{width:121.856000pt;}
._49{width:123.136000pt;}
._4{width:179.272107pt;}
._47{width:208.576000pt;}
._45{width:513.344000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:3.680000pt;}
.y156{bottom:3.840000pt;}
.yec{bottom:3.986667pt;}
.y152{bottom:3.992000pt;}
.ye0{bottom:4.000000pt;}
.y10e{bottom:6.240000pt;}
.yb8{bottom:6.546667pt;}
.y11a{bottom:6.552000pt;}
.yae{bottom:6.560000pt;}
.y112{bottom:6.586667pt;}
.y115{bottom:6.706667pt;}
.yb5{bottom:6.720000pt;}
.y16e{bottom:6.746667pt;}
.y184{bottom:18.400000pt;}
.y1bd{bottom:18.426667pt;}
.y18b{bottom:18.546667pt;}
.y19a{bottom:18.560000pt;}
.y1f1{bottom:18.600000pt;}
.y251{bottom:20.000000pt;}
.yac{bottom:22.080000pt;}
.ye1{bottom:22.400000pt;}
.y1f8{bottom:23.680000pt;}
.yaf{bottom:27.680000pt;}
.yb1{bottom:27.840000pt;}
.y17d{bottom:28.160000pt;}
.y1e7{bottom:41.746667pt;}
.y209{bottom:41.760000pt;}
.y1f4{bottom:41.800000pt;}
.y29e{bottom:51.232000pt;}
.y1{bottom:52.032000pt;}
.y1de{bottom:58.733333pt;}
.y1e1{bottom:59.040000pt;}
.y17c{bottom:59.200000pt;}
.y1eb{bottom:62.893333pt;}
.y1fb{bottom:65.440000pt;}
.y1ff{bottom:70.280000pt;}
.y202{bottom:70.586667pt;}
.y1e4{bottom:78.226667pt;}
.y206{bottom:78.253333pt;}
.y1f0{bottom:78.280000pt;}
.y1e6{bottom:78.546667pt;}
.y208{bottom:78.560000pt;}
.y1f3{bottom:78.600000pt;}
.y192{bottom:88.333333pt;}
.y195{bottom:88.640000pt;}
.y1b0{bottom:90.413333pt;}
.y1b6{bottom:93.640000pt;}
.y1dd{bottom:95.533333pt;}
.y1e0{bottom:95.840000pt;}
.y17b{bottom:96.000000pt;}
.y1bc{bottom:96.520000pt;}
.y1ea{bottom:99.693333pt;}
.y1ed{bottom:100.000000pt;}
.y173{bottom:100.352000pt;}
.y1f7{bottom:101.920000pt;}
.y1fa{bottom:102.240000pt;}
.y1ca{bottom:103.693333pt;}
.y151{bottom:106.760000pt;}
.y1fe{bottom:107.080000pt;}
.y201{bottom:107.386667pt;}
.y119{bottom:108.680000pt;}
.y25a{bottom:110.600000pt;}
.y290{bottom:111.232000pt;}
.y29{bottom:114.112000pt;}
.y204{bottom:115.040000pt;}
.y1e3{bottom:115.066667pt;}
.y1ef{bottom:115.080000pt;}
.y207{bottom:115.360000pt;}
.y1e5{bottom:115.386667pt;}
.y1f2{bottom:115.400000pt;}
.y1cf{bottom:118.080000pt;}
.y183{bottom:118.093333pt;}
.y8f{bottom:118.112000pt;}
.y29c{bottom:120.192000pt;}
.y1c2{bottom:121.133333pt;}
.y1c5{bottom:121.440000pt;}
.y172{bottom:121.472000pt;}
.y17e{bottom:122.080000pt;}
.y18a{bottom:122.106667pt;}
.y199{bottom:124.200000pt;}
.y191{bottom:125.133333pt;}
.y1a8{bottom:125.306667pt;}
.y194{bottom:125.440000pt;}
.y1ab{bottom:125.626667pt;}
.y1d6{bottom:126.120000pt;}
.y1d9{bottom:126.426667pt;}
.y1af{bottom:127.213333pt;}
.y1b2{bottom:127.520000pt;}
.y259{bottom:129.800000pt;}
.y28f{bottom:130.112000pt;}
.y1b5{bottom:130.440000pt;}
.y1b8{bottom:130.746667pt;}
.y118{bottom:130.920000pt;}
.y1db{bottom:132.320000pt;}
.y1df{bottom:132.640000pt;}
.y17a{bottom:132.800000pt;}
.y1a1{bottom:133.320000pt;}
.y1a4{bottom:133.626667pt;}
.y1e2{bottom:133.640000pt;}
.y150{bottom:134.600000pt;}
.y28{bottom:135.226667pt;}
.y8e{bottom:136.506667pt;}
.y1ec{bottom:136.826667pt;}
.ydc{bottom:138.106667pt;}
.y1f6{bottom:138.720000pt;}
.y133{bottom:138.746667pt;}
.y29b{bottom:138.906667pt;}
.y1f9{bottom:139.040000pt;}
.y280{bottom:139.226667pt;}
.y1c9{bottom:140.493333pt;}
.y1cb{bottom:140.800000pt;}
.y171{bottom:142.586667pt;}
.y1fc{bottom:143.866667pt;}
.y200{bottom:144.186667pt;}
.y258{bottom:148.840000pt;}
.y28e{bottom:148.986667pt;}
.yaa{bottom:151.226667pt;}
.y62{bottom:152.026667pt;}
.y117{bottom:153.160000pt;}
.y182{bottom:154.760000pt;}
.y8d{bottom:154.906667pt;}
.y1ce{bottom:154.920000pt;}
.y186{bottom:155.066667pt;}
.y1d1{bottom:155.240000pt;}
.y27{bottom:156.346667pt;}
.y2a{bottom:156.506667pt;}
.y29a{bottom:157.786667pt;}
.y1c1{bottom:157.933333pt;}
.y220{bottom:157.946667pt;}
.y1c4{bottom:158.240000pt;}
.y189{bottom:158.906667pt;}
.y18d{bottom:159.226667pt;}
.y27f{bottom:160.346667pt;}
.y198{bottom:161.000000pt;}
.y19c{bottom:161.320000pt;}
.y18f{bottom:161.946667pt;}
.y1a7{bottom:162.106667pt;}
.y193{bottom:162.266667pt;}
.y1aa{bottom:162.426667pt;}
.y14f{bottom:162.440000pt;}
.y1d5{bottom:162.920000pt;}
.y1d8{bottom:163.226667pt;}
.y1ad{bottom:164.026667pt;}
.y187{bottom:164.200000pt;}
.y1b1{bottom:164.346667pt;}
.ydb{bottom:167.226667pt;}
.y1b7{bottom:167.546667pt;}
.y28d{bottom:168.026667pt;}
.y257{bottom:168.040000pt;}
.y1ba{bottom:170.106667pt;}
.y1a0{bottom:170.120000pt;}
.y1a3{bottom:170.426667pt;}
.ya9{bottom:172.346667pt;}
.y21f{bottom:173.000000pt;}
.y8c{bottom:173.306667pt;}
.y116{bottom:175.400000pt;}
.y132{bottom:175.546667pt;}
.y299{bottom:176.826667pt;}
.y1c7{bottom:177.306667pt;}
.y26{bottom:177.626667pt;}
.y61{bottom:180.026667pt;}
.y27e{bottom:181.626667pt;}
.y28c{bottom:186.906667pt;}
.y256{bottom:187.240000pt;}
.y170{bottom:190.266667pt;}
.y14e{bottom:190.280000pt;}
.y21e{bottom:191.400000pt;}
.y180{bottom:191.546667pt;}
.y8b{bottom:191.706667pt;}
.y1cd{bottom:191.720000pt;}
.y185{bottom:191.866667pt;}
.y1d0{bottom:192.040000pt;}
.ya8{bottom:193.466667pt;}
.y1bf{bottom:194.720000pt;}
.y1c3{bottom:195.040000pt;}
.y188{bottom:195.706667pt;}
.y18c{bottom:196.026667pt;}
.yda{bottom:196.346667pt;}
.y114{bottom:197.640000pt;}
.y197{bottom:197.800000pt;}
.y19b{bottom:198.120000pt;}
.y25{bottom:198.746667pt;}
.y1a6{bottom:198.906667pt;}
.y1a9{bottom:199.226667pt;}
.y1a5{bottom:199.560000pt;}
.y1d3{bottom:199.706667pt;}
.y1d7{bottom:200.026667pt;}
.y27d{bottom:202.746667pt;}
.y16f{bottom:205.320000pt;}
.y28b{bottom:205.786667pt;}
.y255{bottom:206.280000pt;}
.y19e{bottom:206.906667pt;}
.y1a2{bottom:207.226667pt;}
.y21d{bottom:209.800000pt;}
.y298{bottom:214.586667pt;}
.y14d{bottom:218.280000pt;}
.y131{bottom:219.226667pt;}
.y24{bottom:219.866667pt;}
.y113{bottom:220.040000pt;}
.y2c6{bottom:222.586667pt;}
.y8a{bottom:223.546667pt;}
.y27c{bottom:223.866667pt;}
.yd9{bottom:225.306667pt;}
.y254{bottom:225.480000pt;}
.y21c{bottom:228.200000pt;}
.y297{bottom:233.626667pt;}
.y28a{bottom:236.506667pt;}
.y16d{bottom:237.480000pt;}
.y23{bottom:240.986667pt;}
.y2c5{bottom:242.266667pt;}
.y111{bottom:242.280000pt;}
.y227{bottom:244.066667pt;}
.y89{bottom:244.546667pt;}
.y27b{bottom:245.026667pt;}
.y14c{bottom:246.146667pt;}
.y21b{bottom:246.626667pt;}
.y296{bottom:252.546667pt;}
.yd8{bottom:254.466667pt;}
.y289{bottom:256.226667pt;}
.y22{bottom:262.146667pt;}
.y253{bottom:263.746667pt;}
.y1dc{bottom:264.053333pt;}
.y1da{bottom:264.066667pt;}
.y110{bottom:264.546667pt;}
.y27a{bottom:266.146667pt;}
.y21a{bottom:267.106667pt;}
.y1c0{bottom:269.013333pt;}
.y1be{bottom:269.026667pt;}
.y16c{bottom:269.826667pt;}
.y295{bottom:271.586667pt;}
.y14b{bottom:273.986667pt;}
.y288{bottom:276.066667pt;}
.y160{bottom:279.906667pt;}
.y226{bottom:280.866667pt;}
.y88{bottom:281.506667pt;}
.y2c4{bottom:281.986667pt;}
.y252{bottom:282.946667pt;}
.y21{bottom:283.426667pt;}
.yd7{bottom:283.586667pt;}
.ya7{bottom:284.706667pt;}
.y20a{bottom:285.026667pt;}
.y219{bottom:285.506667pt;}
.y279{bottom:287.426667pt;}
.y294{bottom:290.466667pt;}
.y287{bottom:295.906667pt;}
.y205{bottom:300.373333pt;}
.y203{bottom:300.386667pt;}
.y14a{bottom:301.826667pt;}
.y16b{bottom:301.986667pt;}
.y218{bottom:303.746667pt;}
.y20{bottom:304.546667pt;}
.y10f{bottom:306.786667pt;}
.y278{bottom:308.546667pt;}
.y293{bottom:309.346667pt;}
.yd6{bottom:312.546667pt;}
.y286{bottom:315.746667pt;}
.y15f{bottom:316.706667pt;}
.y225{bottom:317.666667pt;}
.y87{bottom:321.826667pt;}
.y217{bottom:322.146667pt;}
.y1f{bottom:325.666667pt;}
.y292{bottom:328.386667pt;}
.y149{bottom:329.666667pt;}
.yc9{bottom:333.666667pt;}
.y16a{bottom:334.146667pt;}
.y285{bottom:335.746667pt;}
.y2c3{bottom:336.386667pt;}
.y216{bottom:340.546667pt;}
.y1e{bottom:346.786667pt;}
.y103{bottom:349.666667pt;}
.y10d{bottom:349.826667pt;}
.y277{bottom:350.786667pt;}
.y15e{bottom:353.346667pt;}
.yc8{bottom:354.786667pt;}
.y250{bottom:355.106667pt;}
.y284{bottom:355.586667pt;}
.y291{bottom:356.546667pt;}
.y148{bottom:357.506667pt;}
.y215{bottom:358.946667pt;}
.y224{bottom:361.186667pt;}
.yd5{bottom:365.346667pt;}
.y169{bottom:366.306667pt;}
.y1d{bottom:368.066667pt;}
.y244{bottom:368.866667pt;}
.yf9{bottom:370.786667pt;}
.y276{bottom:372.066667pt;}
.y86{bottom:373.346667pt;}
.y181{bottom:375.253333pt;}
.y17f{bottom:375.266667pt;}
.y283{bottom:375.426667pt;}
.yc7{bottom:375.906667pt;}
.y60{bottom:377.186667pt;}
.y214{bottom:377.346667pt;}
.y2c2{bottom:378.626667pt;}
.y102{bottom:381.506667pt;}
.y147{bottom:385.506667pt;}
.yd4{bottom:386.466667pt;}
.y243{bottom:389.986667pt;}
.y15d{bottom:390.146667pt;}
.yf8{bottom:391.906667pt;}
.y275{bottom:393.186667pt;}
.y24f{bottom:394.306667pt;}
.y282{bottom:394.946667pt;}
.y1c{bottom:395.266667pt;}
.y213{bottom:395.746667pt;}
.y10c{bottom:396.866667pt;}
.yc6{bottom:397.026667pt;}
.y168{bottom:398.626667pt;}
.y68{bottom:401.346667pt;}
.y101{bottom:402.466667pt;}
.yd3{bottom:407.586667pt;}
.y5f{bottom:409.026667pt;}
.y242{bottom:411.106667pt;}
.y1d4{bottom:411.733333pt;}
.y1d2{bottom:411.746667pt;}
.yf7{bottom:413.026667pt;}
.y2c1{bottom:413.186667pt;}
.y24e{bottom:413.506667pt;}
.y19f{bottom:413.813333pt;}
.y19d{bottom:413.826667pt;}
.y146{bottom:413.986667pt;}
.y212{bottom:414.146667pt;}
.y274{bottom:414.306667pt;}
.y10b{bottom:415.266667pt;}
.yc5{bottom:418.146667pt;}
.y100{bottom:423.586667pt;}
.yd2{bottom:428.706667pt;}
.y1fd{bottom:430.773333pt;}
.y167{bottom:430.786667pt;}
.y241{bottom:432.226667pt;}
.y24d{bottom:433.346667pt;}
.y1b{bottom:433.826667pt;}
.yf6{bottom:434.306667pt;}
.y273{bottom:435.426667pt;}
.y67{bottom:436.386667pt;}
.y211{bottom:438.146667pt;}
.yc4{bottom:439.426667pt;}
.y46{bottom:440.866667pt;}
.yff{bottom:444.706667pt;}
.yd1{bottom:449.826667pt;}
.y240{bottom:453.346667pt;}
.yf5{bottom:455.426667pt;}
.y272{bottom:456.706667pt;}
.y145{bottom:457.186667pt;}
.yc3{bottom:460.546667pt;}
.y45{bottom:461.826667pt;}
.y10a{bottom:462.786667pt;}
.y1a{bottom:463.106667pt;}
.y166{bottom:463.586667pt;}
.yfe{bottom:465.986667pt;}
.y281{bottom:466.626667pt;}
.y24c{bottom:467.746667pt;}
.y2b7{bottom:468.866667pt;}
.yd0{bottom:471.106667pt;}
.y23f{bottom:474.626667pt;}
.y210{bottom:475.106667pt;}
.y144{bottom:475.586667pt;}
.yf4{bottom:476.546667pt;}
.y271{bottom:477.826667pt;}
.y1bb{bottom:479.093333pt;}
.y1b9{bottom:479.106667pt;}
.y19{bottom:481.506667pt;}
.yc2{bottom:481.666667pt;}
.y44{bottom:482.946667pt;}
.y2c0{bottom:485.346667pt;}
.y24b{bottom:486.146667pt;}
.yfd{bottom:487.106667pt;}
.y2b6{bottom:489.986667pt;}
.y66{bottom:492.066667pt;}
.ycf{bottom:492.226667pt;}
.y20f{bottom:493.506667pt;}
.yf3{bottom:497.693333pt;}
.y5e{bottom:498.813333pt;}
.y270{bottom:498.973333pt;}
.y109{bottom:499.613333pt;}
.y18{bottom:499.933333pt;}
.yc1{bottom:502.813333pt;}
.y43{bottom:504.093333pt;}
.y2bf{bottom:506.493333pt;}
.y23e{bottom:506.653333pt;}
.yfc{bottom:508.253333pt;}
.y2b5{bottom:511.133333pt;}
.yce{bottom:513.373333pt;}
.y12a{bottom:514.813333pt;}
.y65{bottom:515.773333pt;}
.y249{bottom:517.853333pt;}
.y24a{bottom:518.013333pt;}
.y17{bottom:518.333333pt;}
.yf2{bottom:518.973333pt;}
.y5d{bottom:519.773333pt;}
.y26f{bottom:520.093333pt;}
.y143{bottom:523.133333pt;}
.yc0{bottom:524.093333pt;}
.y20e{bottom:525.213333pt;}
.y42{bottom:525.373333pt;}
.y23d{bottom:527.613333pt;}
.yfb{bottom:529.373333pt;}
.y2b4{bottom:532.413333pt;}
.y165{bottom:534.173333pt;}
.ycd{bottom:534.493333pt;}
.y108{bottom:536.413333pt;}
.y16{bottom:536.733333pt;}
.y248{bottom:538.973333pt;}
.yf1{bottom:540.093333pt;}
.y5c{bottom:540.893333pt;}
.y26e{bottom:541.373333pt;}
.ybf{bottom:545.213333pt;}
.y20d{bottom:546.333333pt;}
.y41{bottom:546.493333pt;}
.y23c{bottom:548.733333pt;}
.y129{bottom:551.613333pt;}
.y2b3{bottom:553.533333pt;}
.y15{bottom:555.133333pt;}
.ycc{bottom:555.613333pt;}
.y13d{bottom:559.933333pt;}
.y247{bottom:560.093333pt;}
.yf0{bottom:561.213333pt;}
.yfa{bottom:561.373333pt;}
.y5b{bottom:562.173333pt;}
.y26d{bottom:562.493333pt;}
.ybe{bottom:566.333333pt;}
.y20c{bottom:567.453333pt;}
.y40{bottom:567.613333pt;}
.y23b{bottom:569.853333pt;}
.y107{bottom:573.213333pt;}
.y14{bottom:573.533333pt;}
.y2b2{bottom:574.653333pt;}
.ycb{bottom:576.893333pt;}
.y130{bottom:577.693333pt;}
.y164{bottom:581.693333pt;}
.yef{bottom:582.333333pt;}
.y5a{bottom:583.293333pt;}
.y26c{bottom:583.613333pt;}
.ybd{bottom:587.453333pt;}
.y128{bottom:588.413333pt;}
.y20b{bottom:588.573333pt;}
.y3f{bottom:588.733333pt;}
.y1f5{bottom:590.013333pt;}
.y23a{bottom:591.133333pt;}
.y13{bottom:591.933333pt;}
.y2b1{bottom:595.773333pt;}
.y13c{bottom:596.733333pt;}
.yee{bottom:603.613333pt;}
.y59{bottom:604.413333pt;}
.y26b{bottom:604.733333pt;}
.y142{bottom:607.293333pt;}
.y246{bottom:607.773333pt;}
.ybc{bottom:608.733333pt;}
.yca{bottom:608.893333pt;}
.y3e{bottom:609.853333pt;}
.y106{bottom:610.013333pt;}
.y12{bottom:610.333333pt;}
.y239{bottom:612.253333pt;}
.y12f{bottom:614.493333pt;}
.y2b0{bottom:616.893333pt;}
.y163{bottom:618.493333pt;}
.y127{bottom:625.213333pt;}
.y58{bottom:625.533333pt;}
.y26a{bottom:626.013333pt;}
.y1cc{bottom:626.813333pt;}
.y11{bottom:628.733333pt;}
.ybb{bottom:629.853333pt;}
.y7a{bottom:630.813333pt;}
.y3d{bottom:631.133333pt;}
.ya6{bottom:632.893333pt;}
.y238{bottom:633.373333pt;}
.y13b{bottom:633.533333pt;}
.y196{bottom:636.093333pt;}
.y2af{bottom:638.173333pt;}
.y141{bottom:644.093333pt;}
.y245{bottom:644.573333pt;}
.y57{bottom:646.813333pt;}
.y10{bottom:647.133333pt;}
.yed{bottom:651.133333pt;}
.y12e{bottom:651.293333pt;}
.y79{bottom:651.933333pt;}
.y3c{bottom:652.253333pt;}
.y237{bottom:654.493333pt;}
.y162{bottom:655.293333pt;}
.y105{bottom:657.373333pt;}
.y2ae{bottom:659.293333pt;}
.y85{bottom:660.093333pt;}
.y126{bottom:662.013333pt;}
.y1b4{bottom:664.573333pt;}
.y1b3{bottom:664.586667pt;}
.yf{bottom:665.053333pt;}
.yeb{bottom:666.186667pt;}
.y56{bottom:667.933333pt;}
.y269{bottom:668.253333pt;}
.ya5{bottom:669.693333pt;}
.y13a{bottom:670.333333pt;}
.y78{bottom:673.213333pt;}
.y3b{bottom:673.373333pt;}
.yba{bottom:677.533333pt;}
.y140{bottom:680.893333pt;}
.y84{bottom:681.053333pt;}
.ye{bottom:684.573333pt;}
.y236{bottom:686.493333pt;}
.yea{bottom:686.813333pt;}
.y12d{bottom:688.093333pt;}
.y55{bottom:689.053333pt;}
.y268{bottom:689.373333pt;}
.y9f{bottom:690.653333pt;}
.y161{bottom:692.093333pt;}
.yb9{bottom:692.573333pt;}
.y2ad{bottom:693.853333pt;}
.y77{bottom:694.333333pt;}
.y3a{bottom:694.493333pt;}
.y125{bottom:698.813333pt;}
.y104{bottom:701.053333pt;}
.y235{bottom:701.533333pt;}
.y83{bottom:702.173333pt;}
.y223{bottom:704.893333pt;}
.y139{bottom:706.973333pt;}
.ye9{bottom:707.293333pt;}
.y54{bottom:710.173333pt;}
.y267{bottom:710.493333pt;}
.y9e{bottom:711.933333pt;}
.yb7{bottom:713.706667pt;}
.y2ac{bottom:714.973333pt;}
.y76{bottom:715.453333pt;}
.y39{bottom:715.773333pt;}
.y13f{bottom:717.693333pt;}
.yd{bottom:719.453333pt;}
.y234{bottom:719.933333pt;}
.ya4{bottom:722.333333pt;}
.y82{bottom:723.293333pt;}
.y2be{bottom:723.613333pt;}
.y15c{bottom:724.733333pt;}
.y12c{bottom:724.893333pt;}
.ye8{bottom:727.773333pt;}
.y53{bottom:731.293333pt;}
.y266{bottom:731.773333pt;}
.y9d{bottom:733.053333pt;}
.yb6{bottom:734.813333pt;}
.y124{bottom:735.613333pt;}
.y2ab{bottom:736.093333pt;}
.y75{bottom:736.573333pt;}
.y38{bottom:736.893333pt;}
.y221{bottom:737.053333pt;}
.y233{bottom:738.333333pt;}
.ya3{bottom:743.453333pt;}
.y138{bottom:743.773333pt;}
.y1ee{bottom:744.093333pt;}
.y81{bottom:744.573333pt;}
.y2bd{bottom:744.733333pt;}
.ye7{bottom:748.453333pt;}
.y52{bottom:752.613333pt;}
.y265{bottom:752.933333pt;}
.y9c{bottom:754.213333pt;}
.y13e{bottom:754.533333pt;}
.yb4{bottom:755.973333pt;}
.yc{bottom:756.293333pt;}
.y232{bottom:756.773333pt;}
.y2aa{bottom:757.253333pt;}
.y74{bottom:757.893333pt;}
.y37{bottom:758.053333pt;}
.y15b{bottom:761.573333pt;}
.y12b{bottom:761.733333pt;}
.y64{bottom:761.893333pt;}
.y179{bottom:763.653333pt;}
.ya2{bottom:764.773333pt;}
.y80{bottom:765.733333pt;}
.y2bc{bottom:765.893333pt;}
.ye6{bottom:768.933333pt;}
.y123{bottom:772.453333pt;}
.y51{bottom:773.733333pt;}
.y264{bottom:774.053333pt;}
.y231{bottom:775.173333pt;}
.y9b{bottom:775.333333pt;}
.yb3{bottom:777.253333pt;}
.y2a9{bottom:778.533333pt;}
.y73{bottom:779.013333pt;}
.y36{bottom:779.173333pt;}
.y222{bottom:779.333333pt;}
.yb{bottom:780.773333pt;}
.y63{bottom:785.413333pt;}
.ya1{bottom:785.893333pt;}
.y7f{bottom:786.853333pt;}
.y2bb{bottom:787.013333pt;}
.ye5{bottom:789.413333pt;}
.y137{bottom:791.333333pt;}
.y230{bottom:793.573333pt;}
.y50{bottom:794.853333pt;}
.y263{bottom:795.173333pt;}
.y9a{bottom:796.613333pt;}
.yb2{bottom:798.373333pt;}
.ya{bottom:799.173333pt;}
.y2a8{bottom:799.653333pt;}
.y72{bottom:800.133333pt;}
.y35{bottom:800.453333pt;}
.y7e{bottom:807.973333pt;}
.y2ba{bottom:808.293333pt;}
.y122{bottom:809.253333pt;}
.ye4{bottom:810.053333pt;}
.y178{bottom:811.013333pt;}
.y9{bottom:811.493333pt;}
.y22f{bottom:811.973333pt;}
.y4f{bottom:815.973333pt;}
.y262{bottom:816.453333pt;}
.y99{bottom:817.733333pt;}
.ya0{bottom:817.893333pt;}
.yb0{bottom:819.493333pt;}
.y2a7{bottom:820.773333pt;}
.y71{bottom:821.253333pt;}
.y34{bottom:821.573333pt;}
.y136{bottom:828.133333pt;}
.y2b9{bottom:829.413333pt;}
.y22e{bottom:830.373333pt;}
.y176{bottom:831.973333pt;}
.y1c8{bottom:833.880000pt;}
.y1c6{bottom:833.893333pt;}
.y15a{bottom:835.173333pt;}
.y8{bottom:835.973333pt;}
.y4e{bottom:837.253333pt;}
.y261{bottom:837.573333pt;}
.y98{bottom:838.853333pt;}
.y70{bottom:842.533333pt;}
.y33{bottom:842.693333pt;}
.y177{bottom:842.853333pt;}
.y7d{bottom:845.253333pt;}
.y121{bottom:846.053333pt;}
.ye3{bottom:846.853333pt;}
.y1ae{bottom:847.160000pt;}
.y1ac{bottom:847.173333pt;}
.y22d{bottom:848.773333pt;}
.y190{bottom:849.240000pt;}
.y18e{bottom:849.253333pt;}
.y2b8{bottom:850.533333pt;}
.y2a6{bottom:851.493333pt;}
.y175{bottom:853.253333pt;}
.y7{bottom:857.093333pt;}
.y4d{bottom:858.373333pt;}
.y260{bottom:858.693333pt;}
.y97{bottom:859.973333pt;}
.yad{bottom:861.893333pt;}
.y6f{bottom:863.653333pt;}
.y32{bottom:863.813333pt;}
.y135{bottom:864.933333pt;}
.y7c{bottom:866.373333pt;}
.y22c{bottom:867.173333pt;}
.y159{bottom:871.973333pt;}
.y174{bottom:874.373333pt;}
.y1e9{bottom:874.680000pt;}
.y1e8{bottom:874.693333pt;}
.y4c{bottom:879.493333pt;}
.y2a5{bottom:879.653333pt;}
.y25f{bottom:879.813333pt;}
.y96{bottom:881.253333pt;}
.y120{bottom:882.853333pt;}
.ye2{bottom:883.653333pt;}
.y6{bottom:884.613333pt;}
.y6e{bottom:884.773333pt;}
.y31{bottom:885.093333pt;}
.y22b{bottom:885.573333pt;}
.y2a4{bottom:898.373333pt;}
.y4b{bottom:900.613333pt;}
.y25e{bottom:901.093333pt;}
.y11f{bottom:901.253333pt;}
.y134{bottom:901.733333pt;}
.y95{bottom:902.373333pt;}
.y22a{bottom:903.973333pt;}
.yab{bottom:904.773333pt;}
.y6d{bottom:905.893333pt;}
.y30{bottom:906.213333pt;}
.y7b{bottom:906.373333pt;}
.y158{bottom:908.773333pt;}
.y5{bottom:916.293333pt;}
.y2a3{bottom:917.253333pt;}
.ydf{bottom:920.453333pt;}
.y4a{bottom:921.893333pt;}
.y25d{bottom:922.213333pt;}
.y229{bottom:922.373333pt;}
.y94{bottom:923.493333pt;}
.y6c{bottom:927.173333pt;}
.y2f{bottom:927.333333pt;}
.y2a2{bottom:936.293333pt;}
.y11e{bottom:938.533333pt;}
.y4{bottom:939.333333pt;}
.y228{bottom:940.773333pt;}
.y157{bottom:942.213333pt;}
.y25c{bottom:943.333333pt;}
.y93{bottom:944.613333pt;}
.y2c7{bottom:947.013333pt;}
.y6b{bottom:948.293333pt;}
.y2e{bottom:948.453333pt;}
.y2a1{bottom:955.173333pt;}
.ydd{bottom:957.893333pt;}
.y49{bottom:958.693333pt;}
.y11d{bottom:959.813333pt;}
.y25b{bottom:964.453333pt;}
.y2d{bottom:969.733333pt;}
.y155{bottom:970.213333pt;}
.y2a0{bottom:974.053333pt;}
.y92{bottom:975.333333pt;}
.y3{bottom:977.093333pt;}
.y48{bottom:979.813333pt;}
.y11c{bottom:982.053333pt;}
.y6a{bottom:984.133333pt;}
.y2c{bottom:990.853333pt;}
.y29f{bottom:993.093333pt;}
.y91{bottom:993.733333pt;}
.y154{bottom:998.080000pt;}
.y69{bottom:1004.000000pt;}
.y11b{bottom:1004.320000pt;}
.y2{bottom:1008.000000pt;}
.y47{bottom:1011.840000pt;}
.y2b{bottom:1012.000000pt;}
.y90{bottom:1012.160000pt;}
.y29d{bottom:1061.600000pt;}
.y153{bottom:1108.800000pt;}
.h4f{height:18.226667pt;}
.h4e{height:18.386667pt;}
.h53{height:18.400000pt;}
.h50{height:18.418667pt;}
.h52{height:18.420000pt;}
.h51{height:18.546667pt;}
.h54{height:19.026667pt;}
.h59{height:19.032000pt;}
.h58{height:19.058667pt;}
.h55{height:19.186667pt;}
.h5a{height:19.192000pt;}
.h56{height:20.146667pt;}
.h13{height:20.466667pt;}
.h16{height:20.480000pt;}
.h14{height:20.626667pt;}
.h15{height:20.660000pt;}
.hf{height:21.106667pt;}
.h12{height:21.120000pt;}
.h11{height:21.140000pt;}
.h10{height:21.266667pt;}
.h4c{height:21.586667pt;}
.h19{height:22.226667pt;}
.h1b{height:22.232000pt;}
.h1c{height:22.240000pt;}
.h18{height:22.258667pt;}
.h1d{height:22.266667pt;}
.h1a{height:22.386667pt;}
.h4d{height:23.346667pt;}
.h1e{height:27.826667pt;}
.h21{height:27.832000pt;}
.h22{height:27.840000pt;}
.h20{height:27.858667pt;}
.h23{height:27.866667pt;}
.h1f{height:27.986667pt;}
.h17{height:31.666667pt;}
.h25{height:32.146667pt;}
.h26{height:32.306667pt;}
.h27{height:32.338667pt;}
.hc{height:36.786667pt;}
.h24{height:36.826667pt;}
.h7{height:42.084375pt;}
.hd{height:42.226667pt;}
.he{height:42.386667pt;}
.h57{height:53.106667pt;}
.h5b{height:56.031250pt;}
.h9{height:57.787500pt;}
.h2{height:58.563750pt;}
.h4{height:59.340000pt;}
.ha{height:62.781250pt;}
.h8{height:62.812500pt;}
.hb{height:63.843750pt;}
.h6{height:64.500000pt;}
.h5{height:75.465000pt;}
.h3{height:80.625000pt;}
.h4b{height:129.746667pt;}
.h49{height:129.756000pt;}
.h4a{height:129.760000pt;}
.h43{height:129.778667pt;}
.h42{height:129.780000pt;}
.h41{height:147.026667pt;}
.h40{height:147.040000pt;}
.h28{height:147.520000pt;}
.h44{height:151.226667pt;}
.h45{height:151.240000pt;}
.h46{height:153.440000pt;}
.h47{height:158.586667pt;}
.h48{height:158.600000pt;}
.h2d{height:176.666667pt;}
.h2e{height:176.680000pt;}
.h33{height:178.746667pt;}
.h34{height:178.760000pt;}
.h35{height:181.946667pt;}
.h36{height:184.826667pt;}
.h37{height:184.840000pt;}
.h3a{height:192.026667pt;}
.h3b{height:192.040000pt;}
.h29{height:206.266667pt;}
.h2a{height:206.280000pt;}
.h3c{height:206.413333pt;}
.h3d{height:206.426667pt;}
.h39{height:209.426667pt;}
.h38{height:209.440000pt;}
.h2c{height:210.413333pt;}
.h2b{height:210.426667pt;}
.h2f{height:212.506667pt;}
.h32{height:213.613333pt;}
.h3e{height:214.426667pt;}
.h3f{height:214.440000pt;}
.h30{height:221.626667pt;}
.h31{height:221.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:69.912000pt;}
.w17{width:69.920000pt;}
.w1b{width:70.392000pt;}
.w2{width:73.112000pt;}
.wa{width:84.472000pt;}
.w1f{width:86.072000pt;}
.we{width:86.392000pt;}
.w12{width:88.632000pt;}
.w23{width:89.432000pt;}
.w6{width:103.352000pt;}
.w1e{width:116.178667pt;}
.wd{width:129.938667pt;}
.w8{width:135.546667pt;}
.w10{width:136.346667pt;}
.w11{width:136.653333pt;}
.w21{width:136.666667pt;}
.w22{width:136.973333pt;}
.w25{width:138.106667pt;}
.w26{width:141.613333pt;}
.w14{width:148.186667pt;}
.w15{width:150.253333pt;}
.w3{width:161.773333pt;}
.w4{width:167.706667pt;}
.wb{width:182.733333pt;}
.w7{width:188.653333pt;}
.w1d{width:202.106667pt;}
.w9{width:211.533333pt;}
.w1c{width:211.693333pt;}
.wc{width:218.906667pt;}
.w18{width:229.306667pt;}
.wf{width:238.413333pt;}
.w20{width:240.653333pt;}
.w5{width:245.773333pt;}
.w24{width:245.933333pt;}
.w13{width:260.013333pt;}
.w19{width:322.293333pt;}
.w1a{width:322.306667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.192000pt;}
.x24{left:13.752000pt;}
.x2a{left:14.872000pt;}
.x1b{left:29.912000pt;}
.x2d{left:34.872000pt;}
.x39{left:50.706667pt;}
.x3c{left:54.226667pt;}
.x1e{left:68.146667pt;}
.x40{left:77.120000pt;}
.xc{left:96.032000pt;}
.x3d{left:99.232000pt;}
.x12{left:111.552000pt;}
.x8{left:116.672000pt;}
.x4{left:118.752000pt;}
.xd{left:131.072000pt;}
.x13{left:144.026667pt;}
.x2{left:156.506667pt;}
.x2e{left:167.240000pt;}
.x19{left:169.160000pt;}
.x6{left:176.186667pt;}
.x20{left:180.200000pt;}
.x25{left:182.440000pt;}
.x2f{left:183.546667pt;}
.x2b{left:184.680000pt;}
.xa{left:199.226667pt;}
.x3{left:203.066667pt;}
.x31{left:220.346667pt;}
.x32{left:221.306667pt;}
.x33{left:222.426667pt;}
.xb{left:226.906667pt;}
.x5{left:236.506667pt;}
.x30{left:315.426667pt;}
.x7{left:330.626667pt;}
.x21{left:362.946667pt;}
.x34{left:378.146667pt;}
.x9{left:384.866667pt;}
.x3f{left:385.826667pt;}
.x1c{left:388.066667pt;}
.x1{left:397.826667pt;}
.x26{left:420.866667pt;}
.x37{left:422.786667pt;}
.x3e{left:423.746667pt;}
.x3a{left:431.426667pt;}
.xe{left:432.866667pt;}
.x14{left:443.906667pt;}
.x15{left:480.893333pt;}
.x10{left:493.213333pt;}
.x1a{left:498.666667pt;}
.x1d{left:523.626667pt;}
.xf{left:541.213333pt;}
.x27{left:557.226667pt;}
.x38{left:559.466667pt;}
.x11{left:563.933333pt;}
.x3b{left:569.546667pt;}
.x35{left:580.266667pt;}
.x22{left:581.866667pt;}
.x2c{left:592.906667pt;}
.x23{left:623.653333pt;}
.x16{left:633.893333pt;}
.x1f{left:651.013333pt;}
.x36{left:679.493333pt;}
.x29{left:683.813333pt;}
.x28{left:687.973333pt;}
.x17{left:692.453333pt;}
}




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