
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c2dbd252356d3463521e4da0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ca610a61a12d3e596f5a66b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_522b4cc95722776df4831644.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a10e51f06924f058522daa6e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b837b7a781805c2592c7e1b7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d81ccfc9cbf9f04c9350da11.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1ba91d6ac067a5bf7b54b20b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_85c78f646acb0af5b11adda6.woff')format("woff");}.ffc{font-family:ffc;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b74467c245a7631eb3b1c93a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.123047;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_5c010192a216fedf4702b765.woff')format("woff");}.ffe{font-family:ffe;line-height:0.983887;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_88e6fe5f9beefee3abf754fb.woff')format("woff");}.fff{font-family:fff;line-height:0.983887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.900000px;}
.ls11{letter-spacing:-0.324600px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.112320px;}
.ls6{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.132480px;}
.lsd{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.256320px;}
.ls8{letter-spacing:0.258480px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.402480px;}
.lsb{letter-spacing:0.532080px;}
.ls1{letter-spacing:0.540000px;}
.ls7{letter-spacing:55.386720px;}
.ls3{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc8{text-shadow:-0.015em 0 rgb(229,229,229),0 0.015em rgb(229,229,229),0.015em 0 rgb(229,229,229),0 -0.015em  rgb(229,229,229);}
.sc7{text-shadow:-0.015em 0 rgb(117,117,117),0 0.015em rgb(117,117,117),0.015em 0 rgb(117,117,117),0 -0.015em  rgb(117,117,117);}
.sc5{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.sc4{text-shadow:-0.015em 0 rgb(204,204,204),0 0.015em rgb(204,204,204),0.015em 0 rgb(204,204,204),0 -0.015em  rgb(204,204,204);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc6{text-shadow:-0.015em 0 rgb(105,234,255),0 0.015em rgb(105,234,255),0.015em 0 rgb(105,234,255),0 -0.015em  rgb(105,234,255);}
.sc2{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.sc1{text-shadow:-0.015em 0 rgb(31,77,120),0 0.015em rgb(31,77,120),0.015em 0 rgb(31,77,120),0 -0.015em  rgb(31,77,120);}
.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;}
.sc8{-webkit-text-stroke:0.015em rgb(229,229,229);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(117,117,117);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(204,204,204);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(105,234,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(46,116,181);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(31,77,120);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-112.207680px;}
.ws1{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-19.038240px;}
.ws6{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-115.661520px;}
._13{margin-left:-112.207680px;}
._14{margin-left:-103.879920px;}
._18{margin-left:-52.818480px;}
._15{margin-left:-22.757280px;}
._17{margin-left:-12.972960px;}
._9{margin-left:-5.646960px;}
._6{margin-left:-3.962160px;}
._3{margin-left:-2.785680px;}
._0{margin-left:-1.008000px;}
._1{width:1.428000px;}
._4{width:3.348000px;}
._11{width:8.087040px;}
._d{width:10.530000px;}
._e{width:11.538000px;}
._b{width:13.475520px;}
._c{width:14.832000px;}
._12{width:16.339680px;}
._8{width:17.350560px;}
._7{width:18.698400px;}
._a{width:26.114400px;}
._2{width:27.290880px;}
._10{width:30.744720px;}
._f{width:31.758480px;}
._5{width:34.454160px;}
._1a{width:39.873600px;}
._19{width:53.155440px;}
._1b{width:843.060000px;}
.fcd{color:rgb(229,229,229);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc7{color:rgb(255,200,61);}
.fca{color:rgb(242,242,242);}
.fce{color:rgb(0,120,215);}
.fc9{color:rgb(204,204,204);}
.fcc{color:rgb(117,117,117);}
.fc2{color:rgb(91,155,213);}
.fc4{color:rgb(31,77,120);}
.fc3{color:transparent;}
.fc5{color:rgb(46,116,181);}
.fc6{color:rgb(142,86,46);}
.fcb{color:rgb(105,234,255);}
.fc8{color:rgb(247,137,74);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.822393px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900000px;}
.y5{bottom:4.356000px;}
.y52{bottom:4.500000px;}
.y54{bottom:4.680000px;}
.y7{bottom:5.796000px;}
.ya3{bottom:6.300000px;}
.ya8{bottom:6.480000px;}
.yaf{bottom:7.200000px;}
.yab{bottom:7.380000px;}
.yae{bottom:7.560000px;}
.yb{bottom:9.900000px;}
.ya6{bottom:19.440000px;}
.y15d{bottom:19.485000px;}
.yb1{bottom:19.620000px;}
.y14f{bottom:19.665000px;}
.ya5{bottom:19.800000px;}
.yea{bottom:19.845000px;}
.y4{bottom:20.016000px;}
.yac{bottom:21.060000px;}
.ye7{bottom:21.240000px;}
.y6{bottom:23.580000px;}
.yb2{bottom:32.400000px;}
.ya7{bottom:32.580000px;}
.yeb{bottom:32.625000px;}
.yaa{bottom:35.100000px;}
.ye6{bottom:35.280000px;}
.y3{bottom:53.856000px;}
.y2{bottom:69.336000px;}
.y37{bottom:96.696000px;}
.y107{bottom:100.116000px;}
.y63{bottom:114.516000px;}
.ye0{bottom:118.116000px;}
.y36{bottom:120.996000px;}
.y106{bottom:125.316000px;}
.y12d{bottom:129.816000px;}
.y176{bottom:130.716000px;}
.y153{bottom:134.136000px;}
.y89{bottom:138.636000px;}
.y62{bottom:138.816000px;}
.ydf{bottom:142.236000px;}
.y35{bottom:145.116000px;}
.y105{bottom:149.796000px;}
.y12c{bottom:155.190000px;}
.yb6{bottom:157.710000px;}
.y175{bottom:160.410000px;}
.y152{bottom:162.750000px;}
.y61{bottom:162.930000px;}
.yde{bottom:166.350000px;}
.y88{bottom:167.250000px;}
.y34{bottom:169.230000px;}
.y104{bottom:175.170000px;}
.y12b{bottom:180.750000px;}
.y174{bottom:184.890000px;}
.y151{bottom:185.790000px;}
.y60{bottom:187.050000px;}
.yb5{bottom:188.310000px;}
.y87{bottom:191.370000px;}
.ydd{bottom:192.450000px;}
.y33{bottom:193.350000px;}
.y103{bottom:200.730000px;}
.y12a{bottom:206.310000px;}
.y173{bottom:210.090000px;}
.y5f{bottom:211.170000px;}
.y86{bottom:215.670000px;}
.y150{bottom:216.390000px;}
.y32{bottom:217.470000px;}
.ydc{bottom:219.630000px;}
.y102{bottom:228.450000px;}
.y129{bottom:232.590000px;}
.y5e{bottom:235.290000px;}
.y172{bottom:237.810000px;}
.y85{bottom:239.790000px;}
.y31{bottom:241.590000px;}
.yb4{bottom:241.770000px;}
.ydb{bottom:244.470000px;}
.y101{bottom:253.110000px;}
.y128{bottom:255.990000px;}
.y5d{bottom:259.410000px;}
.y171{bottom:262.650000px;}
.y84{bottom:265.530000px;}
.y30{bottom:265.710000px;}
.y14e{bottom:272.910000px;}
.yda{bottom:273.090000px;}
.y127{bottom:280.470000px;}
.y100{bottom:281.955000px;}
.y5c{bottom:283.755000px;}
.y83{bottom:287.895000px;}
.y2f{bottom:290.055000px;}
.y170{bottom:292.395000px;}
.yb3{bottom:298.515000px;}
.yd9{bottom:299.235000px;}
.y126{bottom:305.895000px;}
.yff{bottom:306.075000px;}
.y5b{bottom:307.875000px;}
.y82{bottom:312.015000px;}
.y2e{bottom:314.175000px;}
.y16f{bottom:318.135000px;}
.yd8{bottom:325.335000px;}
.y14d{bottom:329.655000px;}
.yfe{bottom:330.195000px;}
.yb0{bottom:330.735000px;}
.y5a{bottom:331.995000px;}
.y81{bottom:336.135000px;}
.y2d{bottom:338.295000px;}
.y16e{bottom:343.695000px;}
.yd7{bottom:351.435000px;}
.yfd{bottom:354.315000px;}
.y59{bottom:356.115000px;}
.y125{bottom:357.375000px;}
.y14c{bottom:360.255000px;}
.y80{bottom:362.055000px;}
.y2c{bottom:362.415000px;}
.y16d{bottom:371.415000px;}
.yd6{bottom:378.435000px;}
.y58{bottom:379.155000px;}
.yfc{bottom:380.055000px;}
.y124{bottom:382.215000px;}
.y7f{bottom:384.375000px;}
.y2b{bottom:386.535000px;}
.yad{bottom:387.255000px;}
.y16c{bottom:396.075000px;}
.yfb{bottom:400.215000px;}
.yd5{bottom:406.335000px;}
.y57{bottom:407.775000px;}
.y7e{bottom:408.495000px;}
.y2a{bottom:410.655000px;}
.y123{bottom:410.835000px;}
.y14b{bottom:416.775000px;}
.ya9{bottom:419.475000px;}
.yfa{bottom:424.335000px;}
.y16b{bottom:424.695000px;}
.yd4{bottom:431.175000px;}
.y7d{bottom:434.235000px;}
.y29{bottom:434.955000px;}
.y56{bottom:436.395000px;}
.yf9{bottom:450.075000px;}
.y16a{bottom:450.435000px;}
.y14a{bottom:453.855000px;}
.y7c{bottom:456.555000px;}
.y28{bottom:459.075000px;}
.y122{bottom:459.255000px;}
.yd3{bottom:459.795000px;}
.y55{bottom:465.015000px;}
.yf8{bottom:470.235000px;}
.y169{bottom:470.595000px;}
.y149{bottom:478.695000px;}
.ya4{bottom:479.235000px;}
.y7b{bottom:480.675000px;}
.y27{bottom:483.195000px;}
.y121{bottom:483.375000px;}
.yd2{bottom:483.915000px;}
.y53{bottom:493.635000px;}
.y168{bottom:494.895000px;}
.yf7{bottom:495.435000px;}
.y7a{bottom:504.795000px;}
.y26{bottom:507.315000px;}
.yd1{bottom:508.035000px;}
.y148{bottom:510.375000px;}
.y120{bottom:510.555000px;}
.yf6{bottom:520.095000px;}
.y167{bottom:520.455000px;}
.y51{bottom:522.435000px;}
.y79{bottom:529.095000px;}
.y25{bottom:531.435000px;}
.yd0{bottom:533.415000px;}
.y147{bottom:535.035000px;}
.y11f{bottom:535.395000px;}
.ya2{bottom:535.935000px;}
.y166{bottom:541.875000px;}
.yf5{bottom:545.655000px;}
.y50{bottom:554.475000px;}
.y78{bottom:554.835000px;}
.y24{bottom:555.555000px;}
.y146{bottom:559.155000px;}
.ycf{bottom:560.955000px;}
.yf4{bottom:565.845000px;}
.y11e{bottom:566.025000px;}
.y165{bottom:567.825000px;}
.ya1{bottom:573.045000px;}
.y77{bottom:577.185000px;}
.y4f{bottom:578.625000px;}
.y23{bottom:579.705000px;}
.y145{bottom:583.305000px;}
.yce{bottom:585.825000px;}
.y164{bottom:588.165000px;}
.yf3{bottom:591.225000px;}
.y11d{bottom:593.025000px;}
.ya0{bottom:597.885000px;}
.y76{bottom:601.305000px;}
.y4e{bottom:602.745000px;}
.y22{bottom:604.005000px;}
.y144{bottom:607.425000px;}
.y163{bottom:612.285000px;}
.ycd{bottom:614.445000px;}
.yf2{bottom:617.325000px;}
.y11c{bottom:618.585000px;}
.y75{bottom:625.425000px;}
.y9f{bottom:626.505000px;}
.y4d{bottom:626.865000px;}
.y21{bottom:628.125000px;}
.y143{bottom:631.725000px;}
.y162{bottom:638.025000px;}
.ycc{bottom:639.645000px;}
.yf1{bottom:640.545000px;}
.y11b{bottom:643.065000px;}
.y74{bottom:649.545000px;}
.y9e{bottom:650.625000px;}
.y4c{bottom:650.985000px;}
.y20{bottom:652.245000px;}
.y142{bottom:658.905000px;}
.y161{bottom:661.245000px;}
.ycb{bottom:664.305000px;}
.yf0{bottom:665.385000px;}
.y11a{bottom:673.665000px;}
.y9d{bottom:674.745000px;}
.y4b{bottom:675.105000px;}
.y73{bottom:675.465000px;}
.y1f{bottom:676.365000px;}
.y141{bottom:683.745000px;}
.y160{bottom:686.085000px;}
.yca{bottom:689.505000px;}
.yef{bottom:695.985000px;}
.y9c{bottom:698.865000px;}
.y4a{bottom:699.405000px;}
.y1e{bottom:700.485000px;}
.y72{bottom:700.665000px;}
.y119{bottom:700.845000px;}
.y188{bottom:703.185000px;}
.y140{bottom:712.365000px;}
.yc9{bottom:715.065000px;}
.y15f{bottom:717.765000px;}
.y71{bottom:722.805000px;}
.y9b{bottom:722.985000px;}
.yee{bottom:723.165000px;}
.y49{bottom:723.525000px;}
.y1d{bottom:724.605000px;}
.y187{bottom:727.305000px;}
.y118{bottom:728.565000px;}
.y13f{bottom:738.105000px;}
.yc8{bottom:742.785000px;}
.y15e{bottom:745.485000px;}
.y48{bottom:747.645000px;}
.y1c{bottom:748.905000px;}
.y9a{bottom:749.085000px;}
.yed{bottom:749.445000px;}
.y70{bottom:751.425000px;}
.y186{bottom:753.225000px;}
.y117{bottom:755.025000px;}
.y13e{bottom:760.425000px;}
.yc7{bottom:767.625000px;}
.y47{bottom:771.765000px;}
.y1b{bottom:773.025000px;}
.y99{bottom:776.445000px;}
.y6f{bottom:776.805000px;}
.y185{bottom:779.325000px;}
.y13d{bottom:784.545000px;}
.y116{bottom:785.265000px;}
.y46{bottom:795.885000px;}
.yc6{bottom:796.245000px;}
.y1a{bottom:797.145000px;}
.y98{bottom:801.105000px;}
.y6e{bottom:802.365000px;}
.y184{bottom:803.445000px;}
.yec{bottom:806.145000px;}
.y13c{bottom:810.465000px;}
.y115{bottom:812.805000px;}
.y45{bottom:820.005000px;}
.yc5{bottom:820.365000px;}
.y19{bottom:821.265000px;}
.y183{bottom:827.745000px;}
.y6d{bottom:828.105000px;}
.y15c{bottom:828.285000px;}
.y97{bottom:829.905000px;}
.y13b{bottom:832.785000px;}
.ye9{bottom:838.185000px;}
.y114{bottom:840.525000px;}
.y44{bottom:844.125000px;}
.yc4{bottom:844.485000px;}
.y18{bottom:845.385000px;}
.y182{bottom:851.910000px;}
.y6c{bottom:853.710000px;}
.y96{bottom:854.070000px;}
.y13a{bottom:856.950000px;}
.y113{bottom:862.710000px;}
.y43{bottom:868.470000px;}
.yc3{bottom:868.650000px;}
.y17{bottom:871.530000px;}
.y181{bottom:876.030000px;}
.y95{bottom:878.190000px;}
.y6b{bottom:879.270000px;}
.y139{bottom:882.690000px;}
.y15b{bottom:885.030000px;}
.y42{bottom:892.590000px;}
.y112{bottom:893.310000px;}
.yc2{bottom:894.390000px;}
.ye8{bottom:894.930000px;}
.y16{bottom:897.630000px;}
.y180{bottom:900.150000px;}
.y94{bottom:902.310000px;}
.y6a{bottom:905.010000px;}
.y138{bottom:905.910000px;}
.yc1{bottom:914.550000px;}
.y41{bottom:916.710000px;}
.y15a{bottom:917.250000px;}
.y111{bottom:919.230000px;}
.y15{bottom:923.730000px;}
.y17f{bottom:926.250000px;}
.ye5{bottom:926.970000px;}
.y93{bottom:927.510000px;}
.y69{bottom:930.570000px;}
.y137{bottom:930.750000px;}
.yc0{bottom:938.670000px;}
.y40{bottom:940.830000px;}
.y110{bottom:946.410000px;}
.y159{bottom:949.290000px;}
.y14{bottom:949.650000px;}
.y92{bottom:953.250000px;}
.y17e{bottom:953.430000px;}
.y68{bottom:956.310000px;}
.y136{bottom:959.370000px;}
.ybf{bottom:964.410000px;}
.y3f{bottom:964.950000px;}
.y10f{bottom:974.310000px;}
.y13{bottom:975.750000px;}
.y17d{bottom:978.270000px;}
.y91{bottom:980.610000px;}
.y67{bottom:981.870000px;}
.ybe{bottom:984.570000px;}
.y135{bottom:984.750000px;}
.ye4{bottom:986.910000px;}
.y3e{bottom:989.070000px;}
.y10e{bottom:998.970000px;}
.y12{bottom:1001.850000px;}
.y90{bottom:1005.270000px;}
.y158{bottom:1005.990000px;}
.y17c{bottom:1006.890000px;}
.y66{bottom:1007.430000px;}
.ybd{bottom:1009.950000px;}
.y134{bottom:1010.310000px;}
.y3d{bottom:1013.370000px;}
.y10d{bottom:1027.590000px;}
.y11{bottom:1027.950000px;}
.y17b{bottom:1031.010000px;}
.y8f{bottom:1033.890000px;}
.ybc{bottom:1034.430000px;}
.y133{bottom:1034.790000px;}
.y65{bottom:1034.970000px;}
.y3c{bottom:1037.490000px;}
.y157{bottom:1043.070000px;}
.ye3{bottom:1043.430000px;}
.y10c{bottom:1051.890000px;}
.y10{bottom:1053.870000px;}
.y17a{bottom:1055.310000px;}
.y64{bottom:1057.110000px;}
.y8e{bottom:1058.010000px;}
.ybb{bottom:1060.170000px;}
.y132{bottom:1060.530000px;}
.y3b{bottom:1061.610000px;}
.y156{bottom:1067.910000px;}
.y10b{bottom:1076.010000px;}
.y179{bottom:1079.430000px;}
.yf{bottom:1079.970000px;}
.yba{bottom:1080.330000px;}
.ye2{bottom:1080.510000px;}
.y8d{bottom:1082.130000px;}
.y131{bottom:1082.850000px;}
.y3a{bottom:1085.730000px;}
.y155{bottom:1099.410000px;}
.y10a{bottom:1101.210000px;}
.y178{bottom:1103.550000px;}
.ye1{bottom:1105.350000px;}
.yb9{bottom:1105.530000px;}
.ye{bottom:1106.070000px;}
.y8c{bottom:1106.430000px;}
.y130{bottom:1108.230000px;}
.y39{bottom:1109.850000px;}
.y154{bottom:1127.130000px;}
.y177{bottom:1127.670000px;}
.y109{bottom:1128.930000px;}
.y8b{bottom:1130.580000px;}
.yb8{bottom:1131.660000px;}
.yd{bottom:1132.200000px;}
.y12f{bottom:1133.820000px;}
.y38{bottom:1134.000000px;}
.y108{bottom:1153.800000px;}
.yb7{bottom:1155.060000px;}
.y8a{bottom:1157.760000px;}
.yc{bottom:1158.300000px;}
.y12e{bottom:1160.100000px;}
.ya{bottom:1177.920000px;}
.y8{bottom:1214.100000px;}
.y1{bottom:1247.220000px;}
.h3{height:21.780000px;}
.ha{height:24.120000px;}
.hb{height:24.300000px;}
.h11{height:25.920000px;}
.h17{height:26.100000px;}
.h19{height:27.540000px;}
.h14{height:27.720000px;}
.h7{height:29.520000px;}
.h5{height:34.560000px;}
.h15{height:52.020000px;}
.h12{height:52.200000px;}
.h16{height:52.236000px;}
.hf{height:53.367187px;}
.h13{height:55.260000px;}
.h18{height:55.440000px;}
.h9{height:58.819922px;}
.h8{height:59.436914px;}
.he{height:63.719752px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h10{height:76.877227px;}
.hc{height:80.208984px;}
.hd{height:86.255508px;}
.h6{height:101.601562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.680000px;}
.wf{width:111.996000px;}
.w6{width:114.336000px;}
.w9{width:189.750000px;}
.wc{width:209.730000px;}
.wb{width:261.750000px;}
.w7{width:265.890000px;}
.w8{width:268.815000px;}
.we{width:271.650000px;}
.wd{width:274.935000px;}
.wa{width:305.175000px;}
.w10{width:308.730000px;}
.w11{width:335.550000px;}
.w5{width:560.085000px;}
.w4{width:697.289972px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.080000px;}
.x23{left:10.080000px;}
.x1f{left:16.635000px;}
.x12{left:19.620000px;}
.x6{left:20.775000px;}
.x20{left:46.116000px;}
.x1b{left:48.996000px;}
.x1{left:63.899987px;}
.x11{left:66.060000px;}
.x1e{left:75.420000px;}
.x14{left:76.680000px;}
.x1a{left:86.579987px;}
.xf{left:90.899987px;}
.x7{left:96.875972px;}
.x25{left:98.820000px;}
.x9{left:108.900000px;}
.x10{left:117.935987px;}
.x18{left:128.915987px;}
.x17{left:144.935987px;}
.xd{left:152.309987px;}
.x24{left:180.390000px;}
.x13{left:182.550000px;}
.xa{left:208.649987px;}
.x1c{left:257.970000px;}
.x21{left:278.130000px;}
.xb{left:299.954987px;}
.xc{left:310.754987px;}
.x8{left:332.895000px;}
.x5{left:400.140000px;}
.x3{left:425.414987px;}
.xe{left:446.654987px;}
.x15{left:450.795000px;}
.x4{left:459.074987px;}
.x26{left:491.505000px;}
.x22{left:555.405000px;}
.x1d{left:565.305000px;}
.x19{left:829.409987px;}
.x2{left:872.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.800000pt;}
.ls11{letter-spacing:-0.288533pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.099840pt;}
.ls6{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.117760pt;}
.lsd{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.227840pt;}
.ls8{letter-spacing:0.229760pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.357760pt;}
.lsb{letter-spacing:0.472960pt;}
.ls1{letter-spacing:0.480000pt;}
.ls7{letter-spacing:49.232640pt;}
.ls3{letter-spacing:56.912640pt;}
.ws5{word-spacing:-99.740160pt;}
.ws1{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.922880pt;}
.ws6{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-102.810240pt;}
._13{margin-left:-99.740160pt;}
._14{margin-left:-92.337707pt;}
._18{margin-left:-46.949760pt;}
._15{margin-left:-20.228693pt;}
._17{margin-left:-11.531520pt;}
._9{margin-left:-5.019520pt;}
._6{margin-left:-3.521920pt;}
._3{margin-left:-2.476160pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.269333pt;}
._4{width:2.976000pt;}
._11{width:7.188480pt;}
._d{width:9.360000pt;}
._e{width:10.256000pt;}
._b{width:11.978240pt;}
._c{width:13.184000pt;}
._12{width:14.524160pt;}
._8{width:15.422720pt;}
._7{width:16.620800pt;}
._a{width:23.212800pt;}
._2{width:24.258560pt;}
._10{width:27.328640pt;}
._f{width:28.229760pt;}
._5{width:30.625920pt;}
._1a{width:35.443200pt;}
._19{width:47.249280pt;}
._1b{width:749.386667pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:62.064349pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800000pt;}
.y5{bottom:3.872000pt;}
.y52{bottom:4.000000pt;}
.y54{bottom:4.160000pt;}
.y7{bottom:5.152000pt;}
.ya3{bottom:5.600000pt;}
.ya8{bottom:5.760000pt;}
.yaf{bottom:6.400000pt;}
.yab{bottom:6.560000pt;}
.yae{bottom:6.720000pt;}
.yb{bottom:8.800000pt;}
.ya6{bottom:17.280000pt;}
.y15d{bottom:17.320000pt;}
.yb1{bottom:17.440000pt;}
.y14f{bottom:17.480000pt;}
.ya5{bottom:17.600000pt;}
.yea{bottom:17.640000pt;}
.y4{bottom:17.792000pt;}
.yac{bottom:18.720000pt;}
.ye7{bottom:18.880000pt;}
.y6{bottom:20.960000pt;}
.yb2{bottom:28.800000pt;}
.ya7{bottom:28.960000pt;}
.yeb{bottom:29.000000pt;}
.yaa{bottom:31.200000pt;}
.ye6{bottom:31.360000pt;}
.y3{bottom:47.872000pt;}
.y2{bottom:61.632000pt;}
.y37{bottom:85.952000pt;}
.y107{bottom:88.992000pt;}
.y63{bottom:101.792000pt;}
.ye0{bottom:104.992000pt;}
.y36{bottom:107.552000pt;}
.y106{bottom:111.392000pt;}
.y12d{bottom:115.392000pt;}
.y176{bottom:116.192000pt;}
.y153{bottom:119.232000pt;}
.y89{bottom:123.232000pt;}
.y62{bottom:123.392000pt;}
.ydf{bottom:126.432000pt;}
.y35{bottom:128.992000pt;}
.y105{bottom:133.152000pt;}
.y12c{bottom:137.946667pt;}
.yb6{bottom:140.186667pt;}
.y175{bottom:142.586667pt;}
.y152{bottom:144.666667pt;}
.y61{bottom:144.826667pt;}
.yde{bottom:147.866667pt;}
.y88{bottom:148.666667pt;}
.y34{bottom:150.426667pt;}
.y104{bottom:155.706667pt;}
.y12b{bottom:160.666667pt;}
.y174{bottom:164.346667pt;}
.y151{bottom:165.146667pt;}
.y60{bottom:166.266667pt;}
.yb5{bottom:167.386667pt;}
.y87{bottom:170.106667pt;}
.ydd{bottom:171.066667pt;}
.y33{bottom:171.866667pt;}
.y103{bottom:178.426667pt;}
.y12a{bottom:183.386667pt;}
.y173{bottom:186.746667pt;}
.y5f{bottom:187.706667pt;}
.y86{bottom:191.706667pt;}
.y150{bottom:192.346667pt;}
.y32{bottom:193.306667pt;}
.ydc{bottom:195.226667pt;}
.y102{bottom:203.066667pt;}
.y129{bottom:206.746667pt;}
.y5e{bottom:209.146667pt;}
.y172{bottom:211.386667pt;}
.y85{bottom:213.146667pt;}
.y31{bottom:214.746667pt;}
.yb4{bottom:214.906667pt;}
.ydb{bottom:217.306667pt;}
.y101{bottom:224.986667pt;}
.y128{bottom:227.546667pt;}
.y5d{bottom:230.586667pt;}
.y171{bottom:233.466667pt;}
.y84{bottom:236.026667pt;}
.y30{bottom:236.186667pt;}
.y14e{bottom:242.586667pt;}
.yda{bottom:242.746667pt;}
.y127{bottom:249.306667pt;}
.y100{bottom:250.626667pt;}
.y5c{bottom:252.226667pt;}
.y83{bottom:255.906667pt;}
.y2f{bottom:257.826667pt;}
.y170{bottom:259.906667pt;}
.yb3{bottom:265.346667pt;}
.yd9{bottom:265.986667pt;}
.y126{bottom:271.906667pt;}
.yff{bottom:272.066667pt;}
.y5b{bottom:273.666667pt;}
.y82{bottom:277.346667pt;}
.y2e{bottom:279.266667pt;}
.y16f{bottom:282.786667pt;}
.yd8{bottom:289.186667pt;}
.y14d{bottom:293.026667pt;}
.yfe{bottom:293.506667pt;}
.yb0{bottom:293.986667pt;}
.y5a{bottom:295.106667pt;}
.y81{bottom:298.786667pt;}
.y2d{bottom:300.706667pt;}
.y16e{bottom:305.506667pt;}
.yd7{bottom:312.386667pt;}
.yfd{bottom:314.946667pt;}
.y59{bottom:316.546667pt;}
.y125{bottom:317.666667pt;}
.y14c{bottom:320.226667pt;}
.y80{bottom:321.826667pt;}
.y2c{bottom:322.146667pt;}
.y16d{bottom:330.146667pt;}
.yd6{bottom:336.386667pt;}
.y58{bottom:337.026667pt;}
.yfc{bottom:337.826667pt;}
.y124{bottom:339.746667pt;}
.y7f{bottom:341.666667pt;}
.y2b{bottom:343.586667pt;}
.yad{bottom:344.226667pt;}
.y16c{bottom:352.066667pt;}
.yfb{bottom:355.746667pt;}
.yd5{bottom:361.186667pt;}
.y57{bottom:362.466667pt;}
.y7e{bottom:363.106667pt;}
.y2a{bottom:365.026667pt;}
.y123{bottom:365.186667pt;}
.y14b{bottom:370.466667pt;}
.ya9{bottom:372.866667pt;}
.yfa{bottom:377.186667pt;}
.y16b{bottom:377.506667pt;}
.yd4{bottom:383.266667pt;}
.y7d{bottom:385.986667pt;}
.y29{bottom:386.626667pt;}
.y56{bottom:387.906667pt;}
.yf9{bottom:400.066667pt;}
.y16a{bottom:400.386667pt;}
.y14a{bottom:403.426667pt;}
.y7c{bottom:405.826667pt;}
.y28{bottom:408.066667pt;}
.y122{bottom:408.226667pt;}
.yd3{bottom:408.706667pt;}
.y55{bottom:413.346667pt;}
.yf8{bottom:417.986667pt;}
.y169{bottom:418.306667pt;}
.y149{bottom:425.506667pt;}
.ya4{bottom:425.986667pt;}
.y7b{bottom:427.266667pt;}
.y27{bottom:429.506667pt;}
.y121{bottom:429.666667pt;}
.yd2{bottom:430.146667pt;}
.y53{bottom:438.786667pt;}
.y168{bottom:439.906667pt;}
.yf7{bottom:440.386667pt;}
.y7a{bottom:448.706667pt;}
.y26{bottom:450.946667pt;}
.yd1{bottom:451.586667pt;}
.y148{bottom:453.666667pt;}
.y120{bottom:453.826667pt;}
.yf6{bottom:462.306667pt;}
.y167{bottom:462.626667pt;}
.y51{bottom:464.386667pt;}
.y79{bottom:470.306667pt;}
.y25{bottom:472.386667pt;}
.yd0{bottom:474.146667pt;}
.y147{bottom:475.586667pt;}
.y11f{bottom:475.906667pt;}
.ya2{bottom:476.386667pt;}
.y166{bottom:481.666667pt;}
.yf5{bottom:485.026667pt;}
.y50{bottom:492.866667pt;}
.y78{bottom:493.186667pt;}
.y24{bottom:493.826667pt;}
.y146{bottom:497.026667pt;}
.ycf{bottom:498.626667pt;}
.yf4{bottom:502.973333pt;}
.y11e{bottom:503.133333pt;}
.y165{bottom:504.733333pt;}
.ya1{bottom:509.373333pt;}
.y77{bottom:513.053333pt;}
.y4f{bottom:514.333333pt;}
.y23{bottom:515.293333pt;}
.y145{bottom:518.493333pt;}
.yce{bottom:520.733333pt;}
.y164{bottom:522.813333pt;}
.yf3{bottom:525.533333pt;}
.y11d{bottom:527.133333pt;}
.ya0{bottom:531.453333pt;}
.y76{bottom:534.493333pt;}
.y4e{bottom:535.773333pt;}
.y22{bottom:536.893333pt;}
.y144{bottom:539.933333pt;}
.y163{bottom:544.253333pt;}
.ycd{bottom:546.173333pt;}
.yf2{bottom:548.733333pt;}
.y11c{bottom:549.853333pt;}
.y75{bottom:555.933333pt;}
.y9f{bottom:556.893333pt;}
.y4d{bottom:557.213333pt;}
.y21{bottom:558.333333pt;}
.y143{bottom:561.533333pt;}
.y162{bottom:567.133333pt;}
.ycc{bottom:568.573333pt;}
.yf1{bottom:569.373333pt;}
.y11b{bottom:571.613333pt;}
.y74{bottom:577.373333pt;}
.y9e{bottom:578.333333pt;}
.y4c{bottom:578.653333pt;}
.y20{bottom:579.773333pt;}
.y142{bottom:585.693333pt;}
.y161{bottom:587.773333pt;}
.ycb{bottom:590.493333pt;}
.yf0{bottom:591.453333pt;}
.y11a{bottom:598.813333pt;}
.y9d{bottom:599.773333pt;}
.y4b{bottom:600.093333pt;}
.y73{bottom:600.413333pt;}
.y1f{bottom:601.213333pt;}
.y141{bottom:607.773333pt;}
.y160{bottom:609.853333pt;}
.yca{bottom:612.893333pt;}
.yef{bottom:618.653333pt;}
.y9c{bottom:621.213333pt;}
.y4a{bottom:621.693333pt;}
.y1e{bottom:622.653333pt;}
.y72{bottom:622.813333pt;}
.y119{bottom:622.973333pt;}
.y188{bottom:625.053333pt;}
.y140{bottom:633.213333pt;}
.yc9{bottom:635.613333pt;}
.y15f{bottom:638.013333pt;}
.y71{bottom:642.493333pt;}
.y9b{bottom:642.653333pt;}
.yee{bottom:642.813333pt;}
.y49{bottom:643.133333pt;}
.y1d{bottom:644.093333pt;}
.y187{bottom:646.493333pt;}
.y118{bottom:647.613333pt;}
.y13f{bottom:656.093333pt;}
.yc8{bottom:660.253333pt;}
.y15e{bottom:662.653333pt;}
.y48{bottom:664.573333pt;}
.y1c{bottom:665.693333pt;}
.y9a{bottom:665.853333pt;}
.yed{bottom:666.173333pt;}
.y70{bottom:667.933333pt;}
.y186{bottom:669.533333pt;}
.y117{bottom:671.133333pt;}
.y13e{bottom:675.933333pt;}
.yc7{bottom:682.333333pt;}
.y47{bottom:686.013333pt;}
.y1b{bottom:687.133333pt;}
.y99{bottom:690.173333pt;}
.y6f{bottom:690.493333pt;}
.y185{bottom:692.733333pt;}
.y13d{bottom:697.373333pt;}
.y116{bottom:698.013333pt;}
.y46{bottom:707.453333pt;}
.yc6{bottom:707.773333pt;}
.y1a{bottom:708.573333pt;}
.y98{bottom:712.093333pt;}
.y6e{bottom:713.213333pt;}
.y184{bottom:714.173333pt;}
.yec{bottom:716.573333pt;}
.y13c{bottom:720.413333pt;}
.y115{bottom:722.493333pt;}
.y45{bottom:728.893333pt;}
.yc5{bottom:729.213333pt;}
.y19{bottom:730.013333pt;}
.y183{bottom:735.773333pt;}
.y6d{bottom:736.093333pt;}
.y15c{bottom:736.253333pt;}
.y97{bottom:737.693333pt;}
.y13b{bottom:740.253333pt;}
.ye9{bottom:745.053333pt;}
.y114{bottom:747.133333pt;}
.y44{bottom:750.333333pt;}
.yc4{bottom:750.653333pt;}
.y18{bottom:751.453333pt;}
.y182{bottom:757.253333pt;}
.y6c{bottom:758.853333pt;}
.y96{bottom:759.173333pt;}
.y13a{bottom:761.733333pt;}
.y113{bottom:766.853333pt;}
.y43{bottom:771.973333pt;}
.yc3{bottom:772.133333pt;}
.y17{bottom:774.693333pt;}
.y181{bottom:778.693333pt;}
.y95{bottom:780.613333pt;}
.y6b{bottom:781.573333pt;}
.y139{bottom:784.613333pt;}
.y15b{bottom:786.693333pt;}
.y42{bottom:793.413333pt;}
.y112{bottom:794.053333pt;}
.yc2{bottom:795.013333pt;}
.ye8{bottom:795.493333pt;}
.y16{bottom:797.893333pt;}
.y180{bottom:800.133333pt;}
.y94{bottom:802.053333pt;}
.y6a{bottom:804.453333pt;}
.y138{bottom:805.253333pt;}
.yc1{bottom:812.933333pt;}
.y41{bottom:814.853333pt;}
.y15a{bottom:815.333333pt;}
.y111{bottom:817.093333pt;}
.y15{bottom:821.093333pt;}
.y17f{bottom:823.333333pt;}
.ye5{bottom:823.973333pt;}
.y93{bottom:824.453333pt;}
.y69{bottom:827.173333pt;}
.y137{bottom:827.333333pt;}
.yc0{bottom:834.373333pt;}
.y40{bottom:836.293333pt;}
.y110{bottom:841.253333pt;}
.y159{bottom:843.813333pt;}
.y14{bottom:844.133333pt;}
.y92{bottom:847.333333pt;}
.y17e{bottom:847.493333pt;}
.y68{bottom:850.053333pt;}
.y136{bottom:852.773333pt;}
.ybf{bottom:857.253333pt;}
.y3f{bottom:857.733333pt;}
.y10f{bottom:866.053333pt;}
.y13{bottom:867.333333pt;}
.y17d{bottom:869.573333pt;}
.y91{bottom:871.653333pt;}
.y67{bottom:872.773333pt;}
.ybe{bottom:875.173333pt;}
.y135{bottom:875.333333pt;}
.ye4{bottom:877.253333pt;}
.y3e{bottom:879.173333pt;}
.y10e{bottom:887.973333pt;}
.y12{bottom:890.533333pt;}
.y90{bottom:893.573333pt;}
.y158{bottom:894.213333pt;}
.y17c{bottom:895.013333pt;}
.y66{bottom:895.493333pt;}
.ybd{bottom:897.733333pt;}
.y134{bottom:898.053333pt;}
.y3d{bottom:900.773333pt;}
.y10d{bottom:913.413333pt;}
.y11{bottom:913.733333pt;}
.y17b{bottom:916.453333pt;}
.y8f{bottom:919.013333pt;}
.ybc{bottom:919.493333pt;}
.y133{bottom:919.813333pt;}
.y65{bottom:919.973333pt;}
.y3c{bottom:922.213333pt;}
.y157{bottom:927.173333pt;}
.ye3{bottom:927.493333pt;}
.y10c{bottom:935.013333pt;}
.y10{bottom:936.773333pt;}
.y17a{bottom:938.053333pt;}
.y64{bottom:939.653333pt;}
.y8e{bottom:940.453333pt;}
.ybb{bottom:942.373333pt;}
.y132{bottom:942.693333pt;}
.y3b{bottom:943.653333pt;}
.y156{bottom:949.253333pt;}
.y10b{bottom:956.453333pt;}
.y179{bottom:959.493333pt;}
.yf{bottom:959.973333pt;}
.yba{bottom:960.293333pt;}
.ye2{bottom:960.453333pt;}
.y8d{bottom:961.893333pt;}
.y131{bottom:962.533333pt;}
.y3a{bottom:965.093333pt;}
.y155{bottom:977.253333pt;}
.y10a{bottom:978.853333pt;}
.y178{bottom:980.933333pt;}
.ye1{bottom:982.533333pt;}
.yb9{bottom:982.693333pt;}
.ye{bottom:983.173333pt;}
.y8c{bottom:983.493333pt;}
.y130{bottom:985.093333pt;}
.y39{bottom:986.533333pt;}
.y154{bottom:1001.893333pt;}
.y177{bottom:1002.373333pt;}
.y109{bottom:1003.493333pt;}
.y8b{bottom:1004.960000pt;}
.yb8{bottom:1005.920000pt;}
.yd{bottom:1006.400000pt;}
.y12f{bottom:1007.840000pt;}
.y38{bottom:1008.000000pt;}
.y108{bottom:1025.600000pt;}
.yb7{bottom:1026.720000pt;}
.y8a{bottom:1029.120000pt;}
.yc{bottom:1029.600000pt;}
.y12e{bottom:1031.200000pt;}
.ya{bottom:1047.040000pt;}
.y8{bottom:1079.200000pt;}
.y1{bottom:1108.640000pt;}
.h3{height:19.360000pt;}
.ha{height:21.440000pt;}
.hb{height:21.600000pt;}
.h11{height:23.040000pt;}
.h17{height:23.200000pt;}
.h19{height:24.480000pt;}
.h14{height:24.640000pt;}
.h7{height:26.240000pt;}
.h5{height:30.720000pt;}
.h15{height:46.240000pt;}
.h12{height:46.400000pt;}
.h16{height:46.432000pt;}
.hf{height:47.437500pt;}
.h13{height:49.120000pt;}
.h18{height:49.280000pt;}
.h9{height:52.284375pt;}
.h8{height:52.832812pt;}
.he{height:56.639779pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h10{height:68.335313pt;}
.hc{height:71.296875pt;}
.hd{height:76.671562pt;}
.h6{height:90.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.160000pt;}
.wf{width:99.552000pt;}
.w6{width:101.632000pt;}
.w9{width:168.666667pt;}
.wc{width:186.426667pt;}
.wb{width:232.666667pt;}
.w7{width:236.346667pt;}
.w8{width:238.946667pt;}
.we{width:241.466667pt;}
.wd{width:244.386667pt;}
.wa{width:271.266667pt;}
.w10{width:274.426667pt;}
.w11{width:298.266667pt;}
.w5{width:497.853333pt;}
.w4{width:619.813308pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:0.960000pt;}
.x23{left:8.960000pt;}
.x1f{left:14.786667pt;}
.x12{left:17.440000pt;}
.x6{left:18.466667pt;}
.x20{left:40.992000pt;}
.x1b{left:43.552000pt;}
.x1{left:56.799988pt;}
.x11{left:58.720000pt;}
.x1e{left:67.040000pt;}
.x14{left:68.160000pt;}
.x1a{left:76.959988pt;}
.xf{left:80.799988pt;}
.x7{left:86.111975pt;}
.x25{left:87.840000pt;}
.x9{left:96.800000pt;}
.x10{left:104.831988pt;}
.x18{left:114.591988pt;}
.x17{left:128.831988pt;}
.xd{left:135.386655pt;}
.x24{left:160.346667pt;}
.x13{left:162.266667pt;}
.xa{left:185.466655pt;}
.x1c{left:229.306667pt;}
.x21{left:247.226667pt;}
.xb{left:266.626655pt;}
.xc{left:276.226655pt;}
.x8{left:295.906667pt;}
.x5{left:355.680000pt;}
.x3{left:378.146655pt;}
.xe{left:397.026655pt;}
.x15{left:400.706667pt;}
.x4{left:408.066655pt;}
.x26{left:436.893333pt;}
.x22{left:493.693333pt;}
.x1d{left:502.493333pt;}
.x19{left:737.253322pt;}
.x2{left:775.173322pt;}
}




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