
    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_00e4c1a900fac278c141dab4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_08f9c43ae7d38bf708f8deb4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_1dc858425123c387afbd9962.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_639d53faac977c331a32be7c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_7ea8600e452e13f0faf70cda.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_c610809be45bf7fff71f07cf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dc0df9c512c633343d024665.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cd789ae10549ba86b5342041.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dbd1391b4f787936d89175a2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_892772bda4d91536bc4da9e5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e30574bbc39697a394b9e170.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.127200px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.lsc{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls10{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.900000px;}
.lsb{letter-spacing:9.540000px;}
.ls14{letter-spacing:17.226720px;}
.ls12{letter-spacing:46.890720px;}
.lse{letter-spacing:64.026720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-5.371440px;}
._4{margin-left:-3.907680px;}
._3{margin-left:-2.280000px;}
._0{margin-left:-1.026000px;}
._1{width:1.056000px;}
._5{width:2.712000px;}
._11{width:3.712320px;}
._2{width:4.728000px;}
._a{width:6.274800px;}
._10{width:7.609200px;}
._8{width:9.262800px;}
._9{width:10.436880px;}
._12{width:11.940960px;}
._d{width:13.595280px;}
._c{width:16.434000px;}
._15{width:17.513040px;}
._17{width:19.273440px;}
._f{width:20.557440px;}
._e{width:21.752640px;}
._14{width:22.768560px;}
._13{width:23.904000px;}
._b{width:28.565280px;}
._16{width:31.035120px;}
._7{width:33.614880px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(32,32,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y4c{bottom:3.960000px;}
.y1a{bottom:5.040000px;}
.y155{bottom:5.400000px;}
.y15e{bottom:5.580000px;}
.y152{bottom:5.760000px;}
.y140{bottom:6.840000px;}
.y146{bottom:7.200000px;}
.y143{bottom:7.230000px;}
.ye{bottom:9.540000px;}
.y4a{bottom:10.620000px;}
.ye8{bottom:11.880000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y13d{bottom:14.220000px;}
.y148{bottom:14.940000px;}
.y141{bottom:15.474000px;}
.y13a{bottom:15.840000px;}
.y144{bottom:15.870000px;}
.y13b{bottom:16.020000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.ye7{bottom:20.520000px;}
.y46{bottom:20.565000px;}
.y4b{bottom:22.140000px;}
.y13f{bottom:24.114000px;}
.y145{bottom:24.480000px;}
.y142{bottom:24.510000px;}
.y49{bottom:25.200000px;}
.y138{bottom:28.980000px;}
.y19{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y45{bottom:37.845000px;}
.y18{bottom:45.900000px;}
.y137{bottom:46.260000px;}
.ya{bottom:46.620000px;}
.y5{bottom:48.420000px;}
.y44{bottom:54.945000px;}
.y17{bottom:62.505000px;}
.y1{bottom:69.516000px;}
.y43{bottom:72.225000px;}
.y9{bottom:73.440000px;}
.y16{bottom:78.885000px;}
.y42{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.725000px;}
.y14{bottom:105.165000px;}
.y41{bottom:106.785000px;}
.y7{bottom:111.450000px;}
.y104{bottom:115.236000px;}
.y13{bottom:123.525000px;}
.y40{bottom:124.065000px;}
.y92{bottom:126.036000px;}
.ycc{bottom:127.116000px;}
.y103{bottom:133.236000px;}
.y55{bottom:136.656000px;}
.y13e{bottom:137.376000px;}
.y3f{bottom:141.345000px;}
.ycb{bottom:141.876000px;}
.y12{bottom:142.425000px;}
.y91{bottom:143.316000px;}
.y17c{bottom:143.856000px;}
.y54{bottom:153.930000px;}
.y102{bottom:154.470000px;}
.y17b{bottom:155.910000px;}
.y3e{bottom:158.445000px;}
.yca{bottom:159.870000px;}
.y90{bottom:160.590000px;}
.y11{bottom:168.165000px;}
.y53{bottom:171.210000px;}
.y101{bottom:171.750000px;}
.y17a{bottom:173.190000px;}
.y3d{bottom:175.725000px;}
.y8f{bottom:177.870000px;}
.y13c{bottom:179.850000px;}
.y52{bottom:188.490000px;}
.y100{bottom:189.030000px;}
.y179{bottom:190.290000px;}
.y10{bottom:192.645000px;}
.y3c{bottom:193.005000px;}
.y8e{bottom:194.970000px;}
.yc9{bottom:195.870000px;}
.y2c{bottom:199.485000px;}
.y51{bottom:205.590000px;}
.yff{bottom:206.310000px;}
.y178{bottom:207.570000px;}
.y3b{bottom:210.285000px;}
.y8d{bottom:212.250000px;}
.yc8{bottom:213.870000px;}
.y2b{bottom:214.785000px;}
.y136{bottom:219.810000px;}
.y50{bottom:222.870000px;}
.yfe{bottom:223.590000px;}
.y177{bottom:224.850000px;}
.y3a{bottom:227.565000px;}
.y8c{bottom:229.530000px;}
.yc7{bottom:231.870000px;}
.y2a{bottom:232.245000px;}
.yfd{bottom:238.350000px;}
.y4f{bottom:240.150000px;}
.y176{bottom:242.130000px;}
.y39{bottom:244.845000px;}
.y8b{bottom:246.810000px;}
.y29{bottom:249.525000px;}
.yc6{bottom:249.870000px;}
.yfc{bottom:256.350000px;}
.y4e{bottom:257.430000px;}
.y175{bottom:259.410000px;}
.y38{bottom:261.945000px;}
.y139{bottom:263.190000px;}
.y8a{bottom:264.090000px;}
.y28{bottom:266.805000px;}
.yc5{bottom:267.870000px;}
.yfb{bottom:274.350000px;}
.y4d{bottom:274.710000px;}
.y174{bottom:276.690000px;}
.y37{bottom:279.255000px;}
.y89{bottom:281.370000px;}
.y27{bottom:284.655000px;}
.yc4{bottom:285.870000px;}
.y48{bottom:288.750000px;}
.yfa{bottom:292.350000px;}
.y173{bottom:293.790000px;}
.y36{bottom:296.535000px;}
.y88{bottom:298.470000px;}
.y26{bottom:301.935000px;}
.yc3{bottom:307.110000px;}
.y135{bottom:309.810000px;}
.yf9{bottom:310.350000px;}
.y172{bottom:311.070000px;}
.y35{bottom:313.815000px;}
.y87{bottom:315.750000px;}
.y25{bottom:319.395000px;}
.yc2{bottom:324.390000px;}
.y1d{bottom:325.290000px;}
.y134{bottom:327.090000px;}
.yf8{bottom:328.350000px;}
.y34{bottom:331.095000px;}
.y86{bottom:333.030000px;}
.y171{bottom:333.570000px;}
.y24{bottom:336.855000px;}
.yc1{bottom:341.715000px;}
.y133{bottom:344.415000px;}
.y170{bottom:345.675000px;}
.y33{bottom:348.195000px;}
.yf7{bottom:349.635000px;}
.y85{bottom:350.355000px;}
.y23{bottom:354.135000px;}
.yc0{bottom:358.995000px;}
.y132{bottom:361.515000px;}
.y16f{bottom:362.955000px;}
.y32{bottom:365.475000px;}
.yf6{bottom:366.915000px;}
.y84{bottom:367.635000px;}
.y22{bottom:371.595000px;}
.ybf{bottom:376.275000px;}
.y131{bottom:378.795000px;}
.y16e{bottom:380.235000px;}
.y31{bottom:382.755000px;}
.yf5{bottom:384.015000px;}
.y83{bottom:384.915000px;}
.y21{bottom:389.055000px;}
.ybe{bottom:393.555000px;}
.y130{bottom:396.075000px;}
.y16d{bottom:397.335000px;}
.y30{bottom:400.035000px;}
.yf4{bottom:401.295000px;}
.y82{bottom:402.015000px;}
.y20{bottom:409.215000px;}
.ybd{bottom:410.655000px;}
.y12f{bottom:410.835000px;}
.y2f{bottom:417.315000px;}
.yf3{bottom:418.575000px;}
.y81{bottom:419.295000px;}
.y16c{bottom:419.835000px;}
.ybc{bottom:427.935000px;}
.y12e{bottom:428.835000px;}
.y16b{bottom:431.895000px;}
.y2e{bottom:434.595000px;}
.yf2{bottom:435.855000px;}
.y80{bottom:436.575000px;}
.y1f{bottom:436.755000px;}
.ybb{bottom:445.215000px;}
.y12d{bottom:446.835000px;}
.y16a{bottom:449.175000px;}
.y2d{bottom:451.695000px;}
.yf1{bottom:453.135000px;}
.y7f{bottom:453.855000px;}
.y1e{bottom:454.395000px;}
.yba{bottom:462.495000px;}
.y12c{bottom:464.835000px;}
.y169{bottom:466.455000px;}
.yf0{bottom:470.235000px;}
.y7e{bottom:471.135000px;}
.yb9{bottom:479.775000px;}
.y12b{bottom:482.835000px;}
.y168{bottom:483.735000px;}
.yef{bottom:487.515000px;}
.y7d{bottom:488.235000px;}
.yb8{bottom:496.875000px;}
.y12a{bottom:500.835000px;}
.yee{bottom:502.275000px;}
.y7c{bottom:505.515000px;}
.yb7{bottom:514.155000px;}
.y167{bottom:518.115000px;}
.yed{bottom:520.275000px;}
.y129{bottom:522.075000px;}
.y7b{bottom:522.795000px;}
.yb6{bottom:531.435000px;}
.y166{bottom:535.395000px;}
.yec{bottom:538.275000px;}
.y128{bottom:539.355000px;}
.y7a{bottom:540.075000px;}
.yb5{bottom:548.715000px;}
.y165{bottom:552.675000px;}
.yeb{bottom:556.275000px;}
.y127{bottom:556.635000px;}
.y79{bottom:557.355000px;}
.yb4{bottom:565.995000px;}
.y164{bottom:569.955000px;}
.y126{bottom:573.735000px;}
.y78{bottom:574.635000px;}
.yb3{bottom:583.275000px;}
.y163{bottom:587.055000px;}
.y125{bottom:588.495000px;}
.yea{bottom:591.555000px;}
.y77{bottom:591.735000px;}
.yb2{bottom:600.375000px;}
.y162{bottom:604.365000px;}
.y124{bottom:606.525000px;}
.y76{bottom:609.045000px;}
.ye9{bottom:609.585000px;}
.yb1{bottom:617.685000px;}
.y161{bottom:619.125000px;}
.y123{bottom:624.525000px;}
.y75{bottom:626.325000px;}
.yb0{bottom:634.965000px;}
.y160{bottom:642.165000px;}
.y122{bottom:642.525000px;}
.y74{bottom:643.605000px;}
.ye6{bottom:644.865000px;}
.yaf{bottom:652.245000px;}
.y73{bottom:660.885000px;}
.y121{bottom:663.765000px;}
.y15f{bottom:664.845000px;}
.yae{bottom:669.525000px;}
.y72{bottom:678.165000px;}
.ye5{bottom:680.145000px;}
.y120{bottom:681.045000px;}
.y15c{bottom:682.845000px;}
.yad{bottom:686.805000px;}
.y17f{bottom:695.265000px;}
.ye4{bottom:698.145000px;}
.y11f{bottom:698.325000px;}
.y71{bottom:700.485000px;}
.yac{bottom:703.905000px;}
.y15d{bottom:705.885000px;}
.y70{bottom:712.545000px;}
.y11e{bottom:715.605000px;}
.ye3{bottom:716.145000px;}
.yab{bottom:721.185000px;}
.y6f{bottom:729.825000px;}
.y11d{bottom:730.365000px;}
.y15b{bottom:731.985000px;}
.ye2{bottom:734.145000px;}
.yaa{bottom:738.465000px;}
.y6e{bottom:747.105000px;}
.y11c{bottom:748.365000px;}
.y15a{bottom:749.265000px;}
.ye1{bottom:752.145000px;}
.ya9{bottom:755.745000px;}
.y6d{bottom:764.385000px;}
.y11b{bottom:766.365000px;}
.y159{bottom:766.545000px;}
.ya8{bottom:773.025000px;}
.ye0{bottom:773.385000px;}
.y6c{bottom:781.665000px;}
.y158{bottom:783.825000px;}
.y11a{bottom:784.365000px;}
.ya7{bottom:790.125000px;}
.ydf{bottom:790.665000px;}
.y1b{bottom:791.025000px;}
.y6b{bottom:798.765000px;}
.y157{bottom:801.105000px;}
.y119{bottom:802.365000px;}
.ya6{bottom:807.405000px;}
.yde{bottom:807.765000px;}
.y156{bottom:815.865000px;}
.y6a{bottom:816.045000px;}
.yf{bottom:820.545000px;}
.y118{bottom:823.605000px;}
.ya5{bottom:824.685000px;}
.ydd{bottom:825.045000px;}
.y69{bottom:833.325000px;}
.y154{bottom:838.905000px;}
.y117{bottom:840.885000px;}
.ya4{bottom:841.965000px;}
.ydc{bottom:842.325000px;}
.y68{bottom:850.605000px;}
.ydb{bottom:857.085000px;}
.y116{bottom:857.985000px;}
.ya3{bottom:859.245000px;}
.y153{bottom:861.405000px;}
.y67{bottom:867.885000px;}
.yda{bottom:875.130000px;}
.y115{bottom:875.310000px;}
.ya2{bottom:876.570000px;}
.y150{bottom:879.450000px;}
.y66{bottom:885.030000px;}
.y114{bottom:890.070000px;}
.yd9{bottom:893.130000px;}
.ya1{bottom:893.670000px;}
.y17e{bottom:902.310000px;}
.y151{bottom:902.490000px;}
.y65{bottom:907.530000px;}
.y113{bottom:908.070000px;}
.ya0{bottom:910.950000px;}
.yd8{bottom:911.130000px;}
.y64{bottom:919.590000px;}
.y112{bottom:926.070000px;}
.y9f{bottom:928.230000px;}
.y14f{bottom:928.770000px;}
.yd7{bottom:932.370000px;}
.y63{bottom:936.870000px;}
.y111{bottom:944.070000px;}
.y9e{bottom:945.510000px;}
.y14e{bottom:946.050000px;}
.yd6{bottom:949.650000px;}
.y62{bottom:954.150000px;}
.y110{bottom:962.070000px;}
.y9d{bottom:962.790000px;}
.y14d{bottom:963.330000px;}
.yd5{bottom:966.930000px;}
.y61{bottom:971.430000px;}
.y10f{bottom:980.070000px;}
.y14c{bottom:980.430000px;}
.y9c{bottom:981.150000px;}
.yd4{bottom:984.030000px;}
.y60{bottom:988.530000px;}
.y14b{bottom:997.710000px;}
.y10e{bottom:998.070000px;}
.y9b{bottom:999.330000px;}
.yd3{bottom:1001.310000px;}
.y17d{bottom:1005.810000px;}
.y5f{bottom:1011.030000px;}
.y14a{bottom:1014.990000px;}
.yd2{bottom:1016.070000px;}
.y9a{bottom:1017.690000px;}
.y10d{bottom:1019.310000px;}
.y5e{bottom:1023.090000px;}
.yd{bottom:1028.310000px;}
.y149{bottom:1032.270000px;}
.yd1{bottom:1034.070000px;}
.y99{bottom:1036.050000px;}
.y10c{bottom:1036.590000px;}
.y5d{bottom:1040.370000px;}
.y147{bottom:1047.030000px;}
.yd0{bottom:1052.070000px;}
.y6{bottom:1053.510000px;}
.y10b{bottom:1053.870000px;}
.y98{bottom:1054.410000px;}
.y5c{bottom:1057.650000px;}
.ycf{bottom:1070.070000px;}
.y10a{bottom:1071.150000px;}
.y97{bottom:1072.770000px;}
.y5b{bottom:1074.930000px;}
.yce{bottom:1088.070000px;}
.y109{bottom:1088.430000px;}
.y96{bottom:1089.870000px;}
.y5a{bottom:1092.030000px;}
.y108{bottom:1103.190000px;}
.y95{bottom:1107.150000px;}
.y59{bottom:1109.310000px;}
.y107{bottom:1121.190000px;}
.y94{bottom:1125.510000px;}
.ycd{bottom:1126.590000px;}
.y58{bottom:1131.810000px;}
.y106{bottom:1139.220000px;}
.y93{bottom:1142.820000px;}
.y57{bottom:1143.900000px;}
.y105{bottom:1157.220000px;}
.y56{bottom:1161.180000px;}
.h27{height:17.100000px;}
.h28{height:17.136000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.h31{height:21.780000px;}
.h32{height:22.140000px;}
.h30{height:22.320000px;}
.hc{height:24.840000px;}
.h21{height:27.147656px;}
.h14{height:29.520000px;}
.h13{height:32.103633px;}
.h2{height:32.940000px;}
.h25{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.540000px;}
.h2b{height:39.240000px;}
.h2e{height:40.680000px;}
.h1d{height:41.726953px;}
.h2c{height:41.760000px;}
.h1c{height:42.164648px;}
.h1b{height:42.186445px;}
.h1a{height:42.281367px;}
.h2d{height:42.516000px;}
.h2a{height:42.660000px;}
.h22{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h33{height:45.180000px;}
.h2f{height:45.360000px;}
.h17{height:47.980898px;}
.h20{height:48.027656px;}
.h26{height:48.312422px;}
.h19{height:49.742227px;}
.h1f{height:52.260820px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h29{height:86.040000px;}
.h7{height:121.536000px;}
.hd{height:207.750000px;}
.h16{height:465.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w27{width:64.476000px;}
.w26{width:64.620000px;}
.w2f{width:72.576000px;}
.w3{width:74.880000px;}
.w25{width:75.276000px;}
.w32{width:76.500000px;}
.w24{width:86.040000px;}
.w29{width:86.256000px;}
.w2e{width:87.120000px;}
.w30{width:87.300000px;}
.w33{width:87.480000px;}
.w31{width:87.516000px;}
.w28{width:97.020000px;}
.w1e{width:97.596000px;}
.w1f{width:100.440000px;}
.w22{width:129.816000px;}
.w21{width:140.616000px;}
.w1c{width:148.536000px;}
.w2a{width:155.010000px;}
.w5{width:155.370000px;}
.w2b{width:160.770000px;}
.w2c{width:164.730000px;}
.w2d{width:175.710000px;}
.w23{width:183.990000px;}
.w1d{width:198.750000px;}
.w20{width:203.250000px;}
.w17{width:209.370000px;}
.w1a{width:212.430000px;}
.w8{width:220.935000px;}
.w14{width:229.170000px;}
.w18{width:229.350000px;}
.w13{width:242.670000px;}
.we{width:247.215000px;}
.w11{width:248.115000px;}
.wc{width:248.250000px;}
.wb{width:248.430000px;}
.wa{width:248.475000px;}
.wf{width:248.790000px;}
.w10{width:248.970000px;}
.w15{width:249.195000px;}
.w12{width:273.315000px;}
.w19{width:284.295000px;}
.w1b{width:285.015000px;}
.w16{width:306.435000px;}
.wd{width:497.415000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x2d{left:9.900000px;}
.xd{left:12.420000px;}
.x51{left:14.580000px;}
.x2c{left:16.776000px;}
.x57{left:18.756000px;}
.x5f{left:19.800000px;}
.x4b{left:21.816000px;}
.x6e{left:23.220000px;}
.x66{left:24.525000px;}
.x2f{left:26.136000px;}
.x64{left:27.900000px;}
.x63{left:29.385000px;}
.x2e{left:30.816000px;}
.x59{left:33.300000px;}
.x4c{left:35.496000px;}
.x55{left:37.080000px;}
.x56{left:38.916000px;}
.x54{left:41.220000px;}
.x33{left:42.516000px;}
.x65{left:44.316000px;}
.x40{left:45.396000px;}
.x67{left:46.656000px;}
.x46{left:48.996000px;}
.x39{left:50.076000px;}
.x48{left:52.236000px;}
.x4f{left:53.490000px;}
.x30{left:54.576000px;}
.x58{left:57.096000px;}
.x23{left:60.876000px;}
.x3a{left:67.356000px;}
.x34{left:68.616000px;}
.x42{left:70.380000px;}
.x1{left:72.360000px;}
.x10{left:73.656000px;}
.xf{left:79.410000px;}
.x4{left:80.999987px;}
.x11{left:82.110000px;}
.x31{left:83.550000px;}
.x3d{left:84.810000px;}
.x2b{left:86.610000px;}
.x12{left:88.590000px;}
.x18{left:90.000000px;}
.x20{left:91.470000px;}
.x1e{left:93.450000px;}
.x3c{left:95.070000px;}
.x5{left:98.130000px;}
.x22{left:100.830000px;}
.x28{left:102.810000px;}
.x27{left:104.970000px;}
.x29{left:106.590000px;}
.x15{left:108.035987px;}
.x1d{left:110.925000px;}
.x1f{left:112.860000px;}
.x1b{left:114.705000px;}
.x1c{left:116.640000px;}
.x1a{left:120.420000px;}
.x36{left:121.710000px;}
.x49{left:125.310000px;}
.x43{left:129.090000px;}
.x44{left:130.710000px;}
.x16{left:135.035987px;}
.x45{left:136.110000px;}
.xe{left:172.110000px;}
.x2a{left:188.489987px;}
.x5a{left:195.509987px;}
.x21{left:208.830000px;}
.x13{left:215.175000px;}
.x4a{left:220.349987px;}
.x4d{left:222.510000px;}
.x6{left:228.270000px;}
.x24{left:229.710000px;}
.x3b{left:266.249987px;}
.x5b{left:277.230000px;}
.x9{left:285.015000px;}
.x14{left:293.835000px;}
.x6b{left:302.475000px;}
.x3f{left:310.394987px;}
.x26{left:321.375000px;}
.x17{left:322.455000px;}
.x7{left:342.975000px;}
.x37{left:347.295000px;}
.x60{left:353.235000px;}
.x32{left:355.394987px;}
.x47{left:358.275000px;}
.x25{left:359.354987px;}
.x35{left:362.054987px;}
.x8{left:364.215000px;}
.xb{left:366.555000px;}
.xc{left:373.575000px;}
.x3e{left:375.554987px;}
.x41{left:380.415000px;}
.x68{left:390.675000px;}
.x5c{left:418.575000px;}
.x4e{left:421.995000px;}
.xa{left:452.280000px;}
.x6c{left:478.905000px;}
.x61{left:483.765000px;}
.x52{left:520.305000px;}
.x5d{left:549.105000px;}
.x69{left:556.305000px;}
.x19{left:571.605000px;}
.x38{left:590.685000px;}
.x50{left:621.465000px;}
.x6d{left:644.505000px;}
.x62{left:646.845000px;}
.x53{left:719.790000px;}
.x6a{left:732.750000px;}
.x5e{left:733.830000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.113067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.lsc{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls10{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.800000pt;}
.lsb{letter-spacing:8.480000pt;}
.ls14{letter-spacing:15.312640pt;}
.ls12{letter-spacing:41.680640pt;}
.lse{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-4.774613pt;}
._4{margin-left:-3.473493pt;}
._3{margin-left:-2.026667pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.938667pt;}
._5{width:2.410667pt;}
._11{width:3.299840pt;}
._2{width:4.202667pt;}
._a{width:5.577600pt;}
._10{width:6.763733pt;}
._8{width:8.233600pt;}
._9{width:9.277227pt;}
._12{width:10.614187pt;}
._d{width:12.084693pt;}
._c{width:14.608000pt;}
._15{width:15.567147pt;}
._17{width:17.131947pt;}
._f{width:18.273280pt;}
._e{width:19.335680pt;}
._14{width:20.238720pt;}
._13{width:21.248000pt;}
._b{width:25.391360pt;}
._16{width:27.586773pt;}
._7{width:29.879893pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y4c{bottom:3.520000pt;}
.y1a{bottom:4.480000pt;}
.y155{bottom:4.800000pt;}
.y15e{bottom:4.960000pt;}
.y152{bottom:5.120000pt;}
.y140{bottom:6.080000pt;}
.y146{bottom:6.400000pt;}
.y143{bottom:6.426667pt;}
.ye{bottom:8.480000pt;}
.y4a{bottom:9.440000pt;}
.ye8{bottom:10.560000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y13d{bottom:12.640000pt;}
.y148{bottom:13.280000pt;}
.y141{bottom:13.754667pt;}
.y13a{bottom:14.080000pt;}
.y144{bottom:14.106667pt;}
.y13b{bottom:14.240000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.ye7{bottom:18.240000pt;}
.y46{bottom:18.280000pt;}
.y4b{bottom:19.680000pt;}
.y13f{bottom:21.434667pt;}
.y145{bottom:21.760000pt;}
.y142{bottom:21.786667pt;}
.y49{bottom:22.400000pt;}
.y138{bottom:25.760000pt;}
.y19{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y45{bottom:33.640000pt;}
.y18{bottom:40.800000pt;}
.y137{bottom:41.120000pt;}
.ya{bottom:41.440000pt;}
.y5{bottom:43.040000pt;}
.y44{bottom:48.840000pt;}
.y17{bottom:55.560000pt;}
.y1{bottom:61.792000pt;}
.y43{bottom:64.200000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:70.120000pt;}
.y42{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.200000pt;}
.y14{bottom:93.480000pt;}
.y41{bottom:94.920000pt;}
.y7{bottom:99.066667pt;}
.y104{bottom:102.432000pt;}
.y13{bottom:109.800000pt;}
.y40{bottom:110.280000pt;}
.y92{bottom:112.032000pt;}
.ycc{bottom:112.992000pt;}
.y103{bottom:118.432000pt;}
.y55{bottom:121.472000pt;}
.y13e{bottom:122.112000pt;}
.y3f{bottom:125.640000pt;}
.ycb{bottom:126.112000pt;}
.y12{bottom:126.600000pt;}
.y91{bottom:127.392000pt;}
.y17c{bottom:127.872000pt;}
.y54{bottom:136.826667pt;}
.y102{bottom:137.306667pt;}
.y17b{bottom:138.586667pt;}
.y3e{bottom:140.840000pt;}
.yca{bottom:142.106667pt;}
.y90{bottom:142.746667pt;}
.y11{bottom:149.480000pt;}
.y53{bottom:152.186667pt;}
.y101{bottom:152.666667pt;}
.y17a{bottom:153.946667pt;}
.y3d{bottom:156.200000pt;}
.y8f{bottom:158.106667pt;}
.y13c{bottom:159.866667pt;}
.y52{bottom:167.546667pt;}
.y100{bottom:168.026667pt;}
.y179{bottom:169.146667pt;}
.y10{bottom:171.240000pt;}
.y3c{bottom:171.560000pt;}
.y8e{bottom:173.306667pt;}
.yc9{bottom:174.106667pt;}
.y2c{bottom:177.320000pt;}
.y51{bottom:182.746667pt;}
.yff{bottom:183.386667pt;}
.y178{bottom:184.506667pt;}
.y3b{bottom:186.920000pt;}
.y8d{bottom:188.666667pt;}
.yc8{bottom:190.106667pt;}
.y2b{bottom:190.920000pt;}
.y136{bottom:195.386667pt;}
.y50{bottom:198.106667pt;}
.yfe{bottom:198.746667pt;}
.y177{bottom:199.866667pt;}
.y3a{bottom:202.280000pt;}
.y8c{bottom:204.026667pt;}
.yc7{bottom:206.106667pt;}
.y2a{bottom:206.440000pt;}
.yfd{bottom:211.866667pt;}
.y4f{bottom:213.466667pt;}
.y176{bottom:215.226667pt;}
.y39{bottom:217.640000pt;}
.y8b{bottom:219.386667pt;}
.y29{bottom:221.800000pt;}
.yc6{bottom:222.106667pt;}
.yfc{bottom:227.866667pt;}
.y4e{bottom:228.826667pt;}
.y175{bottom:230.586667pt;}
.y38{bottom:232.840000pt;}
.y139{bottom:233.946667pt;}
.y8a{bottom:234.746667pt;}
.y28{bottom:237.160000pt;}
.yc5{bottom:238.106667pt;}
.yfb{bottom:243.866667pt;}
.y4d{bottom:244.186667pt;}
.y174{bottom:245.946667pt;}
.y37{bottom:248.226667pt;}
.y89{bottom:250.106667pt;}
.y27{bottom:253.026667pt;}
.yc4{bottom:254.106667pt;}
.y48{bottom:256.666667pt;}
.yfa{bottom:259.866667pt;}
.y173{bottom:261.146667pt;}
.y36{bottom:263.586667pt;}
.y88{bottom:265.306667pt;}
.y26{bottom:268.386667pt;}
.yc3{bottom:272.986667pt;}
.y135{bottom:275.386667pt;}
.yf9{bottom:275.866667pt;}
.y172{bottom:276.506667pt;}
.y35{bottom:278.946667pt;}
.y87{bottom:280.666667pt;}
.y25{bottom:283.906667pt;}
.yc2{bottom:288.346667pt;}
.y1d{bottom:289.146667pt;}
.y134{bottom:290.746667pt;}
.yf8{bottom:291.866667pt;}
.y34{bottom:294.306667pt;}
.y86{bottom:296.026667pt;}
.y171{bottom:296.506667pt;}
.y24{bottom:299.426667pt;}
.yc1{bottom:303.746667pt;}
.y133{bottom:306.146667pt;}
.y170{bottom:307.266667pt;}
.y33{bottom:309.506667pt;}
.yf7{bottom:310.786667pt;}
.y85{bottom:311.426667pt;}
.y23{bottom:314.786667pt;}
.yc0{bottom:319.106667pt;}
.y132{bottom:321.346667pt;}
.y16f{bottom:322.626667pt;}
.y32{bottom:324.866667pt;}
.yf6{bottom:326.146667pt;}
.y84{bottom:326.786667pt;}
.y22{bottom:330.306667pt;}
.ybf{bottom:334.466667pt;}
.y131{bottom:336.706667pt;}
.y16e{bottom:337.986667pt;}
.y31{bottom:340.226667pt;}
.yf5{bottom:341.346667pt;}
.y83{bottom:342.146667pt;}
.y21{bottom:345.826667pt;}
.ybe{bottom:349.826667pt;}
.y130{bottom:352.066667pt;}
.y16d{bottom:353.186667pt;}
.y30{bottom:355.586667pt;}
.yf4{bottom:356.706667pt;}
.y82{bottom:357.346667pt;}
.y20{bottom:363.746667pt;}
.ybd{bottom:365.026667pt;}
.y12f{bottom:365.186667pt;}
.y2f{bottom:370.946667pt;}
.yf3{bottom:372.066667pt;}
.y81{bottom:372.706667pt;}
.y16c{bottom:373.186667pt;}
.ybc{bottom:380.386667pt;}
.y12e{bottom:381.186667pt;}
.y16b{bottom:383.906667pt;}
.y2e{bottom:386.306667pt;}
.yf2{bottom:387.426667pt;}
.y80{bottom:388.066667pt;}
.y1f{bottom:388.226667pt;}
.ybb{bottom:395.746667pt;}
.y12d{bottom:397.186667pt;}
.y16a{bottom:399.266667pt;}
.y2d{bottom:401.506667pt;}
.yf1{bottom:402.786667pt;}
.y7f{bottom:403.426667pt;}
.y1e{bottom:403.906667pt;}
.yba{bottom:411.106667pt;}
.y12c{bottom:413.186667pt;}
.y169{bottom:414.626667pt;}
.yf0{bottom:417.986667pt;}
.y7e{bottom:418.786667pt;}
.yb9{bottom:426.466667pt;}
.y12b{bottom:429.186667pt;}
.y168{bottom:429.986667pt;}
.yef{bottom:433.346667pt;}
.y7d{bottom:433.986667pt;}
.yb8{bottom:441.666667pt;}
.y12a{bottom:445.186667pt;}
.yee{bottom:446.466667pt;}
.y7c{bottom:449.346667pt;}
.yb7{bottom:457.026667pt;}
.y167{bottom:460.546667pt;}
.yed{bottom:462.466667pt;}
.y129{bottom:464.066667pt;}
.y7b{bottom:464.706667pt;}
.yb6{bottom:472.386667pt;}
.y166{bottom:475.906667pt;}
.yec{bottom:478.466667pt;}
.y128{bottom:479.426667pt;}
.y7a{bottom:480.066667pt;}
.yb5{bottom:487.746667pt;}
.y165{bottom:491.266667pt;}
.yeb{bottom:494.466667pt;}
.y127{bottom:494.786667pt;}
.y79{bottom:495.426667pt;}
.yb4{bottom:503.106667pt;}
.y164{bottom:506.626667pt;}
.y126{bottom:509.986667pt;}
.y78{bottom:510.786667pt;}
.yb3{bottom:518.466667pt;}
.y163{bottom:521.826667pt;}
.y125{bottom:523.106667pt;}
.yea{bottom:525.826667pt;}
.y77{bottom:525.986667pt;}
.yb2{bottom:533.666667pt;}
.y162{bottom:537.213333pt;}
.y124{bottom:539.133333pt;}
.y76{bottom:541.373333pt;}
.ye9{bottom:541.853333pt;}
.yb1{bottom:549.053333pt;}
.y161{bottom:550.333333pt;}
.y123{bottom:555.133333pt;}
.y75{bottom:556.733333pt;}
.yb0{bottom:564.413333pt;}
.y160{bottom:570.813333pt;}
.y122{bottom:571.133333pt;}
.y74{bottom:572.093333pt;}
.ye6{bottom:573.213333pt;}
.yaf{bottom:579.773333pt;}
.y73{bottom:587.453333pt;}
.y121{bottom:590.013333pt;}
.y15f{bottom:590.973333pt;}
.yae{bottom:595.133333pt;}
.y72{bottom:602.813333pt;}
.ye5{bottom:604.573333pt;}
.y120{bottom:605.373333pt;}
.y15c{bottom:606.973333pt;}
.yad{bottom:610.493333pt;}
.y17f{bottom:618.013333pt;}
.ye4{bottom:620.573333pt;}
.y11f{bottom:620.733333pt;}
.y71{bottom:622.653333pt;}
.yac{bottom:625.693333pt;}
.y15d{bottom:627.453333pt;}
.y70{bottom:633.373333pt;}
.y11e{bottom:636.093333pt;}
.ye3{bottom:636.573333pt;}
.yab{bottom:641.053333pt;}
.y6f{bottom:648.733333pt;}
.y11d{bottom:649.213333pt;}
.y15b{bottom:650.653333pt;}
.ye2{bottom:652.573333pt;}
.yaa{bottom:656.413333pt;}
.y6e{bottom:664.093333pt;}
.y11c{bottom:665.213333pt;}
.y15a{bottom:666.013333pt;}
.ye1{bottom:668.573333pt;}
.ya9{bottom:671.773333pt;}
.y6d{bottom:679.453333pt;}
.y11b{bottom:681.213333pt;}
.y159{bottom:681.373333pt;}
.ya8{bottom:687.133333pt;}
.ye0{bottom:687.453333pt;}
.y6c{bottom:694.813333pt;}
.y158{bottom:696.733333pt;}
.y11a{bottom:697.213333pt;}
.ya7{bottom:702.333333pt;}
.ydf{bottom:702.813333pt;}
.y1b{bottom:703.133333pt;}
.y6b{bottom:710.013333pt;}
.y157{bottom:712.093333pt;}
.y119{bottom:713.213333pt;}
.ya6{bottom:717.693333pt;}
.yde{bottom:718.013333pt;}
.y156{bottom:725.213333pt;}
.y6a{bottom:725.373333pt;}
.yf{bottom:729.373333pt;}
.y118{bottom:732.093333pt;}
.ya5{bottom:733.053333pt;}
.ydd{bottom:733.373333pt;}
.y69{bottom:740.733333pt;}
.y154{bottom:745.693333pt;}
.y117{bottom:747.453333pt;}
.ya4{bottom:748.413333pt;}
.ydc{bottom:748.733333pt;}
.y68{bottom:756.093333pt;}
.ydb{bottom:761.853333pt;}
.y116{bottom:762.653333pt;}
.ya3{bottom:763.773333pt;}
.y153{bottom:765.693333pt;}
.y67{bottom:771.453333pt;}
.yda{bottom:777.893333pt;}
.y115{bottom:778.053333pt;}
.ya2{bottom:779.173333pt;}
.y150{bottom:781.733333pt;}
.y66{bottom:786.693333pt;}
.y114{bottom:791.173333pt;}
.yd9{bottom:793.893333pt;}
.ya1{bottom:794.373333pt;}
.y17e{bottom:802.053333pt;}
.y151{bottom:802.213333pt;}
.y65{bottom:806.693333pt;}
.y113{bottom:807.173333pt;}
.ya0{bottom:809.733333pt;}
.yd8{bottom:809.893333pt;}
.y64{bottom:817.413333pt;}
.y112{bottom:823.173333pt;}
.y9f{bottom:825.093333pt;}
.y14f{bottom:825.573333pt;}
.yd7{bottom:828.773333pt;}
.y63{bottom:832.773333pt;}
.y111{bottom:839.173333pt;}
.y9e{bottom:840.453333pt;}
.y14e{bottom:840.933333pt;}
.yd6{bottom:844.133333pt;}
.y62{bottom:848.133333pt;}
.y110{bottom:855.173333pt;}
.y9d{bottom:855.813333pt;}
.y14d{bottom:856.293333pt;}
.yd5{bottom:859.493333pt;}
.y61{bottom:863.493333pt;}
.y10f{bottom:871.173333pt;}
.y14c{bottom:871.493333pt;}
.y9c{bottom:872.133333pt;}
.yd4{bottom:874.693333pt;}
.y60{bottom:878.693333pt;}
.y14b{bottom:886.853333pt;}
.y10e{bottom:887.173333pt;}
.y9b{bottom:888.293333pt;}
.yd3{bottom:890.053333pt;}
.y17d{bottom:894.053333pt;}
.y5f{bottom:898.693333pt;}
.y14a{bottom:902.213333pt;}
.yd2{bottom:903.173333pt;}
.y9a{bottom:904.613333pt;}
.y10d{bottom:906.053333pt;}
.y5e{bottom:909.413333pt;}
.yd{bottom:914.053333pt;}
.y149{bottom:917.573333pt;}
.yd1{bottom:919.173333pt;}
.y99{bottom:920.933333pt;}
.y10c{bottom:921.413333pt;}
.y5d{bottom:924.773333pt;}
.y147{bottom:930.693333pt;}
.yd0{bottom:935.173333pt;}
.y6{bottom:936.453333pt;}
.y10b{bottom:936.773333pt;}
.y98{bottom:937.253333pt;}
.y5c{bottom:940.133333pt;}
.ycf{bottom:951.173333pt;}
.y10a{bottom:952.133333pt;}
.y97{bottom:953.573333pt;}
.y5b{bottom:955.493333pt;}
.yce{bottom:967.173333pt;}
.y109{bottom:967.493333pt;}
.y96{bottom:968.773333pt;}
.y5a{bottom:970.693333pt;}
.y108{bottom:980.613333pt;}
.y95{bottom:984.133333pt;}
.y59{bottom:986.053333pt;}
.y107{bottom:996.613333pt;}
.y94{bottom:1000.453333pt;}
.ycd{bottom:1001.413333pt;}
.y58{bottom:1006.053333pt;}
.y106{bottom:1012.640000pt;}
.y93{bottom:1015.840000pt;}
.y57{bottom:1016.800000pt;}
.y105{bottom:1028.640000pt;}
.y56{bottom:1032.160000pt;}
.h27{height:15.200000pt;}
.h28{height:15.232000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.h31{height:19.360000pt;}
.h32{height:19.680000pt;}
.h30{height:19.840000pt;}
.hc{height:22.080000pt;}
.h21{height:24.131250pt;}
.h14{height:26.240000pt;}
.h13{height:28.536563pt;}
.h2{height:29.280000pt;}
.h25{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h2b{height:34.880000pt;}
.h2e{height:36.160000pt;}
.h1d{height:37.090625pt;}
.h2c{height:37.120000pt;}
.h1c{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h1a{height:37.583438pt;}
.h2d{height:37.792000pt;}
.h2a{height:37.920000pt;}
.h22{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h33{height:40.160000pt;}
.h2f{height:40.320000pt;}
.h17{height:42.649687pt;}
.h20{height:42.691250pt;}
.h26{height:42.944375pt;}
.h19{height:44.215312pt;}
.h1f{height:46.454062pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h29{height:76.480000pt;}
.h7{height:108.032000pt;}
.hd{height:184.666667pt;}
.h16{height:413.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w27{width:57.312000pt;}
.w26{width:57.440000pt;}
.w2f{width:64.512000pt;}
.w3{width:66.560000pt;}
.w25{width:66.912000pt;}
.w32{width:68.000000pt;}
.w24{width:76.480000pt;}
.w29{width:76.672000pt;}
.w2e{width:77.440000pt;}
.w30{width:77.600000pt;}
.w33{width:77.760000pt;}
.w31{width:77.792000pt;}
.w28{width:86.240000pt;}
.w1e{width:86.752000pt;}
.w1f{width:89.280000pt;}
.w22{width:115.392000pt;}
.w21{width:124.992000pt;}
.w1c{width:132.032000pt;}
.w2a{width:137.786667pt;}
.w5{width:138.106667pt;}
.w2b{width:142.906667pt;}
.w2c{width:146.426667pt;}
.w2d{width:156.186667pt;}
.w23{width:163.546667pt;}
.w1d{width:176.666667pt;}
.w20{width:180.666667pt;}
.w17{width:186.106667pt;}
.w1a{width:188.826667pt;}
.w8{width:196.386667pt;}
.w14{width:203.706667pt;}
.w18{width:203.866667pt;}
.w13{width:215.706667pt;}
.we{width:219.746667pt;}
.w11{width:220.546667pt;}
.wc{width:220.666667pt;}
.wb{width:220.826667pt;}
.wa{width:220.866667pt;}
.wf{width:221.146667pt;}
.w10{width:221.306667pt;}
.w15{width:221.506667pt;}
.w12{width:242.946667pt;}
.w19{width:252.706667pt;}
.w1b{width:253.346667pt;}
.w16{width:272.386667pt;}
.wd{width:442.146667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x2d{left:8.800000pt;}
.xd{left:11.040000pt;}
.x51{left:12.960000pt;}
.x2c{left:14.912000pt;}
.x57{left:16.672000pt;}
.x5f{left:17.600000pt;}
.x4b{left:19.392000pt;}
.x6e{left:20.640000pt;}
.x66{left:21.800000pt;}
.x2f{left:23.232000pt;}
.x64{left:24.800000pt;}
.x63{left:26.120000pt;}
.x2e{left:27.392000pt;}
.x59{left:29.600000pt;}
.x4c{left:31.552000pt;}
.x55{left:32.960000pt;}
.x56{left:34.592000pt;}
.x54{left:36.640000pt;}
.x33{left:37.792000pt;}
.x65{left:39.392000pt;}
.x40{left:40.352000pt;}
.x67{left:41.472000pt;}
.x46{left:43.552000pt;}
.x39{left:44.512000pt;}
.x48{left:46.432000pt;}
.x4f{left:47.546667pt;}
.x30{left:48.512000pt;}
.x58{left:50.752000pt;}
.x23{left:54.112000pt;}
.x3a{left:59.872000pt;}
.x34{left:60.992000pt;}
.x42{left:62.560000pt;}
.x1{left:64.320000pt;}
.x10{left:65.472000pt;}
.xf{left:70.586667pt;}
.x4{left:71.999988pt;}
.x11{left:72.986667pt;}
.x31{left:74.266667pt;}
.x3d{left:75.386667pt;}
.x2b{left:76.986667pt;}
.x12{left:78.746667pt;}
.x18{left:80.000000pt;}
.x20{left:81.306667pt;}
.x1e{left:83.066667pt;}
.x3c{left:84.506667pt;}
.x5{left:87.226667pt;}
.x22{left:89.626667pt;}
.x28{left:91.386667pt;}
.x27{left:93.306667pt;}
.x29{left:94.746667pt;}
.x15{left:96.031988pt;}
.x1d{left:98.600000pt;}
.x1f{left:100.320000pt;}
.x1b{left:101.960000pt;}
.x1c{left:103.680000pt;}
.x1a{left:107.040000pt;}
.x36{left:108.186667pt;}
.x49{left:111.386667pt;}
.x43{left:114.746667pt;}
.x44{left:116.186667pt;}
.x16{left:120.031988pt;}
.x45{left:120.986667pt;}
.xe{left:152.986667pt;}
.x2a{left:167.546655pt;}
.x5a{left:173.786655pt;}
.x21{left:185.626667pt;}
.x13{left:191.266667pt;}
.x4a{left:195.866655pt;}
.x4d{left:197.786667pt;}
.x6{left:202.906667pt;}
.x24{left:204.186667pt;}
.x3b{left:236.666655pt;}
.x5b{left:246.426667pt;}
.x9{left:253.346667pt;}
.x14{left:261.186667pt;}
.x6b{left:268.866667pt;}
.x3f{left:275.906655pt;}
.x26{left:285.666667pt;}
.x17{left:286.626667pt;}
.x7{left:304.866667pt;}
.x37{left:308.706667pt;}
.x60{left:313.986667pt;}
.x32{left:315.906655pt;}
.x47{left:318.466667pt;}
.x25{left:319.426655pt;}
.x35{left:321.826655pt;}
.x8{left:323.746667pt;}
.xb{left:325.826667pt;}
.xc{left:332.066667pt;}
.x3e{left:333.826655pt;}
.x41{left:338.146667pt;}
.x68{left:347.266667pt;}
.x5c{left:372.066667pt;}
.x4e{left:375.106667pt;}
.xa{left:402.026667pt;}
.x6c{left:425.693333pt;}
.x61{left:430.013333pt;}
.x52{left:462.493333pt;}
.x5d{left:488.093333pt;}
.x69{left:494.493333pt;}
.x19{left:508.093333pt;}
.x38{left:525.053333pt;}
.x50{left:552.413333pt;}
.x6d{left:572.893333pt;}
.x62{left:574.973333pt;}
.x53{left:639.813333pt;}
.x6a{left:651.333333pt;}
.x5e{left:652.293333pt;}
.x3{left:663.013333pt;}
}




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