
    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_65bde9d220542540b2736078.woff2')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_6d0f48947b74ecbdc8829376.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_54a0a5d2129f9dc7ebb063ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_27658b558dda37513eb72eca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')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_5071c93095aa2758b8f1b193.woff2')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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ce98844f4cdb262d52cc4601.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_677696b9e3d1cd3539328eee.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_74e71e4f1e47ede9f023adfd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4d4a37dabc326d09fb635c83.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;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_8f95faf20f885da1ef704baa.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e99c7cb16cb55ae28e17bf45.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_da1e5a7f3830cdf0a7165206.woff2')format("woff");}.fff{font-family:fff;line-height:0.939941;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_5b89514d51bf7c6919991e26.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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:ff14;src:url('chunks/assets/font_1796a61b4bf5eb50ed49bf69.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls16{letter-spacing:-2.520000px;}
.ls11{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.298200px;}
.lsa{letter-spacing:-0.127200px;}
.lsc{letter-spacing:-0.038160px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.087600px;}
.ls19{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lsf{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.173280px;}
.ls6{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls1b{letter-spacing:16.506720px;}
.ls1a{letter-spacing:46.026720px;}
.ls10{letter-spacing:55.386720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsc{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws5{word-spacing:-12.816720px;}
.wsd{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-8.266560px;}
._15{margin-left:-6.184800px;}
._3{margin-left:-4.593360px;}
._2{margin-left:-2.843040px;}
._0{margin-left:-1.032000px;}
._1{width:1.026000px;}
._9{width:2.437680px;}
._e{width:4.292640px;}
._d{width:5.617440px;}
._14{width:6.683040px;}
._7{width:7.932480px;}
._6{width:8.979840px;}
._13{width:10.643520px;}
._f{width:12.206880px;}
._10{width:13.674960px;}
._12{width:15.955920px;}
._11{width:17.928000px;}
._8{width:18.933840px;}
._a{width:20.019600px;}
._18{width:25.278480px;}
._19{width:26.584080px;}
._c{width:28.292880px;}
._b{width:29.391840px;}
._1b{width:30.726960px;}
._1a{width:31.961520px;}
._5{width:33.197040px;}
._4{width:34.232400px;}
._17{width:44.521200px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.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;}
.y42{bottom:3.240000px;}
.ybc{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y47{bottom:3.960000px;}
.ye{bottom:9.360000px;}
.y45{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y18{bottom:20.025000px;}
.y2{bottom:20.196000px;}
.yf4{bottom:20.340000px;}
.y41{bottom:20.520000px;}
.y46{bottom:22.140000px;}
.y44{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y40{bottom:37.800000px;}
.y17{bottom:40.365000px;}
.ya{bottom:46.620000px;}
.y1{bottom:53.820000px;}
.y3f{bottom:55.080000px;}
.y16{bottom:56.925000px;}
.y15{bottom:69.885000px;}
.y3e{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y14{bottom:88.245000px;}
.y3d{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y93{bottom:99.396000px;}
.y100{bottom:100.476000px;}
.y13{bottom:106.605000px;}
.y3c{bottom:106.740000px;}
.y56{bottom:107.316000px;}
.yc8{bottom:109.296000px;}
.y7{bottom:111.450000px;}
.y92{bottom:116.676000px;}
.yff{bottom:117.756000px;}
.y3b{bottom:124.020000px;}
.y55{bottom:124.596000px;}
.y12{bottom:125.505000px;}
.yc7{bottom:126.576000px;}
.y117{bottom:132.696000px;}
.y91{bottom:134.856000px;}
.yfe{bottom:135.036000px;}
.y3a{bottom:141.300000px;}
.y54{bottom:141.876000px;}
.yc6{bottom:143.676000px;}
.y116{bottom:149.976000px;}
.y11{bottom:151.245000px;}
.yfd{bottom:152.310000px;}
.y90{bottom:153.210000px;}
.y39{bottom:158.580000px;}
.y53{bottom:159.150000px;}
.yc5{bottom:160.950000px;}
.y115{bottom:167.250000px;}
.yfc{bottom:169.410000px;}
.y8f{bottom:170.490000px;}
.y38{bottom:175.680000px;}
.y10{bottom:175.725000px;}
.y52{bottom:176.430000px;}
.yc4{bottom:178.230000px;}
.yfb{bottom:184.170000px;}
.y114{bottom:184.530000px;}
.y29{bottom:184.680000px;}
.y8e{bottom:187.770000px;}
.y37{bottom:192.960000px;}
.y51{bottom:193.710000px;}
.yc3{bottom:195.510000px;}
.y28{bottom:199.980000px;}
.y113{bottom:201.810000px;}
.y8d{bottom:205.050000px;}
.y36{bottom:210.270000px;}
.y50{bottom:210.810000px;}
.yc2{bottom:212.790000px;}
.y27{bottom:218.010000px;}
.y112{bottom:218.910000px;}
.yfa{bottom:219.450000px;}
.y8c{bottom:223.230000px;}
.y35{bottom:227.550000px;}
.y4f{bottom:228.090000px;}
.yc1{bottom:230.070000px;}
.y26{bottom:235.470000px;}
.y111{bottom:236.190000px;}
.y8b{bottom:241.590000px;}
.y34{bottom:244.830000px;}
.y4e{bottom:245.370000px;}
.y25{bottom:252.930000px;}
.y110{bottom:253.470000px;}
.yf9{bottom:254.730000px;}
.y8a{bottom:259.950000px;}
.y33{bottom:262.110000px;}
.y4d{bottom:262.650000px;}
.yc0{bottom:262.830000px;}
.y24{bottom:270.210000px;}
.y10f{bottom:270.750000px;}
.y89{bottom:278.310000px;}
.y32{bottom:279.210000px;}
.y4c{bottom:279.930000px;}
.ybf{bottom:280.830000px;}
.y23{bottom:287.670000px;}
.y10e{bottom:288.030000px;}
.yf8{bottom:290.010000px;}
.y31{bottom:296.490000px;}
.y88{bottom:296.670000px;}
.y4b{bottom:297.030000px;}
.ybe{bottom:298.830000px;}
.y22{bottom:305.130000px;}
.y10d{bottom:305.310000px;}
.y30{bottom:313.770000px;}
.y4a{bottom:314.310000px;}
.ybd{bottom:316.830000px;}
.y21{bottom:322.410000px;}
.yf7{bottom:325.290000px;}
.y2f{bottom:331.050000px;}
.y49{bottom:331.590000px;}
.ybb{bottom:334.830000px;}
.y10c{bottom:339.735000px;}
.y20{bottom:339.870000px;}
.yf6{bottom:343.335000px;}
.y2e{bottom:348.330000px;}
.y87{bottom:348.375000px;}
.y48{bottom:349.635000px;}
.yba{bottom:352.875000px;}
.y10b{bottom:357.015000px;}
.y1f{bottom:357.150000px;}
.yf5{bottom:361.335000px;}
.y43{bottom:364.035000px;}
.y2d{bottom:365.430000px;}
.y86{bottom:365.655000px;}
.yb9{bottom:374.115000px;}
.y10a{bottom:374.295000px;}
.y1e{bottom:374.790000px;}
.yf3{bottom:379.335000px;}
.y2c{bottom:382.710000px;}
.y85{bottom:384.015000px;}
.yb8{bottom:391.215000px;}
.y109{bottom:391.575000px;}
.y2b{bottom:399.990000px;}
.y1b{bottom:400.575000px;}
.y1d{bottom:402.150000px;}
.y84{bottom:402.375000px;}
.yb7{bottom:405.975000px;}
.y108{bottom:408.675000px;}
.yf2{bottom:414.435000px;}
.y2a{bottom:417.270000px;}
.y1c{bottom:419.970000px;}
.y83{bottom:420.555000px;}
.yb6{bottom:423.975000px;}
.y107{bottom:425.955000px;}
.y82{bottom:437.835000px;}
.yb5{bottom:441.975000px;}
.y106{bottom:443.235000px;}
.yf1{bottom:452.955000px;}
.y81{bottom:455.115000px;}
.yb4{bottom:459.975000px;}
.y105{bottom:460.515000px;}
.yf0{bottom:470.235000px;}
.y80{bottom:473.475000px;}
.y104{bottom:477.795000px;}
.yb3{bottom:477.975000px;}
.yef{bottom:487.515000px;}
.y7f{bottom:491.835000px;}
.y103{bottom:495.075000px;}
.yb2{bottom:495.975000px;}
.yee{bottom:502.275000px;}
.y7e{bottom:510.015000px;}
.y102{bottom:512.175000px;}
.yb1{bottom:513.975000px;}
.yed{bottom:520.275000px;}
.y7d{bottom:528.375000px;}
.y101{bottom:529.455000px;}
.yb0{bottom:531.975000px;}
.yec{bottom:538.275000px;}
.y7c{bottom:546.735000px;}
.yaf{bottom:549.975000px;}
.yeb{bottom:556.275000px;}
.y7b{bottom:564.015000px;}
.yae{bottom:567.975000px;}
.yea{bottom:574.275000px;}
.y7a{bottom:581.295000px;}
.yad{bottom:585.975000px;}
.ye9{bottom:592.275000px;}
.y79{bottom:598.575000px;}
.yac{bottom:604.005000px;}
.ye8{bottom:613.545000px;}
.y78{bottom:615.705000px;}
.yab{bottom:622.005000px;}
.ye7{bottom:630.825000px;}
.y77{bottom:632.985000px;}
.yaa{bottom:640.005000px;}
.ye6{bottom:648.105000px;}
.y76{bottom:650.265000px;}
.ya9{bottom:658.005000px;}
.ye5{bottom:662.685000px;}
.y75{bottom:667.545000px;}
.ya8{bottom:676.005000px;}
.ye4{bottom:680.685000px;}
.y74{bottom:684.825000px;}
.ya7{bottom:694.005000px;}
.ye3{bottom:698.685000px;}
.y73{bottom:701.925000px;}
.ya6{bottom:712.005000px;}
.y72{bottom:719.205000px;}
.ye2{bottom:719.925000px;}
.ya5{bottom:733.245000px;}
.y71{bottom:736.485000px;}
.ye1{bottom:737.205000px;}
.ya4{bottom:750.525000px;}
.y70{bottom:753.765000px;}
.ye0{bottom:754.485000px;}
.ya3{bottom:767.805000px;}
.ydf{bottom:769.245000px;}
.y6f{bottom:771.045000px;}
.ya2{bottom:785.085000px;}
.yde{bottom:787.245000px;}
.y6e{bottom:788.325000px;}
.ya1{bottom:802.185000px;}
.ydd{bottom:805.245000px;}
.y6d{bottom:805.425000px;}
.ya0{bottom:819.465000px;}
.y6c{bottom:822.705000px;}
.ydc{bottom:823.245000px;}
.y19{bottom:831.885000px;}
.y9f{bottom:836.745000px;}
.y6b{bottom:839.985000px;}
.ydb{bottom:841.245000px;}
.y9e{bottom:854.025000px;}
.y6a{bottom:857.265000px;}
.yf{bottom:861.405000px;}
.yda{bottom:862.485000px;}
.y9d{bottom:871.350000px;}
.y69{bottom:874.590000px;}
.yd9{bottom:879.810000px;}
.y9c{bottom:888.630000px;}
.y68{bottom:891.870000px;}
.yd8{bottom:897.090000px;}
.y9b{bottom:905.730000px;}
.y67{bottom:908.970000px;}
.yd7{bottom:911.850000px;}
.y9a{bottom:923.010000px;}
.y66{bottom:926.250000px;}
.yd6{bottom:929.850000px;}
.y99{bottom:940.290000px;}
.y65{bottom:943.530000px;}
.yd5{bottom:947.850000px;}
.y98{bottom:957.570000px;}
.y64{bottom:960.810000px;}
.yd4{bottom:965.850000px;}
.y97{bottom:974.850000px;}
.y63{bottom:978.090000px;}
.yd3{bottom:983.850000px;}
.y96{bottom:992.130000px;}
.y62{bottom:995.370000px;}
.yd2{bottom:1001.850000px;}
.y95{bottom:1010.310000px;}
.y61{bottom:1012.470000px;}
.yd1{bottom:1019.850000px;}
.y94{bottom:1028.670000px;}
.y60{bottom:1029.750000px;}
.yd0{bottom:1037.850000px;}
.y5f{bottom:1047.030000px;}
.yd{bottom:1052.250000px;}
.ycf{bottom:1055.850000px;}
.y5e{bottom:1064.310000px;}
.yce{bottom:1073.850000px;}
.y6{bottom:1077.450000px;}
.y5d{bottom:1081.590000px;}
.ycd{bottom:1091.850000px;}
.y5c{bottom:1098.690000px;}
.ycc{bottom:1109.850000px;}
.y5b{bottom:1115.970000px;}
.ycb{bottom:1127.850000px;}
.y5a{bottom:1133.250000px;}
.yca{bottom:1145.880000px;}
.y59{bottom:1150.560000px;}
.yc9{bottom:1163.880000px;}
.y58{bottom:1167.840000px;}
.y57{bottom:1185.120000px;}
.h20{height:17.100000px;}
.h21{height:17.136000px;}
.h1f{height:17.280000px;}
.h22{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h13{height:29.520000px;}
.h2{height:32.976000px;}
.h24{height:34.380000px;}
.h23{height:34.560000px;}
.h8{height:36.180000px;}
.h1c{height:36.540000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:43.273477px;}
.h12{height:43.453125px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1d{height:48.088125px;}
.h25{height:49.255313px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:190.830000px;}
.h15{height:431.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:37.440000px;}
.w17{width:44.316000px;}
.w1e{width:47.160000px;}
.w33{width:57.780000px;}
.w12{width:59.796000px;}
.w19{width:60.480000px;}
.w11{width:64.080000px;}
.w32{width:70.740000px;}
.w3{width:73.080000px;}
.w13{width:73.260000px;}
.w18{width:75.600000px;}
.w20{width:75.780000px;}
.w14{width:77.580000px;}
.w1f{width:80.316000px;}
.w2c{width:80.460000px;}
.w23{width:83.736000px;}
.w27{width:85.860000px;}
.w1a{width:86.436000px;}
.w1b{width:91.260000px;}
.w21{width:91.836000px;}
.w22{width:97.020000px;}
.w2f{width:105.300000px;}
.w30{width:108.576000px;}
.w2e{width:109.296000px;}
.w28{width:123.156000px;}
.w31{width:126.216000px;}
.wf{width:139.176000px;}
.wc{width:144.900000px;}
.w2d{width:147.096000px;}
.w2a{width:150.150000px;}
.w5{width:151.950000px;}
.w29{width:156.090000px;}
.wd{width:157.350000px;}
.w1c{width:159.150000px;}
.w25{width:160.230000px;}
.w16{width:163.800000px;}
.w24{width:166.170000px;}
.w1d{width:174.090000px;}
.w15{width:202.755000px;}
.wb{width:207.930000px;}
.w2b{width:216.750000px;}
.wa{width:217.155000px;}
.w8{width:223.455000px;}
.w26{width:230.790000px;}
.we{width:273.495000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xb{left:38.736000px;}
.xe{left:41.616000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.xc{left:104.430000px;}
.x13{left:108.035987px;}
.x22{left:113.435987px;}
.x27{left:130.355987px;}
.x1a{left:133.055987px;}
.x3e{left:135.035987px;}
.x14{left:162.029987px;}
.x2f{left:166.170000px;}
.x38{left:188.129987px;}
.x34{left:205.590000px;}
.x2e{left:208.109987px;}
.x15{left:212.249987px;}
.x10{left:215.175000px;}
.x39{left:229.530000px;}
.x5{left:232.950000px;}
.x28{left:241.590000px;}
.x33{left:244.109987px;}
.xd{left:249.735000px;}
.x8{left:272.235000px;}
.xf{left:285.195000px;}
.x16{left:299.775000px;}
.x11{left:304.455000px;}
.x6{left:331.995000px;}
.x30{left:333.075000px;}
.x3a{left:339.735000px;}
.x7{left:351.255000px;}
.x1b{left:356.115000px;}
.x35{left:362.415000px;}
.xa{left:365.475000px;}
.x29{left:416.415000px;}
.x9{left:439.500000px;}
.x21{left:446.474987px;}
.x23{left:450.075000px;}
.x2a{left:464.295000px;}
.x31{left:494.025000px;}
.x1c{left:496.005000px;}
.x18{left:508.425000px;}
.x36{left:513.465000px;}
.x1d{left:534.345000px;}
.x2b{left:545.325000px;}
.x3b{left:555.225000px;}
.x24{left:571.605000px;}
.x1e{left:599.145000px;}
.x2c{left:621.825000px;}
.x25{left:632.805000px;}
.x19{left:654.045000px;}
.x1f{left:659.850000px;}
.x3c{left:682.170000px;}
.x2d{left:714.390000px;}
.x26{left:720.150000px;}
.x32{left:725.550000px;}
.x37{left:730.950000px;}
.x20{left:733.830000px;}
.x3{left:739.050000px;}
.x3d{left:753.630000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls16{letter-spacing:-2.240000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.265067pt;}
.lsa{letter-spacing:-0.113067pt;}
.lsc{letter-spacing:-0.033920pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.077867pt;}
.ls19{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lsf{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.154027pt;}
.ls6{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:40.912640pt;}
.ls10{letter-spacing:49.232640pt;}
.lse{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsc{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws5{word-spacing:-11.392640pt;}
.wsd{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-7.348053pt;}
._15{margin-left:-5.497600pt;}
._3{margin-left:-4.082987pt;}
._2{margin-left:-2.527147pt;}
._0{margin-left:-0.917333pt;}
._1{width:0.912000pt;}
._9{width:2.166827pt;}
._e{width:3.815680pt;}
._d{width:4.993280pt;}
._14{width:5.940480pt;}
._7{width:7.051093pt;}
._6{width:7.982080pt;}
._13{width:9.460907pt;}
._f{width:10.850560pt;}
._10{width:12.155520pt;}
._12{width:14.183040pt;}
._11{width:15.936000pt;}
._8{width:16.830080pt;}
._a{width:17.795200pt;}
._18{width:22.469760pt;}
._19{width:23.630293pt;}
._c{width:25.149227pt;}
._b{width:26.126080pt;}
._1b{width:27.312853pt;}
._1a{width:28.410240pt;}
._5{width:29.508480pt;}
._4{width:30.428800pt;}
._17{width:39.574400pt;}
.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;}
.y42{bottom:2.880000pt;}
.ybc{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y47{bottom:3.520000pt;}
.ye{bottom:8.320000pt;}
.y45{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y18{bottom:17.800000pt;}
.y2{bottom:17.952000pt;}
.yf4{bottom:18.080000pt;}
.y41{bottom:18.240000pt;}
.y46{bottom:19.680000pt;}
.y44{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y40{bottom:33.600000pt;}
.y17{bottom:35.880000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:47.840000pt;}
.y3f{bottom:48.960000pt;}
.y16{bottom:50.600000pt;}
.y15{bottom:62.120000pt;}
.y3e{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y14{bottom:78.440000pt;}
.y3d{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y93{bottom:88.352000pt;}
.y100{bottom:89.312000pt;}
.y13{bottom:94.760000pt;}
.y3c{bottom:94.880000pt;}
.y56{bottom:95.392000pt;}
.yc8{bottom:97.152000pt;}
.y7{bottom:99.066667pt;}
.y92{bottom:103.712000pt;}
.yff{bottom:104.672000pt;}
.y3b{bottom:110.240000pt;}
.y55{bottom:110.752000pt;}
.y12{bottom:111.560000pt;}
.yc7{bottom:112.512000pt;}
.y117{bottom:117.952000pt;}
.y91{bottom:119.872000pt;}
.yfe{bottom:120.032000pt;}
.y3a{bottom:125.600000pt;}
.y54{bottom:126.112000pt;}
.yc6{bottom:127.712000pt;}
.y116{bottom:133.312000pt;}
.y11{bottom:134.440000pt;}
.yfd{bottom:135.386667pt;}
.y90{bottom:136.186667pt;}
.y39{bottom:140.960000pt;}
.y53{bottom:141.466667pt;}
.yc5{bottom:143.066667pt;}
.y115{bottom:148.666667pt;}
.yfc{bottom:150.586667pt;}
.y8f{bottom:151.546667pt;}
.y38{bottom:156.160000pt;}
.y10{bottom:156.200000pt;}
.y52{bottom:156.826667pt;}
.yc4{bottom:158.426667pt;}
.yfb{bottom:163.706667pt;}
.y114{bottom:164.026667pt;}
.y29{bottom:164.160000pt;}
.y8e{bottom:166.906667pt;}
.y37{bottom:171.520000pt;}
.y51{bottom:172.186667pt;}
.yc3{bottom:173.786667pt;}
.y28{bottom:177.760000pt;}
.y113{bottom:179.386667pt;}
.y8d{bottom:182.266667pt;}
.y36{bottom:186.906667pt;}
.y50{bottom:187.386667pt;}
.yc2{bottom:189.146667pt;}
.y27{bottom:193.786667pt;}
.y112{bottom:194.586667pt;}
.yfa{bottom:195.066667pt;}
.y8c{bottom:198.426667pt;}
.y35{bottom:202.266667pt;}
.y4f{bottom:202.746667pt;}
.yc1{bottom:204.506667pt;}
.y26{bottom:209.306667pt;}
.y111{bottom:209.946667pt;}
.y8b{bottom:214.746667pt;}
.y34{bottom:217.626667pt;}
.y4e{bottom:218.106667pt;}
.y25{bottom:224.826667pt;}
.y110{bottom:225.306667pt;}
.yf9{bottom:226.426667pt;}
.y8a{bottom:231.066667pt;}
.y33{bottom:232.986667pt;}
.y4d{bottom:233.466667pt;}
.yc0{bottom:233.626667pt;}
.y24{bottom:240.186667pt;}
.y10f{bottom:240.666667pt;}
.y89{bottom:247.386667pt;}
.y32{bottom:248.186667pt;}
.y4c{bottom:248.826667pt;}
.ybf{bottom:249.626667pt;}
.y23{bottom:255.706667pt;}
.y10e{bottom:256.026667pt;}
.yf8{bottom:257.786667pt;}
.y31{bottom:263.546667pt;}
.y88{bottom:263.706667pt;}
.y4b{bottom:264.026667pt;}
.ybe{bottom:265.626667pt;}
.y22{bottom:271.226667pt;}
.y10d{bottom:271.386667pt;}
.y30{bottom:278.906667pt;}
.y4a{bottom:279.386667pt;}
.ybd{bottom:281.626667pt;}
.y21{bottom:286.586667pt;}
.yf7{bottom:289.146667pt;}
.y2f{bottom:294.266667pt;}
.y49{bottom:294.746667pt;}
.ybb{bottom:297.626667pt;}
.y10c{bottom:301.986667pt;}
.y20{bottom:302.106667pt;}
.yf6{bottom:305.186667pt;}
.y2e{bottom:309.626667pt;}
.y87{bottom:309.666667pt;}
.y48{bottom:310.786667pt;}
.yba{bottom:313.666667pt;}
.y10b{bottom:317.346667pt;}
.y1f{bottom:317.466667pt;}
.yf5{bottom:321.186667pt;}
.y43{bottom:323.586667pt;}
.y2d{bottom:324.826667pt;}
.y86{bottom:325.026667pt;}
.yb9{bottom:332.546667pt;}
.y10a{bottom:332.706667pt;}
.y1e{bottom:333.146667pt;}
.yf3{bottom:337.186667pt;}
.y2c{bottom:340.186667pt;}
.y85{bottom:341.346667pt;}
.yb8{bottom:347.746667pt;}
.y109{bottom:348.066667pt;}
.y2b{bottom:355.546667pt;}
.y1b{bottom:356.066667pt;}
.y1d{bottom:357.466667pt;}
.y84{bottom:357.666667pt;}
.yb7{bottom:360.866667pt;}
.y108{bottom:363.266667pt;}
.yf2{bottom:368.386667pt;}
.y2a{bottom:370.906667pt;}
.y1c{bottom:373.306667pt;}
.y83{bottom:373.826667pt;}
.yb6{bottom:376.866667pt;}
.y107{bottom:378.626667pt;}
.y82{bottom:389.186667pt;}
.yb5{bottom:392.866667pt;}
.y106{bottom:393.986667pt;}
.yf1{bottom:402.626667pt;}
.y81{bottom:404.546667pt;}
.yb4{bottom:408.866667pt;}
.y105{bottom:409.346667pt;}
.yf0{bottom:417.986667pt;}
.y80{bottom:420.866667pt;}
.y104{bottom:424.706667pt;}
.yb3{bottom:424.866667pt;}
.yef{bottom:433.346667pt;}
.y7f{bottom:437.186667pt;}
.y103{bottom:440.066667pt;}
.yb2{bottom:440.866667pt;}
.yee{bottom:446.466667pt;}
.y7e{bottom:453.346667pt;}
.y102{bottom:455.266667pt;}
.yb1{bottom:456.866667pt;}
.yed{bottom:462.466667pt;}
.y7d{bottom:469.666667pt;}
.y101{bottom:470.626667pt;}
.yb0{bottom:472.866667pt;}
.yec{bottom:478.466667pt;}
.y7c{bottom:485.986667pt;}
.yaf{bottom:488.866667pt;}
.yeb{bottom:494.466667pt;}
.y7b{bottom:501.346667pt;}
.yae{bottom:504.866667pt;}
.yea{bottom:510.466667pt;}
.y7a{bottom:516.706667pt;}
.yad{bottom:520.866667pt;}
.ye9{bottom:526.466667pt;}
.y79{bottom:532.066667pt;}
.yac{bottom:536.893333pt;}
.ye8{bottom:545.373333pt;}
.y78{bottom:547.293333pt;}
.yab{bottom:552.893333pt;}
.ye7{bottom:560.733333pt;}
.y77{bottom:562.653333pt;}
.yaa{bottom:568.893333pt;}
.ye6{bottom:576.093333pt;}
.y76{bottom:578.013333pt;}
.ya9{bottom:584.893333pt;}
.ye5{bottom:589.053333pt;}
.y75{bottom:593.373333pt;}
.ya8{bottom:600.893333pt;}
.ye4{bottom:605.053333pt;}
.y74{bottom:608.733333pt;}
.ya7{bottom:616.893333pt;}
.ye3{bottom:621.053333pt;}
.y73{bottom:623.933333pt;}
.ya6{bottom:632.893333pt;}
.y72{bottom:639.293333pt;}
.ye2{bottom:639.933333pt;}
.ya5{bottom:651.773333pt;}
.y71{bottom:654.653333pt;}
.ye1{bottom:655.293333pt;}
.ya4{bottom:667.133333pt;}
.y70{bottom:670.013333pt;}
.ye0{bottom:670.653333pt;}
.ya3{bottom:682.493333pt;}
.ydf{bottom:683.773333pt;}
.y6f{bottom:685.373333pt;}
.ya2{bottom:697.853333pt;}
.yde{bottom:699.773333pt;}
.y6e{bottom:700.733333pt;}
.ya1{bottom:713.053333pt;}
.ydd{bottom:715.773333pt;}
.y6d{bottom:715.933333pt;}
.ya0{bottom:728.413333pt;}
.y6c{bottom:731.293333pt;}
.ydc{bottom:731.773333pt;}
.y19{bottom:739.453333pt;}
.y9f{bottom:743.773333pt;}
.y6b{bottom:746.653333pt;}
.ydb{bottom:747.773333pt;}
.y9e{bottom:759.133333pt;}
.y6a{bottom:762.013333pt;}
.yf{bottom:765.693333pt;}
.yda{bottom:766.653333pt;}
.y9d{bottom:774.533333pt;}
.y69{bottom:777.413333pt;}
.yd9{bottom:782.053333pt;}
.y9c{bottom:789.893333pt;}
.y68{bottom:792.773333pt;}
.yd8{bottom:797.413333pt;}
.y9b{bottom:805.093333pt;}
.y67{bottom:807.973333pt;}
.yd7{bottom:810.533333pt;}
.y9a{bottom:820.453333pt;}
.y66{bottom:823.333333pt;}
.yd6{bottom:826.533333pt;}
.y99{bottom:835.813333pt;}
.y65{bottom:838.693333pt;}
.yd5{bottom:842.533333pt;}
.y98{bottom:851.173333pt;}
.y64{bottom:854.053333pt;}
.yd4{bottom:858.533333pt;}
.y97{bottom:866.533333pt;}
.y63{bottom:869.413333pt;}
.yd3{bottom:874.533333pt;}
.y96{bottom:881.893333pt;}
.y62{bottom:884.773333pt;}
.yd2{bottom:890.533333pt;}
.y95{bottom:898.053333pt;}
.y61{bottom:899.973333pt;}
.yd1{bottom:906.533333pt;}
.y94{bottom:914.373333pt;}
.y60{bottom:915.333333pt;}
.yd0{bottom:922.533333pt;}
.y5f{bottom:930.693333pt;}
.yd{bottom:935.333333pt;}
.ycf{bottom:938.533333pt;}
.y5e{bottom:946.053333pt;}
.yce{bottom:954.533333pt;}
.y6{bottom:957.733333pt;}
.y5d{bottom:961.413333pt;}
.ycd{bottom:970.533333pt;}
.y5c{bottom:976.613333pt;}
.ycc{bottom:986.533333pt;}
.y5b{bottom:991.973333pt;}
.ycb{bottom:1002.533333pt;}
.y5a{bottom:1007.333333pt;}
.yca{bottom:1018.560000pt;}
.y59{bottom:1022.720000pt;}
.yc9{bottom:1034.560000pt;}
.y58{bottom:1038.080000pt;}
.y57{bottom:1053.440000pt;}
.h20{height:15.200000pt;}
.h21{height:15.232000pt;}
.h1f{height:15.360000pt;}
.h22{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h13{height:26.240000pt;}
.h2{height:29.312000pt;}
.h24{height:30.560000pt;}
.h23{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:38.465312pt;}
.h12{height:38.625000pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h25{height:43.782500pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:169.626667pt;}
.h15{height:383.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:33.280000pt;}
.w17{width:39.392000pt;}
.w1e{width:41.920000pt;}
.w33{width:51.360000pt;}
.w12{width:53.152000pt;}
.w19{width:53.760000pt;}
.w11{width:56.960000pt;}
.w32{width:62.880000pt;}
.w3{width:64.960000pt;}
.w13{width:65.120000pt;}
.w18{width:67.200000pt;}
.w20{width:67.360000pt;}
.w14{width:68.960000pt;}
.w1f{width:71.392000pt;}
.w2c{width:71.520000pt;}
.w23{width:74.432000pt;}
.w27{width:76.320000pt;}
.w1a{width:76.832000pt;}
.w1b{width:81.120000pt;}
.w21{width:81.632000pt;}
.w22{width:86.240000pt;}
.w2f{width:93.600000pt;}
.w30{width:96.512000pt;}
.w2e{width:97.152000pt;}
.w28{width:109.472000pt;}
.w31{width:112.192000pt;}
.wf{width:123.712000pt;}
.wc{width:128.800000pt;}
.w2d{width:130.752000pt;}
.w2a{width:133.466667pt;}
.w5{width:135.066667pt;}
.w29{width:138.746667pt;}
.wd{width:139.866667pt;}
.w1c{width:141.466667pt;}
.w25{width:142.426667pt;}
.w16{width:145.600000pt;}
.w24{width:147.706667pt;}
.w1d{width:154.746667pt;}
.w15{width:180.226667pt;}
.wb{width:184.826667pt;}
.w2b{width:192.666667pt;}
.wa{width:193.026667pt;}
.w8{width:198.626667pt;}
.w26{width:205.146667pt;}
.we{width:243.106667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xb{left:34.432000pt;}
.xe{left:36.992000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.xc{left:92.826667pt;}
.x13{left:96.031988pt;}
.x22{left:100.831988pt;}
.x27{left:115.871988pt;}
.x1a{left:118.271988pt;}
.x3e{left:120.031988pt;}
.x14{left:144.026655pt;}
.x2f{left:147.706667pt;}
.x38{left:167.226655pt;}
.x34{left:182.746667pt;}
.x2e{left:184.986655pt;}
.x15{left:188.666655pt;}
.x10{left:191.266667pt;}
.x39{left:204.026667pt;}
.x5{left:207.066667pt;}
.x28{left:214.746667pt;}
.x33{left:216.986655pt;}
.xd{left:221.986667pt;}
.x8{left:241.986667pt;}
.xf{left:253.506667pt;}
.x16{left:266.466667pt;}
.x11{left:270.626667pt;}
.x6{left:295.106667pt;}
.x30{left:296.066667pt;}
.x3a{left:301.986667pt;}
.x7{left:312.226667pt;}
.x1b{left:316.546667pt;}
.x35{left:322.146667pt;}
.xa{left:324.866667pt;}
.x29{left:370.146667pt;}
.x9{left:390.666667pt;}
.x21{left:396.866655pt;}
.x23{left:400.066667pt;}
.x2a{left:412.706667pt;}
.x31{left:439.133333pt;}
.x1c{left:440.893333pt;}
.x18{left:451.933333pt;}
.x36{left:456.413333pt;}
.x1d{left:474.973333pt;}
.x2b{left:484.733333pt;}
.x3b{left:493.533333pt;}
.x24{left:508.093333pt;}
.x1e{left:532.573333pt;}
.x2c{left:552.733333pt;}
.x25{left:562.493333pt;}
.x19{left:581.373333pt;}
.x1f{left:586.533333pt;}
.x3c{left:606.373333pt;}
.x2d{left:635.013333pt;}
.x26{left:640.133333pt;}
.x32{left:644.933333pt;}
.x37{left:649.733333pt;}
.x20{left:652.293333pt;}
.x3{left:656.933333pt;}
.x3d{left:669.893333pt;}
}




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