
    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_24710257b4ff1f9501282242.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_d31e880a694e9cd87e7f5308.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_cf447fb49f3b1ecf170efc0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.726074;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_ccd4b6680e85b2b277a40477.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930176;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_77edcbc642221cbf1372d303.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_febd57f2e9303a6185255bc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa12fa3b9ca2631735daca28.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_b76739b53feaa33d13a98395.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e46b97637697d9280f87663e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.068848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls16{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.269400px;}
.ls3{letter-spacing:-0.252000px;}
.ls21{letter-spacing:-0.223800px;}
.ls1f{letter-spacing:-0.181200px;}
.ls25{letter-spacing:-0.126000px;}
.lsb{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.058320px;}
.ls23{letter-spacing:-0.045360px;}
.ls18{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.037440px;}
.ls19{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.156000px;}
.ls1d{letter-spacing:0.156240px;}
.ls5{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.223920px;}
.lse{letter-spacing:0.252000px;}
.ls1c{letter-spacing:0.269280px;}
.ls22{letter-spacing:0.269400px;}
.ls1b{letter-spacing:0.336000px;}
.ls12{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.661680px;}
.lsa{letter-spacing:1.584000px;}
.ls10{letter-spacing:2.304000px;}
.lsc{letter-spacing:71.429760px;}
.lsd{letter-spacing:93.005760px;}
.ls7{letter-spacing:849.144000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-26.658720px;}
.ws1{word-spacing:-18.612000px;}
.ws0{word-spacing:-18.216000px;}
.wsd{word-spacing:-17.316000px;}
.ws7{word-spacing:-16.596000px;}
.wse{word-spacing:-15.372000px;}
.wsc{word-spacing:-15.264000px;}
.ws9{word-spacing:-15.228000px;}
.ws4{word-spacing:-15.174000px;}
.ws12{word-spacing:-15.138000px;}
.wsa{word-spacing:-15.120000px;}
.ws17{word-spacing:-15.030000px;}
.ws5{word-spacing:-15.012000px;}
.ws13{word-spacing:-14.994000px;}
.ws8{word-spacing:-14.904000px;}
.wsf{word-spacing:-14.652000px;}
.ws6{word-spacing:-14.508000px;}
.ws10{word-spacing:-14.418000px;}
.ws16{word-spacing:-14.400000px;}
.ws11{word-spacing:-14.310000px;}
.ws3{word-spacing:-13.447440px;}
.ws1a{word-spacing:-13.410720px;}
.ws1c{word-spacing:-13.365360px;}
.ws18{word-spacing:-13.229520px;}
.ws19{word-spacing:-13.141320px;}
.ws15{word-spacing:-10.080000px;}
.ws14{word-spacing:-10.008000px;}
.ws1b{word-spacing:-8.406720px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-14.022000px;}
._7{margin-left:-12.606000px;}
._9{margin-left:-10.332000px;}
._8{margin-left:-7.332000px;}
._a{margin-left:-5.742000px;}
._c{margin-left:-4.680000px;}
._d{margin-left:-3.486000px;}
._6{margin-left:-2.322000px;}
._1{margin-left:-1.163760px;}
._5{width:1.427760px;}
._f{width:2.784000px;}
._11{width:3.823680px;}
._10{width:5.106000px;}
._e{width:75.888000px;}
._3{width:343.734240px;}
._4{width:584.274240px;}
._14{width:597.918240px;}
._13{width:837.558720px;}
._0{width:849.144000px;}
._12{width:1013.715840px;}
._2{width:1044.399600px;}
.fc6{color:rgb(47,84,150);}
.fc5{color:rgb(239,177,11);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(5,62,128);}
.fc7{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(118,113,113);}
.fsa{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y19e{bottom:2.520000px;}
.y96{bottom:2.880000px;}
.y9d{bottom:3.060000px;}
.y39{bottom:4.140000px;}
.ye{bottom:7.740000px;}
.y2d{bottom:10.620000px;}
.yc{bottom:10.800000px;}
.y1a4{bottom:11.160000px;}
.y8{bottom:12.960000px;}
.y14{bottom:15.840000px;}
.y1a1{bottom:16.200000px;}
.y1a8{bottom:16.380000px;}
.y19{bottom:17.100000px;}
.y15{bottom:17.280000px;}
.y1f{bottom:17.325000px;}
.y9a{bottom:18.360000px;}
.ya0{bottom:18.390000px;}
.y9c{bottom:18.540000px;}
.y29{bottom:19.620000px;}
.y38{bottom:20.880000px;}
.y17{bottom:21.600000px;}
.y1b{bottom:21.780000px;}
.y2b{bottom:21.960000px;}
.y28{bottom:21.990000px;}
.y1{bottom:25.200000px;}
.y1ab{bottom:30.060000px;}
.y9f{bottom:33.870000px;}
.y99{bottom:34.020000px;}
.y18{bottom:35.100000px;}
.y37{bottom:37.620000px;}
.y36{bottom:54.540000px;}
.y32{bottom:55.080000px;}
.yb{bottom:57.780000px;}
.y12{bottom:58.320000px;}
.y19a{bottom:58.356000px;}
.y7{bottom:66.465000px;}
.y35{bottom:71.325000px;}
.y34{bottom:88.065000px;}
.ya{bottom:92.700000px;}
.y33{bottom:104.805000px;}
.y135{bottom:111.420000px;}
.y134{bottom:115.920000px;}
.y173{bottom:118.620000px;}
.yba{bottom:120.600000px;}
.y133{bottom:125.640000px;}
.y8c{bottom:128.880000px;}
.y172{bottom:135.360000px;}
.yb9{bottom:137.340000px;}
.y8b{bottom:145.800000px;}
.y171{bottom:152.100000px;}
.yb8{bottom:154.080000px;}
.ye8{bottom:154.260000px;}
.y8a{bottom:162.570000px;}
.y104{bottom:166.530000px;}
.y170{bottom:168.870000px;}
.yb7{bottom:171.030000px;}
.y89{bottom:179.310000px;}
.y16f{bottom:185.610000px;}
.yb6{bottom:187.770000px;}
.y103{bottom:195.330000px;}
.y88{bottom:196.050000px;}
.y16e{bottom:202.350000px;}
.ye7{bottom:204.690000px;}
.y87{bottom:212.970000px;}
.yb5{bottom:216.210000px;}
.y16d{bottom:219.090000px;}
.y102{bottom:224.130000px;}
.y86{bottom:229.710000px;}
.yb4{bottom:233.130000px;}
.y16c{bottom:235.830000px;}
.y85{bottom:246.450000px;}
.yb3{bottom:249.870000px;}
.y16b{bottom:252.570000px;}
.y101{bottom:252.930000px;}
.ye6{bottom:261.930000px;}
.y84{bottom:263.190000px;}
.yb2{bottom:266.790000px;}
.y16a{bottom:269.310000px;}
.y3c{bottom:270.030000px;}
.ye5{bottom:278.850000px;}
.y83{bottom:279.930000px;}
.y100{bottom:284.790000px;}
.y169{bottom:286.050000px;}
.y3b{bottom:293.790000px;}
.yb1{bottom:295.230000px;}
.y82{bottom:296.670000px;}
.yff{bottom:301.530000px;}
.y168{bottom:302.970000px;}
.ye4{bottom:307.470000px;}
.y3a{bottom:307.830000px;}
.y81{bottom:313.410000px;}
.yfe{bottom:314.130000px;}
.y167{bottom:319.710000px;}
.yb0{bottom:324.030000px;}
.ye3{bottom:324.390000px;}
.y166{bottom:336.450000px;}
.y132{bottom:338.970000px;}
.y80{bottom:340.410000px;}
.yaf{bottom:340.950000px;}
.ye2{bottom:341.130000px;}
.y31{bottom:348.150000px;}
.y165{bottom:353.190000px;}
.y131{bottom:355.890000px;}
.yae{bottom:357.690000px;}
.ye1{bottom:369.750000px;}
.y164{bottom:369.930000px;}
.y130{bottom:372.630000px;}
.y7f{bottom:373.350000px;}
.yad{bottom:374.430000px;}
.y196{bottom:381.090000px;}
.y163{bottom:386.670000px;}
.y12f{bottom:389.370000px;}
.y7e{bottom:390.270000px;}
.ye0{bottom:398.370000px;}
.yac{bottom:403.050000px;}
.y162{bottom:403.410000px;}
.y12e{bottom:406.155000px;}
.y7d{bottom:407.055000px;}
.y1b1{bottom:416.595000px;}
.yab{bottom:420.015000px;}
.y161{bottom:420.195000px;}
.y13b{bottom:422.535000px;}
.y12d{bottom:422.895000px;}
.y7c{bottom:423.795000px;}
.ydf{bottom:427.215000px;}
.y1b0{bottom:433.545000px;}
.yaa{bottom:436.755000px;}
.y160{bottom:436.935000px;}
.y12c{bottom:439.635000px;}
.y7b{bottom:440.535000px;}
.yde{bottom:444.135000px;}
.y1af{bottom:450.285000px;}
.ya9{bottom:453.495000px;}
.y15f{bottom:453.675000px;}
.y13a{bottom:454.215000px;}
.y12b{bottom:456.555000px;}
.y7a{bottom:457.275000px;}
.ydd{bottom:460.875000px;}
.y30{bottom:466.995000px;}
.ya8{bottom:470.235000px;}
.y15e{bottom:470.415000px;}
.y139{bottom:470.955000px;}
.y12a{bottom:473.295000px;}
.y195{bottom:473.475000px;}
.y79{bottom:474.015000px;}
.ydc{bottom:477.615000px;}
.y1ae{bottom:478.905000px;}
.ya7{bottom:486.975000px;}
.y15d{bottom:487.155000px;}
.y129{bottom:490.035000px;}
.y194{bottom:490.395000px;}
.y78{bottom:490.755000px;}
.y1ad{bottom:491.685000px;}
.ydb{bottom:494.355000px;}
.y138{bottom:496.695000px;}
.y2f{bottom:498.315000px;}
.ya6{bottom:503.715000px;}
.y15c{bottom:503.895000px;}
.yfd{bottom:506.235000px;}
.y128{bottom:506.775000px;}
.y193{bottom:507.135000px;}
.y77{bottom:507.495000px;}
.yda{bottom:511.275000px;}
.y1ac{bottom:519.225000px;}
.y15b{bottom:520.635000px;}
.y127{bottom:523.515000px;}
.y192{bottom:523.875000px;}
.y2e{bottom:529.635000px;}
.ya5{bottom:532.335000px;}
.y1aa{bottom:533.085000px;}
.y76{bottom:536.115000px;}
.y15a{bottom:537.555000px;}
.yd9{bottom:539.715000px;}
.y126{bottom:540.255000px;}
.y191{bottom:540.615000px;}
.y75{bottom:553.035000px;}
.y159{bottom:554.295000px;}
.yd8{bottom:556.635000px;}
.y125{bottom:556.995000px;}
.y190{bottom:557.355000px;}
.ya4{bottom:559.515000px;}
.y2c{bottom:561.135000px;}
.y74{bottom:569.775000px;}
.y158{bottom:571.035000px;}
.yd7{bottom:573.375000px;}
.y124{bottom:573.735000px;}
.y18f{bottom:574.095000px;}
.y1a9{bottom:574.485000px;}
.y73{bottom:586.515000px;}
.y157{bottom:587.775000px;}
.y1a7{bottom:588.165000px;}
.ya3{bottom:588.495000px;}
.y123{bottom:590.475000px;}
.y18e{bottom:590.835000px;}
.y2a{bottom:592.455000px;}
.yd6{bottom:601.995000px;}
.y72{bottom:603.255000px;}
.ya2{bottom:603.975000px;}
.y156{bottom:604.515000px;}
.y122{bottom:607.215000px;}
.y18d{bottom:607.575000px;}
.y1a6{bottom:615.930000px;}
.yd5{bottom:618.915000px;}
.ya1{bottom:619.455000px;}
.y71{bottom:619.995000px;}
.y155{bottom:621.255000px;}
.y121{bottom:623.955000px;}
.y18c{bottom:624.315000px;}
.y27{bottom:628.635000px;}
.y1a5{bottom:629.610000px;}
.y9e{bottom:635.115000px;}
.yd4{bottom:635.655000px;}
.y70{bottom:636.915000px;}
.y154{bottom:637.995000px;}
.y18b{bottom:641.055000px;}
.y1a3{bottom:643.470000px;}
.y11f{bottom:652.605000px;}
.y6f{bottom:653.685000px;}
.y153{bottom:654.765000px;}
.y120{bottom:657.105000px;}
.y18a{bottom:657.825000px;}
.yd3{bottom:664.305000px;}
.y26{bottom:664.665000px;}
.y1a2{bottom:665.970000px;}
.y11e{bottom:669.525000px;}
.y6e{bottom:670.425000px;}
.y152{bottom:671.505000px;}
.y189{bottom:674.565000px;}
.y1a0{bottom:679.830000px;}
.y9b{bottom:681.585000px;}
.y9{bottom:682.125000px;}
.y11d{bottom:686.265000px;}
.y6d{bottom:687.165000px;}
.y151{bottom:688.245000px;}
.y188{bottom:691.305000px;}
.yd2{bottom:693.105000px;}
.y19f{bottom:693.510000px;}
.y25{bottom:696.165000px;}
.y11c{bottom:703.005000px;}
.y150{bottom:704.985000px;}
.y19d{bottom:707.370000px;}
.y187{bottom:708.045000px;}
.yd1{bottom:710.025000px;}
.y98{bottom:712.725000px;}
.y6c{bottom:715.605000px;}
.y11b{bottom:719.745000px;}
.y14f{bottom:721.725000px;}
.y186{bottom:724.785000px;}
.yd0{bottom:726.765000px;}
.yfc{bottom:726.945000px;}
.y24{bottom:727.485000px;}
.y6b{bottom:732.705000px;}
.y11a{bottom:736.485000px;}
.y14e{bottom:738.465000px;}
.y19c{bottom:740.310000px;}
.y185{bottom:741.705000px;}
.ycf{bottom:743.505000px;}
.yfb{bottom:743.865000px;}
.y6a{bottom:749.445000px;}
.y119{bottom:753.225000px;}
.y14d{bottom:755.205000px;}
.y19b{bottom:757.050000px;}
.y184{bottom:758.445000px;}
.y23{bottom:758.805000px;}
.y97{bottom:759.345000px;}
.yfa{bottom:760.605000px;}
.y69{bottom:766.185000px;}
.y118{bottom:769.965000px;}
.yce{bottom:772.125000px;}
.y95{bottom:774.825000px;}
.y199{bottom:775.050000px;}
.y183{bottom:775.185000px;}
.yf9{bottom:777.345000px;}
.y4b{bottom:779.865000px;}
.y68{bottom:782.925000px;}
.y137{bottom:788.865000px;}
.ycd{bottom:789.045000px;}
.y22{bottom:790.125000px;}
.y182{bottom:791.925000px;}
.yf8{bottom:794.085000px;}
.y117{bottom:798.585000px;}
.y67{bottom:799.665000px;}
.y58{bottom:799.845000px;}
.y198{bottom:801.720000px;}
.y4a{bottom:804.165000px;}
.y14c{bottom:805.605000px;}
.ycc{bottom:805.785000px;}
.y181{bottom:808.665000px;}
.y94{bottom:809.385000px;}
.yf7{bottom:810.825000px;}
.y116{bottom:815.505000px;}
.y21{bottom:821.445000px;}
.y14b{bottom:822.345000px;}
.ycb{bottom:822.525000px;}
.y197{bottom:822.600000px;}
.y180{bottom:825.405000px;}
.y93{bottom:826.305000px;}
.y66{bottom:826.665000px;}
.yf6{bottom:827.565000px;}
.y49{bottom:828.285000px;}
.y57{bottom:828.465000px;}
.y115{bottom:832.245000px;}
.y6{bottom:838.005000px;}
.y14a{bottom:839.085000px;}
.yca{bottom:839.265000px;}
.y17f{bottom:842.145000px;}
.yf5{bottom:844.485000px;}
.y114{bottom:848.985000px;}
.y48{bottom:852.585000px;}
.y20{bottom:852.945000px;}
.y92{bottom:854.745000px;}
.y149{bottom:855.825000px;}
.yc9{bottom:856.005000px;}
.y56{bottom:857.265000px;}
.y17e{bottom:858.885000px;}
.y65{bottom:859.605000px;}
.yf4{bottom:861.225000px;}
.y136{bottom:865.005000px;}
.y113{bottom:865.905000px;}
.y91{bottom:871.665000px;}
.y148{bottom:872.565000px;}
.y17d{bottom:875.625000px;}
.y64{bottom:876.525000px;}
.y47{bottom:876.885000px;}
.y5{bottom:877.965000px;}
.y55{bottom:880.845000px;}
.y112{bottom:882.645000px;}
.y1e{bottom:884.265000px;}
.yc8{bottom:884.625000px;}
.y90{bottom:888.405000px;}
.y147{bottom:889.305000px;}
.y17c{bottom:892.365000px;}
.y63{bottom:893.265000px;}
.y4{bottom:894.885000px;}
.y111{bottom:899.430000px;}
.y46{bottom:901.230000px;}
.y54{bottom:904.110000px;}
.y8f{bottom:905.190000px;}
.y146{bottom:906.090000px;}
.yf3{bottom:906.450000px;}
.y17b{bottom:909.150000px;}
.y62{bottom:910.050000px;}
.yc7{bottom:913.470000px;}
.y1d{bottom:915.630000px;}
.y110{bottom:916.170000px;}
.y8e{bottom:922.110000px;}
.y145{bottom:922.830000px;}
.yf2{bottom:923.370000px;}
.y45{bottom:925.350000px;}
.y17a{bottom:925.890000px;}
.y53{bottom:927.330000px;}
.yc6{bottom:930.390000px;}
.y61{bottom:938.670000px;}
.y8d{bottom:938.850000px;}
.y144{bottom:939.570000px;}
.yf1{bottom:940.290000px;}
.y179{bottom:942.630000px;}
.y10f{bottom:944.610000px;}
.y1c{bottom:946.950000px;}
.yc5{bottom:947.130000px;}
.y44{bottom:949.650000px;}
.y52{bottom:950.730000px;}
.y3{bottom:952.350000px;}
.y60{bottom:955.590000px;}
.y143{bottom:956.310000px;}
.y178{bottom:959.370000px;}
.y10e{bottom:961.710000px;}
.yc4{bottom:964.050000px;}
.yf0{bottom:968.730000px;}
.y5f{bottom:972.330000px;}
.y142{bottom:973.050000px;}
.y43{bottom:973.950000px;}
.y177{bottom:976.290000px;}
.y2{bottom:978.270000px;}
.y10d{bottom:978.450000px;}
.yc3{bottom:980.790000px;}
.yef{bottom:985.650000px;}
.y5e{bottom:989.070000px;}
.y141{bottom:989.790000px;}
.y176{bottom:993.030000px;}
.y10c{bottom:995.190000px;}
.y51{bottom:997.170000px;}
.yc2{bottom:997.530000px;}
.y42{bottom:998.250000px;}
.yee{bottom:1002.390000px;}
.y5d{bottom:1005.810000px;}
.y140{bottom:1006.710000px;}
.y1a{bottom:1009.590000px;}
.y175{bottom:1009.770000px;}
.y10b{bottom:1011.930000px;}
.yed{bottom:1019.130000px;}
.y50{bottom:1020.570000px;}
.y41{bottom:1022.370000px;}
.y5c{bottom:1022.550000px;}
.y13f{bottom:1023.450000px;}
.yc1{bottom:1026.330000px;}
.y174{bottom:1026.510000px;}
.y10a{bottom:1028.670000px;}
.yec{bottom:1036.050000px;}
.y5b{bottom:1039.290000px;}
.y13e{bottom:1040.190000px;}
.yc0{bottom:1043.250000px;}
.y4f{bottom:1043.790000px;}
.y109{bottom:1045.410000px;}
.y40{bottom:1046.670000px;}
.y16{bottom:1050.090000px;}
.yeb{bottom:1052.790000px;}
.y5a{bottom:1056.030000px;}
.y13d{bottom:1056.930000px;}
.ybf{bottom:1059.990000px;}
.y108{bottom:1062.150000px;}
.y4e{bottom:1067.010000px;}
.y3f{bottom:1070.970000px;}
.y13c{bottom:1073.670000px;}
.ybe{bottom:1076.730000px;}
.y107{bottom:1078.890000px;}
.yea{bottom:1081.230000px;}
.y59{bottom:1083.030000px;}
.y4d{bottom:1090.410000px;}
.ybd{bottom:1093.470000px;}
.y3e{bottom:1095.270000px;}
.y106{bottom:1095.630000px;}
.y13{bottom:1099.230000px;}
.ye9{bottom:1110.030000px;}
.ybc{bottom:1110.210000px;}
.y3d{bottom:1116.690000px;}
.y4c{bottom:1117.050000px;}
.y105{bottom:1122.630000px;}
.ybb{bottom:1126.950000px;}
.y11{bottom:1144.980000px;}
.y10{bottom:1171.620000px;}
.yf{bottom:1192.500000px;}
.yd{bottom:1218.420000px;}
.h26{height:13.680000px;}
.h24{height:13.860000px;}
.h18{height:15.480000px;}
.h1c{height:15.660000px;}
.h27{height:22.500000px;}
.h8{height:25.560000px;}
.h25{height:27.540000px;}
.h28{height:27.756000px;}
.hf{height:29.700000px;}
.hd{height:29.880000px;}
.he{height:29.916000px;}
.h1a{height:31.140000px;}
.h21{height:31.539375px;}
.h11{height:34.560000px;}
.h10{height:34.596000px;}
.h20{height:37.546875px;}
.hb{height:38.880000px;}
.h29{height:41.400000px;}
.h1b{height:46.476000px;}
.h19{height:46.620000px;}
.hc{height:47.700000px;}
.h1f{height:48.436523px;}
.ha{height:50.312812px;}
.h9{height:51.750000px;}
.h3{height:56.320312px;}
.h2{height:56.900391px;}
.h15{height:65.884219px;}
.h17{height:75.093750px;}
.h7{height:77.625000px;}
.h5{height:86.246367px;}
.h13{height:87.859687px;}
.h14{height:91.177734px;}
.h16{height:99.874688px;}
.h4{height:111.276000px;}
.h12{height:117.396000px;}
.h6{height:119.520000px;}
.h1e{height:192.090000px;}
.h1d{height:204.690000px;}
.h22{height:892.980000px;}
.h23{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:63.576000px;}
.w8{width:74.160000px;}
.w12{width:74.376000px;}
.w14{width:84.780000px;}
.w17{width:137.520000px;}
.w16{width:137.736000px;}
.w9{width:159.330000px;}
.w18{width:160.950000px;}
.w5{width:217.290000px;}
.w6{width:221.790000px;}
.w13{width:327.990000px;}
.wc{width:331.275000px;}
.wb{width:345.810000px;}
.wa{width:442.875000px;}
.w7{width:487.515000px;}
.wd{width:677.085000px;}
.w4{width:684.825000px;}
.w3{width:685.005000px;}
.we{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w11{width:1262.879981px;}
.wf{width:1262.880000px;}
.w10{width:1263.000000px;}
.x0{left:0.000000px;}
.xc{left:7.380000px;}
.x6{left:10.800000px;}
.x9{left:44.814000px;}
.x1d{left:84.959981px;}
.x5{left:102.276000px;}
.x3{left:106.235987px;}
.x4{left:108.035987px;}
.xb{left:109.476000px;}
.x19{left:112.175987px;}
.x8{left:115.776000px;}
.xe{left:124.595987px;}
.xf{left:135.035987px;}
.x1e{left:159.330000px;}
.x13{left:162.029987px;}
.x10{left:171.749987px;}
.x11{left:182.190000px;}
.x1c{left:271.109981px;}
.xa{left:294.194987px;}
.x14{left:323.139000px;}
.x1{left:329.114987px;}
.xd{left:332.175000px;}
.x12{left:341.535000px;}
.x16{left:344.199000px;}
.x15{left:453.855000px;}
.x1f{left:487.335000px;}
.x7{left:537.369000px;}
.x20{left:572.115000px;}
.x1b{left:628.844987px;}
.x21{left:635.685000px;}
.x1a{left:637.844987px;}
.x22{left:720.465000px;}
.x17{left:753.269973px;}
.x18{left:758.309987px;}
.x2{left:786.749987px;}
.x23{left:858.210000px;}
.x24{left:995.730000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.239467pt;}
.ls3{letter-spacing:-0.224000pt;}
.ls21{letter-spacing:-0.198933pt;}
.ls1f{letter-spacing:-0.161067pt;}
.ls25{letter-spacing:-0.112000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls23{letter-spacing:-0.040320pt;}
.ls18{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.033280pt;}
.ls19{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.138667pt;}
.ls1d{letter-spacing:0.138880pt;}
.ls5{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.199040pt;}
.lse{letter-spacing:0.224000pt;}
.ls1c{letter-spacing:0.239360pt;}
.ls22{letter-spacing:0.239467pt;}
.ls1b{letter-spacing:0.298667pt;}
.ls12{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.588160pt;}
.lsa{letter-spacing:1.408000pt;}
.ls10{letter-spacing:2.048000pt;}
.lsc{letter-spacing:63.493120pt;}
.lsd{letter-spacing:82.671787pt;}
.ls7{letter-spacing:754.794667pt;}
.wsb{word-spacing:-23.696640pt;}
.ws1{word-spacing:-16.544000pt;}
.ws0{word-spacing:-16.192000pt;}
.wsd{word-spacing:-15.392000pt;}
.ws7{word-spacing:-14.752000pt;}
.wse{word-spacing:-13.664000pt;}
.wsc{word-spacing:-13.568000pt;}
.ws9{word-spacing:-13.536000pt;}
.ws4{word-spacing:-13.488000pt;}
.ws12{word-spacing:-13.456000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.360000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws13{word-spacing:-13.328000pt;}
.ws8{word-spacing:-13.248000pt;}
.wsf{word-spacing:-13.024000pt;}
.ws6{word-spacing:-12.896000pt;}
.ws10{word-spacing:-12.816000pt;}
.ws16{word-spacing:-12.800000pt;}
.ws11{word-spacing:-12.720000pt;}
.ws3{word-spacing:-11.953280pt;}
.ws1a{word-spacing:-11.920640pt;}
.ws1c{word-spacing:-11.880320pt;}
.ws18{word-spacing:-11.759573pt;}
.ws19{word-spacing:-11.681173pt;}
.ws15{word-spacing:-8.960000pt;}
.ws14{word-spacing:-8.896000pt;}
.ws1b{word-spacing:-7.472640pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-12.464000pt;}
._7{margin-left:-11.205333pt;}
._9{margin-left:-9.184000pt;}
._8{margin-left:-6.517333pt;}
._a{margin-left:-5.104000pt;}
._c{margin-left:-4.160000pt;}
._d{margin-left:-3.098667pt;}
._6{margin-left:-2.064000pt;}
._1{margin-left:-1.034453pt;}
._5{width:1.269120pt;}
._f{width:2.474667pt;}
._11{width:3.398827pt;}
._10{width:4.538667pt;}
._e{width:67.456000pt;}
._3{width:305.541547pt;}
._4{width:519.354880pt;}
._14{width:531.482880pt;}
._13{width:744.496640pt;}
._0{width:754.794667pt;}
._12{width:901.080747pt;}
._2{width:928.355200pt;}
.fsa{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y19e{bottom:2.240000pt;}
.y96{bottom:2.560000pt;}
.y9d{bottom:2.720000pt;}
.y39{bottom:3.680000pt;}
.ye{bottom:6.880000pt;}
.y2d{bottom:9.440000pt;}
.yc{bottom:9.600000pt;}
.y1a4{bottom:9.920000pt;}
.y8{bottom:11.520000pt;}
.y14{bottom:14.080000pt;}
.y1a1{bottom:14.400000pt;}
.y1a8{bottom:14.560000pt;}
.y19{bottom:15.200000pt;}
.y15{bottom:15.360000pt;}
.y1f{bottom:15.400000pt;}
.y9a{bottom:16.320000pt;}
.ya0{bottom:16.346667pt;}
.y9c{bottom:16.480000pt;}
.y29{bottom:17.440000pt;}
.y38{bottom:18.560000pt;}
.y17{bottom:19.200000pt;}
.y1b{bottom:19.360000pt;}
.y2b{bottom:19.520000pt;}
.y28{bottom:19.546667pt;}
.y1{bottom:22.400000pt;}
.y1ab{bottom:26.720000pt;}
.y9f{bottom:30.106667pt;}
.y99{bottom:30.240000pt;}
.y18{bottom:31.200000pt;}
.y37{bottom:33.440000pt;}
.y36{bottom:48.480000pt;}
.y32{bottom:48.960000pt;}
.yb{bottom:51.360000pt;}
.y12{bottom:51.840000pt;}
.y19a{bottom:51.872000pt;}
.y7{bottom:59.080000pt;}
.y35{bottom:63.400000pt;}
.y34{bottom:78.280000pt;}
.ya{bottom:82.400000pt;}
.y33{bottom:93.160000pt;}
.y135{bottom:99.040000pt;}
.y134{bottom:103.040000pt;}
.y173{bottom:105.440000pt;}
.yba{bottom:107.200000pt;}
.y133{bottom:111.680000pt;}
.y8c{bottom:114.560000pt;}
.y172{bottom:120.320000pt;}
.yb9{bottom:122.080000pt;}
.y8b{bottom:129.600000pt;}
.y171{bottom:135.200000pt;}
.yb8{bottom:136.960000pt;}
.ye8{bottom:137.120000pt;}
.y8a{bottom:144.506667pt;}
.y104{bottom:148.026667pt;}
.y170{bottom:150.106667pt;}
.yb7{bottom:152.026667pt;}
.y89{bottom:159.386667pt;}
.y16f{bottom:164.986667pt;}
.yb6{bottom:166.906667pt;}
.y103{bottom:173.626667pt;}
.y88{bottom:174.266667pt;}
.y16e{bottom:179.866667pt;}
.ye7{bottom:181.946667pt;}
.y87{bottom:189.306667pt;}
.yb5{bottom:192.186667pt;}
.y16d{bottom:194.746667pt;}
.y102{bottom:199.226667pt;}
.y86{bottom:204.186667pt;}
.yb4{bottom:207.226667pt;}
.y16c{bottom:209.626667pt;}
.y85{bottom:219.066667pt;}
.yb3{bottom:222.106667pt;}
.y16b{bottom:224.506667pt;}
.y101{bottom:224.826667pt;}
.ye6{bottom:232.826667pt;}
.y84{bottom:233.946667pt;}
.yb2{bottom:237.146667pt;}
.y16a{bottom:239.386667pt;}
.y3c{bottom:240.026667pt;}
.ye5{bottom:247.866667pt;}
.y83{bottom:248.826667pt;}
.y100{bottom:253.146667pt;}
.y169{bottom:254.266667pt;}
.y3b{bottom:261.146667pt;}
.yb1{bottom:262.426667pt;}
.y82{bottom:263.706667pt;}
.yff{bottom:268.026667pt;}
.y168{bottom:269.306667pt;}
.ye4{bottom:273.306667pt;}
.y3a{bottom:273.626667pt;}
.y81{bottom:278.586667pt;}
.yfe{bottom:279.226667pt;}
.y167{bottom:284.186667pt;}
.yb0{bottom:288.026667pt;}
.ye3{bottom:288.346667pt;}
.y166{bottom:299.066667pt;}
.y132{bottom:301.306667pt;}
.y80{bottom:302.586667pt;}
.yaf{bottom:303.066667pt;}
.ye2{bottom:303.226667pt;}
.y31{bottom:309.466667pt;}
.y165{bottom:313.946667pt;}
.y131{bottom:316.346667pt;}
.yae{bottom:317.946667pt;}
.ye1{bottom:328.666667pt;}
.y164{bottom:328.826667pt;}
.y130{bottom:331.226667pt;}
.y7f{bottom:331.866667pt;}
.yad{bottom:332.826667pt;}
.y196{bottom:338.746667pt;}
.y163{bottom:343.706667pt;}
.y12f{bottom:346.106667pt;}
.y7e{bottom:346.906667pt;}
.ye0{bottom:354.106667pt;}
.yac{bottom:358.266667pt;}
.y162{bottom:358.586667pt;}
.y12e{bottom:361.026667pt;}
.y7d{bottom:361.826667pt;}
.y1b1{bottom:370.306667pt;}
.yab{bottom:373.346667pt;}
.y161{bottom:373.506667pt;}
.y13b{bottom:375.586667pt;}
.y12d{bottom:375.906667pt;}
.y7c{bottom:376.706667pt;}
.ydf{bottom:379.746667pt;}
.y1b0{bottom:385.373333pt;}
.yaa{bottom:388.226667pt;}
.y160{bottom:388.386667pt;}
.y12c{bottom:390.786667pt;}
.y7b{bottom:391.586667pt;}
.yde{bottom:394.786667pt;}
.y1af{bottom:400.253333pt;}
.ya9{bottom:403.106667pt;}
.y15f{bottom:403.266667pt;}
.y13a{bottom:403.746667pt;}
.y12b{bottom:405.826667pt;}
.y7a{bottom:406.466667pt;}
.ydd{bottom:409.666667pt;}
.y30{bottom:415.106667pt;}
.ya8{bottom:417.986667pt;}
.y15e{bottom:418.146667pt;}
.y139{bottom:418.626667pt;}
.y12a{bottom:420.706667pt;}
.y195{bottom:420.866667pt;}
.y79{bottom:421.346667pt;}
.ydc{bottom:424.546667pt;}
.y1ae{bottom:425.693333pt;}
.ya7{bottom:432.866667pt;}
.y15d{bottom:433.026667pt;}
.y129{bottom:435.586667pt;}
.y194{bottom:435.906667pt;}
.y78{bottom:436.226667pt;}
.y1ad{bottom:437.053333pt;}
.ydb{bottom:439.426667pt;}
.y138{bottom:441.506667pt;}
.y2f{bottom:442.946667pt;}
.ya6{bottom:447.746667pt;}
.y15c{bottom:447.906667pt;}
.yfd{bottom:449.986667pt;}
.y128{bottom:450.466667pt;}
.y193{bottom:450.786667pt;}
.y77{bottom:451.106667pt;}
.yda{bottom:454.466667pt;}
.y1ac{bottom:461.533333pt;}
.y15b{bottom:462.786667pt;}
.y127{bottom:465.346667pt;}
.y192{bottom:465.666667pt;}
.y2e{bottom:470.786667pt;}
.ya5{bottom:473.186667pt;}
.y1aa{bottom:473.853333pt;}
.y76{bottom:476.546667pt;}
.y15a{bottom:477.826667pt;}
.yd9{bottom:479.746667pt;}
.y126{bottom:480.226667pt;}
.y191{bottom:480.546667pt;}
.y75{bottom:491.586667pt;}
.y159{bottom:492.706667pt;}
.yd8{bottom:494.786667pt;}
.y125{bottom:495.106667pt;}
.y190{bottom:495.426667pt;}
.ya4{bottom:497.346667pt;}
.y2c{bottom:498.786667pt;}
.y74{bottom:506.466667pt;}
.y158{bottom:507.586667pt;}
.yd7{bottom:509.666667pt;}
.y124{bottom:509.986667pt;}
.y18f{bottom:510.306667pt;}
.y1a9{bottom:510.653333pt;}
.y73{bottom:521.346667pt;}
.y157{bottom:522.466667pt;}
.y1a7{bottom:522.813333pt;}
.ya3{bottom:523.106667pt;}
.y123{bottom:524.866667pt;}
.y18e{bottom:525.186667pt;}
.y2a{bottom:526.626667pt;}
.yd6{bottom:535.106667pt;}
.y72{bottom:536.226667pt;}
.ya2{bottom:536.866667pt;}
.y156{bottom:537.346667pt;}
.y122{bottom:539.746667pt;}
.y18d{bottom:540.066667pt;}
.y1a6{bottom:547.493333pt;}
.yd5{bottom:550.146667pt;}
.ya1{bottom:550.626667pt;}
.y71{bottom:551.106667pt;}
.y155{bottom:552.226667pt;}
.y121{bottom:554.626667pt;}
.y18c{bottom:554.946667pt;}
.y27{bottom:558.786667pt;}
.y1a5{bottom:559.653333pt;}
.y9e{bottom:564.546667pt;}
.yd4{bottom:565.026667pt;}
.y70{bottom:566.146667pt;}
.y154{bottom:567.106667pt;}
.y18b{bottom:569.826667pt;}
.y1a3{bottom:571.973333pt;}
.y11f{bottom:580.093333pt;}
.y6f{bottom:581.053333pt;}
.y153{bottom:582.013333pt;}
.y120{bottom:584.093333pt;}
.y18a{bottom:584.733333pt;}
.yd3{bottom:590.493333pt;}
.y26{bottom:590.813333pt;}
.y1a2{bottom:591.973333pt;}
.y11e{bottom:595.133333pt;}
.y6e{bottom:595.933333pt;}
.y152{bottom:596.893333pt;}
.y189{bottom:599.613333pt;}
.y1a0{bottom:604.293333pt;}
.y9b{bottom:605.853333pt;}
.y9{bottom:606.333333pt;}
.y11d{bottom:610.013333pt;}
.y6d{bottom:610.813333pt;}
.y151{bottom:611.773333pt;}
.y188{bottom:614.493333pt;}
.yd2{bottom:616.093333pt;}
.y19f{bottom:616.453333pt;}
.y25{bottom:618.813333pt;}
.y11c{bottom:624.893333pt;}
.y150{bottom:626.653333pt;}
.y19d{bottom:628.773333pt;}
.y187{bottom:629.373333pt;}
.yd1{bottom:631.133333pt;}
.y98{bottom:633.533333pt;}
.y6c{bottom:636.093333pt;}
.y11b{bottom:639.773333pt;}
.y14f{bottom:641.533333pt;}
.y186{bottom:644.253333pt;}
.yd0{bottom:646.013333pt;}
.yfc{bottom:646.173333pt;}
.y24{bottom:646.653333pt;}
.y6b{bottom:651.293333pt;}
.y11a{bottom:654.653333pt;}
.y14e{bottom:656.413333pt;}
.y19c{bottom:658.053333pt;}
.y185{bottom:659.293333pt;}
.ycf{bottom:660.893333pt;}
.yfb{bottom:661.213333pt;}
.y6a{bottom:666.173333pt;}
.y119{bottom:669.533333pt;}
.y14d{bottom:671.293333pt;}
.y19b{bottom:672.933333pt;}
.y184{bottom:674.173333pt;}
.y23{bottom:674.493333pt;}
.y97{bottom:674.973333pt;}
.yfa{bottom:676.093333pt;}
.y69{bottom:681.053333pt;}
.y118{bottom:684.413333pt;}
.yce{bottom:686.333333pt;}
.y95{bottom:688.733333pt;}
.y199{bottom:688.933333pt;}
.y183{bottom:689.053333pt;}
.yf9{bottom:690.973333pt;}
.y4b{bottom:693.213333pt;}
.y68{bottom:695.933333pt;}
.y137{bottom:701.213333pt;}
.ycd{bottom:701.373333pt;}
.y22{bottom:702.333333pt;}
.y182{bottom:703.933333pt;}
.yf8{bottom:705.853333pt;}
.y117{bottom:709.853333pt;}
.y67{bottom:710.813333pt;}
.y58{bottom:710.973333pt;}
.y198{bottom:712.640000pt;}
.y4a{bottom:714.813333pt;}
.y14c{bottom:716.093333pt;}
.ycc{bottom:716.253333pt;}
.y181{bottom:718.813333pt;}
.y94{bottom:719.453333pt;}
.yf7{bottom:720.733333pt;}
.y116{bottom:724.893333pt;}
.y21{bottom:730.173333pt;}
.y14b{bottom:730.973333pt;}
.ycb{bottom:731.133333pt;}
.y197{bottom:731.200000pt;}
.y180{bottom:733.693333pt;}
.y93{bottom:734.493333pt;}
.y66{bottom:734.813333pt;}
.yf6{bottom:735.613333pt;}
.y49{bottom:736.253333pt;}
.y57{bottom:736.413333pt;}
.y115{bottom:739.773333pt;}
.y6{bottom:744.893333pt;}
.y14a{bottom:745.853333pt;}
.yca{bottom:746.013333pt;}
.y17f{bottom:748.573333pt;}
.yf5{bottom:750.653333pt;}
.y114{bottom:754.653333pt;}
.y48{bottom:757.853333pt;}
.y20{bottom:758.173333pt;}
.y92{bottom:759.773333pt;}
.y149{bottom:760.733333pt;}
.yc9{bottom:760.893333pt;}
.y56{bottom:762.013333pt;}
.y17e{bottom:763.453333pt;}
.y65{bottom:764.093333pt;}
.yf4{bottom:765.533333pt;}
.y136{bottom:768.893333pt;}
.y113{bottom:769.693333pt;}
.y91{bottom:774.813333pt;}
.y148{bottom:775.613333pt;}
.y17d{bottom:778.333333pt;}
.y64{bottom:779.133333pt;}
.y47{bottom:779.453333pt;}
.y5{bottom:780.413333pt;}
.y55{bottom:782.973333pt;}
.y112{bottom:784.573333pt;}
.y1e{bottom:786.013333pt;}
.yc8{bottom:786.333333pt;}
.y90{bottom:789.693333pt;}
.y147{bottom:790.493333pt;}
.y17c{bottom:793.213333pt;}
.y63{bottom:794.013333pt;}
.y4{bottom:795.453333pt;}
.y111{bottom:799.493333pt;}
.y46{bottom:801.093333pt;}
.y54{bottom:803.653333pt;}
.y8f{bottom:804.613333pt;}
.y146{bottom:805.413333pt;}
.yf3{bottom:805.733333pt;}
.y17b{bottom:808.133333pt;}
.y62{bottom:808.933333pt;}
.yc7{bottom:811.973333pt;}
.y1d{bottom:813.893333pt;}
.y110{bottom:814.373333pt;}
.y8e{bottom:819.653333pt;}
.y145{bottom:820.293333pt;}
.yf2{bottom:820.773333pt;}
.y45{bottom:822.533333pt;}
.y17a{bottom:823.013333pt;}
.y53{bottom:824.293333pt;}
.yc6{bottom:827.013333pt;}
.y61{bottom:834.373333pt;}
.y8d{bottom:834.533333pt;}
.y144{bottom:835.173333pt;}
.yf1{bottom:835.813333pt;}
.y179{bottom:837.893333pt;}
.y10f{bottom:839.653333pt;}
.y1c{bottom:841.733333pt;}
.yc5{bottom:841.893333pt;}
.y44{bottom:844.133333pt;}
.y52{bottom:845.093333pt;}
.y3{bottom:846.533333pt;}
.y60{bottom:849.413333pt;}
.y143{bottom:850.053333pt;}
.y178{bottom:852.773333pt;}
.y10e{bottom:854.853333pt;}
.yc4{bottom:856.933333pt;}
.yf0{bottom:861.093333pt;}
.y5f{bottom:864.293333pt;}
.y142{bottom:864.933333pt;}
.y43{bottom:865.733333pt;}
.y177{bottom:867.813333pt;}
.y2{bottom:869.573333pt;}
.y10d{bottom:869.733333pt;}
.yc3{bottom:871.813333pt;}
.yef{bottom:876.133333pt;}
.y5e{bottom:879.173333pt;}
.y141{bottom:879.813333pt;}
.y176{bottom:882.693333pt;}
.y10c{bottom:884.613333pt;}
.y51{bottom:886.373333pt;}
.yc2{bottom:886.693333pt;}
.y42{bottom:887.333333pt;}
.yee{bottom:891.013333pt;}
.y5d{bottom:894.053333pt;}
.y140{bottom:894.853333pt;}
.y1a{bottom:897.413333pt;}
.y175{bottom:897.573333pt;}
.y10b{bottom:899.493333pt;}
.yed{bottom:905.893333pt;}
.y50{bottom:907.173333pt;}
.y41{bottom:908.773333pt;}
.y5c{bottom:908.933333pt;}
.y13f{bottom:909.733333pt;}
.yc1{bottom:912.293333pt;}
.y174{bottom:912.453333pt;}
.y10a{bottom:914.373333pt;}
.yec{bottom:920.933333pt;}
.y5b{bottom:923.813333pt;}
.y13e{bottom:924.613333pt;}
.yc0{bottom:927.333333pt;}
.y4f{bottom:927.813333pt;}
.y109{bottom:929.253333pt;}
.y40{bottom:930.373333pt;}
.y16{bottom:933.413333pt;}
.yeb{bottom:935.813333pt;}
.y5a{bottom:938.693333pt;}
.y13d{bottom:939.493333pt;}
.ybf{bottom:942.213333pt;}
.y108{bottom:944.133333pt;}
.y4e{bottom:948.453333pt;}
.y3f{bottom:951.973333pt;}
.y13c{bottom:954.373333pt;}
.ybe{bottom:957.093333pt;}
.y107{bottom:959.013333pt;}
.yea{bottom:961.093333pt;}
.y59{bottom:962.693333pt;}
.y4d{bottom:969.253333pt;}
.ybd{bottom:971.973333pt;}
.y3e{bottom:973.573333pt;}
.y106{bottom:973.893333pt;}
.y13{bottom:977.093333pt;}
.ye9{bottom:986.693333pt;}
.ybc{bottom:986.853333pt;}
.y3d{bottom:992.613333pt;}
.y4c{bottom:992.933333pt;}
.y105{bottom:997.893333pt;}
.ybb{bottom:1001.733333pt;}
.y11{bottom:1017.760000pt;}
.y10{bottom:1041.440000pt;}
.yf{bottom:1060.000000pt;}
.yd{bottom:1083.040000pt;}
.h26{height:12.160000pt;}
.h24{height:12.320000pt;}
.h18{height:13.760000pt;}
.h1c{height:13.920000pt;}
.h27{height:20.000000pt;}
.h8{height:22.720000pt;}
.h25{height:24.480000pt;}
.h28{height:24.672000pt;}
.hf{height:26.400000pt;}
.hd{height:26.560000pt;}
.he{height:26.592000pt;}
.h1a{height:27.680000pt;}
.h21{height:28.035000pt;}
.h11{height:30.720000pt;}
.h10{height:30.752000pt;}
.h20{height:33.375000pt;}
.hb{height:34.560000pt;}
.h29{height:36.800000pt;}
.h1b{height:41.312000pt;}
.h19{height:41.440000pt;}
.hc{height:42.400000pt;}
.h1f{height:43.054688pt;}
.ha{height:44.722500pt;}
.h9{height:46.000000pt;}
.h3{height:50.062500pt;}
.h2{height:50.578125pt;}
.h15{height:58.563750pt;}
.h17{height:66.750000pt;}
.h7{height:69.000000pt;}
.h5{height:76.663438pt;}
.h13{height:78.097500pt;}
.h14{height:81.046875pt;}
.h16{height:88.777500pt;}
.h4{height:98.912000pt;}
.h12{height:104.352000pt;}
.h6{height:106.240000pt;}
.h1e{height:170.746667pt;}
.h1d{height:181.946667pt;}
.h22{height:793.760000pt;}
.h23{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:56.512000pt;}
.w8{width:65.920000pt;}
.w12{width:66.112000pt;}
.w14{width:75.360000pt;}
.w17{width:122.240000pt;}
.w16{width:122.432000pt;}
.w9{width:141.626667pt;}
.w18{width:143.066667pt;}
.w5{width:193.146667pt;}
.w6{width:197.146667pt;}
.w13{width:291.546667pt;}
.wc{width:294.466667pt;}
.wb{width:307.386667pt;}
.wa{width:393.666667pt;}
.w7{width:433.346667pt;}
.wd{width:601.853333pt;}
.w4{width:608.733333pt;}
.w3{width:608.893333pt;}
.we{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w11{width:1122.559983pt;}
.wf{width:1122.560000pt;}
.w10{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xc{left:6.560000pt;}
.x6{left:9.600000pt;}
.x9{left:39.834667pt;}
.x1d{left:75.519983pt;}
.x5{left:90.912000pt;}
.x3{left:94.431988pt;}
.x4{left:96.031988pt;}
.xb{left:97.312000pt;}
.x19{left:99.711988pt;}
.x8{left:102.912000pt;}
.xe{left:110.751988pt;}
.xf{left:120.031988pt;}
.x1e{left:141.626667pt;}
.x13{left:144.026655pt;}
.x10{left:152.666655pt;}
.x11{left:161.946667pt;}
.x1c{left:240.986650pt;}
.xa{left:261.506655pt;}
.x14{left:287.234667pt;}
.x1{left:292.546655pt;}
.xd{left:295.266667pt;}
.x12{left:303.586667pt;}
.x16{left:305.954667pt;}
.x15{left:403.426667pt;}
.x1f{left:433.186667pt;}
.x7{left:477.661333pt;}
.x20{left:508.546667pt;}
.x1b{left:558.973322pt;}
.x21{left:565.053333pt;}
.x1a{left:566.973322pt;}
.x22{left:640.413333pt;}
.x17{left:669.573310pt;}
.x18{left:674.053322pt;}
.x2{left:699.333322pt;}
.x23{left:762.853333pt;}
.x24{left:885.093333pt;}
}




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