
    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_d05e45887f4c2594a4209267.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_df014441fc475da0a9389fc7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5bd8d68b810b2eea0c83e877.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_64efb137f1cd2b54d3610ef5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dd95f3c85d719ee7cab8ca15.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_acd09494df2476aeec8274d8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a19e181cc547e1251160438e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_a5373bbd0cbb3398efe43389.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_c2b70d5901d62435b9f7d597.woff')format("woff");}.ffd{font-family:ffd;line-height:0.884766;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_97845ad7f6890bd7ba52336b.woff')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_815a81ee19b1114b15456cbe.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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_e1ab887ff94a82785a01db71.woff')format("woff");}.ff10{font-family:ff10;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.190200px;}
.ls11{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.114000px;}
.ls9{letter-spacing:-0.017280px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.ls15{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lse{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls14{letter-spacing:6.761280px;}
.ls13{letter-spacing:6.785280px;}
.lsb{letter-spacing:39.881280px;}
.ls12{letter-spacing:39.905280px;}
.sc_{text-shadow:none;}
.sc1{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);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.407600px;}
.wsb{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.wse{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._7{width:2.653920px;}
._6{width:3.775680px;}
._2{width:5.696640px;}
._5{width:7.118640px;}
._4{width:8.218080px;}
._3{width:9.273600px;}
._a{width:10.832400px;}
._29{width:11.923200px;}
._15{width:13.177440px;}
._24{width:14.254560px;}
._17{width:15.265440px;}
._18{width:17.791920px;}
._d{width:19.010880px;}
._1f{width:20.106000px;}
._8{width:21.130560px;}
._9{width:22.256640px;}
._c{width:23.382720px;}
._1a{width:25.104960px;}
._16{width:26.297280px;}
._3a{width:27.887040px;}
._25{width:29.512080px;}
._22{width:31.000320px;}
._23{width:32.828880px;}
._3d{width:34.044480px;}
._27{width:35.637120px;}
._e{width:36.961920px;}
._28{width:38.485440px;}
._3c{width:39.582720px;}
._12{width:40.721040px;}
._38{width:42.592320px;}
._b{width:44.049600px;}
._13{width:45.506880px;}
._14{width:46.668240px;}
._31{width:48.553920px;}
._4e{width:49.582800px;}
._2d{width:50.673600px;}
._1b{width:52.462080px;}
._10{width:53.518800px;}
._f{width:54.780480px;}
._2f{width:55.809360px;}
._40{width:57.165120px;}
._2c{width:59.284800px;}
._19{width:60.675840px;}
._3b{width:62.464320px;}
._3f{width:63.921600px;}
._39{width:65.312640px;}
._35{width:67.335120px;}
._47{width:69.647760px;}
._2e{width:71.009280px;}
._33{width:72.028560px;}
._48{width:73.592640px;}
._2b{width:75.579840px;}
._20{width:76.904640px;}
._21{width:77.964480px;}
._26{width:81.210240px;}
._41{width:83.661120px;}
._52{width:84.822480px;}
._2a{width:86.677200px;}
._32{width:89.260560px;}
._56{width:94.647600px;}
._45{width:95.818320px;}
._46{width:97.105680px;}
._4a{width:99.426240px;}
._44{width:109.106640px;}
._42{width:110.819520px;}
._34{width:112.210560px;}
._4d{width:114.564240px;}
._36{width:117.973440px;}
._37{width:119.099520px;}
._43{width:131.817600px;}
._5a{width:151.090560px;}
._1e{width:152.893440px;}
._11{width:156.591360px;}
._49{width:168.748560px;}
._55{width:169.860960px;}
._57{width:186.420960px;}
._1c{width:189.617520px;}
._1d{width:197.647200px;}
._30{width:199.416000px;}
._4b{width:204.350400px;}
._4c{width:205.493040px;}
._50{width:217.399680px;}
._51{width:218.592000px;}
._59{width:270.435600px;}
._54{width:600.531840px;}
._58{width:677.940480px;}
._4f{width:718.673040px;}
._53{width:795.343680px;}
._3e{width:1445.340000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y9c{bottom:3.600000px;}
.y9a{bottom:3.780000px;}
.ya0{bottom:3.960000px;}
.y9e{bottom:4.140000px;}
.y14e{bottom:4.170000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ydd{bottom:13.140000px;}
.ye4{bottom:13.500000px;}
.ye9{bottom:13.680000px;}
.y13d{bottom:22.500000px;}
.ydb{bottom:22.680000px;}
.ye{bottom:22.860000px;}
.ye3{bottom:23.040000px;}
.y146{bottom:23.085000px;}
.y15{bottom:26.505000px;}
.ydc{bottom:32.220000px;}
.ye6{bottom:32.400000px;}
.ye0{bottom:32.580000px;}
.y5{bottom:33.120000px;}
.yde{bottom:41.580000px;}
.ye2{bottom:41.940000px;}
.yf8{bottom:41.970000px;}
.ye8{bottom:42.120000px;}
.y14{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.yfa{bottom:51.510000px;}
.yeb{bottom:60.840000px;}
.yf6{bottom:60.870000px;}
.yf3{bottom:60.885000px;}
.ye1{bottom:61.020000px;}
.yf9{bottom:70.410000px;}
.y13{bottom:70.605000px;}
.y3d{bottom:75.240000px;}
.yee{bottom:79.950000px;}
.yf2{bottom:79.965000px;}
.y12{bottom:93.285000px;}
.yed{bottom:98.850000px;}
.y169{bottom:112.500000px;}
.y12f{bottom:115.560000px;}
.y13b{bottom:115.920000px;}
.yf7{bottom:117.930000px;}
.yc7{bottom:121.500000px;}
.y3a{bottom:123.120000px;}
.y118{bottom:124.740000px;}
.y88{bottom:126.720000px;}
.y98{bottom:128.520000px;}
.y75{bottom:133.740000px;}
.yd9{bottom:133.920000px;}
.y68{bottom:134.100000px;}
.y168{bottom:137.160000px;}
.y12e{bottom:140.220000px;}
.y13a{bottom:140.580000px;}
.yc6{bottom:146.160000px;}
.y38{bottom:147.780000px;}
.y117{bottom:149.400000px;}
.y87{bottom:151.380000px;}
.y97{bottom:153.180000px;}
.y74{bottom:158.400000px;}
.yd8{bottom:158.580000px;}
.y67{bottom:158.760000px;}
.y167{bottom:161.820000px;}
.y12d{bottom:164.880000px;}
.y139{bottom:165.240000px;}
.yc5{bottom:170.460000px;}
.yca{bottom:170.820000px;}
.y37{bottom:172.440000px;}
.yf5{bottom:174.240000px;}
.y116{bottom:174.420000px;}
.y86{bottom:176.040000px;}
.y96{bottom:177.840000px;}
.y73{bottom:183.060000px;}
.y66{bottom:183.420000px;}
.y166{bottom:186.480000px;}
.y12c{bottom:189.540000px;}
.y138{bottom:189.900000px;}
.yc4{bottom:195.120000px;}
.yc9{bottom:195.480000px;}
.y36{bottom:197.100000px;}
.y113{bottom:198.720000px;}
.y85{bottom:200.700000px;}
.y95{bottom:202.500000px;}
.y72{bottom:207.750000px;}
.y65{bottom:208.110000px;}
.y165{bottom:211.170000px;}
.y12b{bottom:214.230000px;}
.y137{bottom:214.590000px;}
.yc3{bottom:219.810000px;}
.yc8{bottom:220.170000px;}
.y35{bottom:221.790000px;}
.y112{bottom:223.770000px;}
.y84{bottom:225.390000px;}
.y94{bottom:227.190000px;}
.y71{bottom:232.410000px;}
.y64{bottom:232.770000px;}
.y164{bottom:235.830000px;}
.y12a{bottom:238.890000px;}
.y136{bottom:239.250000px;}
.yc2{bottom:244.830000px;}
.y34{bottom:246.450000px;}
.y111{bottom:248.430000px;}
.y83{bottom:250.050000px;}
.y93{bottom:251.850000px;}
.y63{bottom:257.430000px;}
.y163{bottom:260.490000px;}
.y129{bottom:263.550000px;}
.y135{bottom:263.910000px;}
.yc1{bottom:269.490000px;}
.y33{bottom:271.110000px;}
.y110{bottom:273.090000px;}
.y82{bottom:274.710000px;}
.y92{bottom:276.510000px;}
.y62{bottom:282.090000px;}
.y162{bottom:285.150000px;}
.y128{bottom:288.390000px;}
.y134{bottom:288.750000px;}
.yc0{bottom:294.150000px;}
.y32{bottom:295.770000px;}
.y10f{bottom:297.750000px;}
.y91{bottom:301.170000px;}
.y61{bottom:306.390000px;}
.y6a{bottom:306.750000px;}
.yf4{bottom:307.830000px;}
.y161{bottom:309.810000px;}
.y127{bottom:313.050000px;}
.y133{bottom:313.410000px;}
.ybf{bottom:318.810000px;}
.y31{bottom:320.430000px;}
.y10e{bottom:322.410000px;}
.y90{bottom:325.830000px;}
.y60{bottom:331.050000px;}
.y69{bottom:331.410000px;}
.y160{bottom:334.470000px;}
.y126{bottom:337.710000px;}
.y132{bottom:338.070000px;}
.ybe{bottom:343.470000px;}
.y30{bottom:345.090000px;}
.y10d{bottom:347.070000px;}
.y8f{bottom:350.490000px;}
.y5f{bottom:356.070000px;}
.y15f{bottom:359.130000px;}
.y125{bottom:362.370000px;}
.y131{bottom:362.730000px;}
.ybd{bottom:368.130000px;}
.y2f{bottom:369.750000px;}
.y10c{bottom:371.730000px;}
.y8e{bottom:375.150000px;}
.y5e{bottom:380.730000px;}
.y15e{bottom:383.790000px;}
.yf1{bottom:384.510000px;}
.y124{bottom:387.390000px;}
.ybc{bottom:392.790000px;}
.y2e{bottom:394.410000px;}
.y10b{bottom:396.390000px;}
.y8d{bottom:399.810000px;}
.y5d{bottom:405.390000px;}
.y15d{bottom:408.450000px;}
.y123{bottom:412.050000px;}
.ybb{bottom:417.450000px;}
.y2d{bottom:419.070000px;}
.y115{bottom:420.690000px;}
.y10a{bottom:421.050000px;}
.y8c{bottom:424.470000px;}
.y5c{bottom:430.050000px;}
.y15c{bottom:433.110000px;}
.y122{bottom:436.710000px;}
.yba{bottom:442.155000px;}
.y2c{bottom:443.775000px;}
.y114{bottom:445.395000px;}
.y109{bottom:445.755000px;}
.y8b{bottom:449.175000px;}
.y5b{bottom:454.755000px;}
.y15b{bottom:457.815000px;}
.y121{bottom:461.415000px;}
.yb9{bottom:466.815000px;}
.y2b{bottom:468.435000px;}
.y108{bottom:470.595000px;}
.y8a{bottom:473.835000px;}
.y5a{bottom:479.595000px;}
.yf0{bottom:480.135000px;}
.y15a{bottom:482.475000px;}
.y120{bottom:486.075000px;}
.y107{bottom:486.255000px;}
.yb8{bottom:491.475000px;}
.y2a{bottom:493.275000px;}
.y81{bottom:498.135000px;}
.y89{bottom:498.495000px;}
.y59{bottom:504.255000px;}
.y106{bottom:505.875000px;}
.yd5{bottom:507.135000px;}
.y11f{bottom:510.735000px;}
.y29{bottom:517.935000px;}
.y80{bottom:523.155000px;}
.y105{bottom:525.675000px;}
.yd4{bottom:526.935000px;}
.y58{bottom:528.915000px;}
.y159{bottom:531.795000px;}
.y11e{bottom:535.395000px;}
.yef{bottom:537.735000px;}
.y28{bottom:542.595000px;}
.y104{bottom:545.295000px;}
.yd3{bottom:546.555000px;}
.y7f{bottom:547.815000px;}
.y57{bottom:553.575000px;}
.y158{bottom:556.455000px;}
.y11d{bottom:560.055000px;}
.y103{bottom:565.095000px;}
.yd2{bottom:566.355000px;}
.y27{bottom:567.255000px;}
.y7e{bottom:572.655000px;}
.y56{bottom:578.235000px;}
.y157{bottom:581.115000px;}
.y11c{bottom:584.715000px;}
.y102{bottom:584.895000px;}
.yd1{bottom:585.975000px;}
.y26{bottom:591.915000px;}
.y7d{bottom:597.315000px;}
.y55{bottom:602.895000px;}
.y101{bottom:604.515000px;}
.y16c{bottom:605.415000px;}
.yd0{bottom:605.775000px;}
.y11b{bottom:609.375000px;}
.yec{bottom:614.415000px;}
.y25{bottom:616.215000px;}
.y39{bottom:616.575000px;}
.y7c{bottom:621.975000px;}
.y100{bottom:624.315000px;}
.ycf{bottom:625.575000px;}
.y54{bottom:627.555000px;}
.y16b{bottom:630.075000px;}
.y156{bottom:630.435000px;}
.y130{bottom:633.675000px;}
.y11a{bottom:634.035000px;}
.y24{bottom:640.875000px;}
.yff{bottom:643.935000px;}
.yce{bottom:645.195000px;}
.y7b{bottom:646.635000px;}
.y53{bottom:652.215000px;}
.y155{bottom:655.095000px;}
.y119{bottom:658.695000px;}
.y23{bottom:664.815000px;}
.ycd{bottom:664.995000px;}
.y7a{bottom:671.295000px;}
.y14d{bottom:674.355000px;}
.y52{bottom:676.905000px;}
.y154{bottom:679.785000px;}
.yfe{bottom:682.665000px;}
.ycc{bottom:684.645000px;}
.y22{bottom:691.665000px;}
.y14c{bottom:694.185000px;}
.y79{bottom:695.985000px;}
.y51{bottom:701.565000px;}
.yfd{bottom:702.465000px;}
.ycb{bottom:704.445000px;}
.y153{bottom:704.625000px;}
.y21{bottom:713.445000px;}
.y78{bottom:720.645000px;}
.y50{bottom:726.225000px;}
.y152{bottom:728.925000px;}
.yea{bottom:729.105000px;}
.y16a{bottom:729.285000px;}
.y14b{bottom:732.885000px;}
.yb7{bottom:733.605000px;}
.y20{bottom:735.225000px;}
.y77{bottom:744.945000px;}
.yfc{bottom:750.525000px;}
.y4f{bottom:750.885000px;}
.y151{bottom:753.585000px;}
.y1f{bottom:757.005000px;}
.yb6{bottom:758.625000px;}
.y76{bottom:769.605000px;}
.y14a{bottom:771.585000px;}
.y4e{bottom:775.545000px;}
.y150{bottom:778.245000px;}
.y1e{bottom:778.965000px;}
.yb5{bottom:783.285000px;}
.yaf{bottom:785.625000px;}
.y149{bottom:791.205000px;}
.y14f{bottom:799.305000px;}
.y4d{bottom:800.205000px;}
.y1d{bottom:800.745000px;}
.yae{bottom:805.245000px;}
.ye7{bottom:805.605000px;}
.yb4{bottom:807.945000px;}
.y1c{bottom:822.525000px;}
.y6d{bottom:824.505000px;}
.y4c{bottom:824.865000px;}
.yad{bottom:825.045000px;}
.y148{bottom:829.905000px;}
.yb3{bottom:832.605000px;}
.y1b{bottom:844.305000px;}
.yac{bottom:844.845000px;}
.y70{bottom:849.165000px;}
.y4b{bottom:849.525000px;}
.y147{bottom:849.705000px;}
.yb2{bottom:857.265000px;}
.ye5{bottom:863.385000px;}
.yab{bottom:864.465000px;}
.y1a{bottom:866.085000px;}
.y6f{bottom:873.825000px;}
.y4a{bottom:874.185000px;}
.yb1{bottom:881.925000px;}
.yaa{bottom:884.265000px;}
.y19{bottom:887.685000px;}
.y145{bottom:888.405000px;}
.y6e{bottom:898.485000px;}
.y49{bottom:898.845000px;}
.yb0{bottom:902.625000px;}
.y17{bottom:902.985000px;}
.ya9{bottom:903.885000px;}
.y11{bottom:910.185000px;}
.y16{bottom:914.012205px;}
.ydf{bottom:921.030000px;}
.y48{bottom:923.550000px;}
.ya8{bottom:923.730000px;}
.y144{bottom:927.150000px;}
.ya7{bottom:943.530000px;}
.y47{bottom:948.210000px;}
.ya6{bottom:963.150000px;}
.y143{bottom:965.850000px;}
.y46{bottom:972.870000px;}
.ya5{bottom:982.950000px;}
.y45{bottom:997.530000px;}
.yda{bottom:997.710000px;}
.ya4{bottom:1002.570000px;}
.y142{bottom:1004.550000px;}
.y44{bottom:1022.190000px;}
.ya3{bottom:1022.370000px;}
.y141{bottom:1024.170000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.ya2{bottom:1041.990000px;}
.y140{bottom:1043.970000px;}
.y43{bottom:1046.850000px;}
.ya1{bottom:1061.790000px;}
.y13f{bottom:1063.590000px;}
.yd7{bottom:1071.150000px;}
.y42{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9f{bottom:1081.590000px;}
.y9{bottom:1081.950000px;}
.y13e{bottom:1083.390000px;}
.yd6{bottom:1095.810000px;}
.y41{bottom:1096.170000px;}
.y9d{bottom:1101.210000px;}
.y13c{bottom:1103.190000px;}
.y2{bottom:1106.250000px;}
.yfb{bottom:1120.470000px;}
.y40{bottom:1120.830000px;}
.y9b{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y99{bottom:1140.630000px;}
.y6c{bottom:1145.130000px;}
.y3f{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y6b{bottom:1169.820000px;}
.y3e{bottom:1170.180000px;}
.y3c{bottom:1187.280000px;}
.y3b{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h2d{height:18.885000px;}
.h20{height:18.900000px;}
.h22{height:18.936000px;}
.h11{height:19.008000px;}
.h2e{height:19.065000px;}
.h21{height:19.080000px;}
.h1f{height:19.116000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1b{height:30.480469px;}
.h2f{height:37.800000px;}
.h2b{height:37.980000px;}
.h2c{height:38.010000px;}
.h30{height:38.016000px;}
.he{height:41.025000px;}
.h1d{height:46.251562px;}
.h5{height:52.920000px;}
.h31{height:54.596250px;}
.h9{height:56.084062px;}
.h23{height:56.880000px;}
.h25{height:56.916000px;}
.h26{height:57.060000px;}
.h1c{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h1a{height:65.010937px;}
.h19{height:66.757500px;}
.h14{height:67.803750px;}
.h1e{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h27{height:75.780000px;}
.h24{height:75.960000px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h29{height:94.896000px;}
.h3{height:103.530000px;}
.h28{height:113.796000px;}
.h12{height:119.002500px;}
.h2a{height:132.876000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:46.620000px;}
.w1d{width:50.580000px;}
.w11{width:51.120000px;}
.w15{width:60.660000px;}
.w21{width:70.200000px;}
.w18{width:71.269500px;}
.w17{width:74.016000px;}
.w1a{width:75.780000px;}
.w1f{width:80.640000px;}
.wc{width:85.680000px;}
.w20{width:93.096000px;}
.w8{width:94.680000px;}
.w14{width:96.156000px;}
.w19{width:108.021000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w10{width:109.260000px;}
.w1b{width:114.156000px;}
.wf{width:114.876000px;}
.wa{width:116.640000px;}
.we{width:132.876000px;}
.w13{width:152.850000px;}
.wd{width:165.810000px;}
.w12{width:217.110000px;}
.w1c{width:249.315000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w1e{width:312.555000px;}
.w9{width:371.805000px;}
.w3{width:553.590000px;}
.wb{width:583.845000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x3b{left:12.780000px;}
.x38{left:16.200000px;}
.x3c{left:19.440000px;}
.x10{left:20.685000px;}
.x3d{left:23.220000px;}
.x35{left:24.300000px;}
.x36{left:27.180000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x33{left:50.760000px;}
.x9{left:53.265000px;}
.x13{left:56.503500px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x31{left:93.780000px;}
.xd{left:95.925000px;}
.x2f{left:100.296000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x42{left:118.656000px;}
.x1c{left:123.516000px;}
.x1e{left:135.036000px;}
.x3f{left:136.666500px;}
.x22{left:139.176000px;}
.x4a{left:140.436000px;}
.x2b{left:141.516000px;}
.x1d{left:150.510000px;}
.x30{left:152.130000px;}
.x24{left:154.650000px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x16{left:192.088500px;}
.x6{left:209.010000px;}
.x2a{left:213.510000px;}
.x41{left:218.010000px;}
.x2c{left:227.550000px;}
.x15{left:236.008500px;}
.x25{left:249.690000px;}
.x14{left:254.728500px;}
.x29{left:257.610000px;}
.x20{left:263.010000px;}
.x27{left:265.575000px;}
.x3e{left:316.515000px;}
.x17{left:325.505608px;}
.x12{left:335.578500px;}
.x32{left:369.615000px;}
.x2d{left:393.735000px;}
.x21{left:435.855000px;}
.xa{left:445.620000px;}
.x1f{left:448.305000px;}
.x43{left:464.145000px;}
.x1b{left:473.505000px;}
.x48{left:488.985000px;}
.x40{left:507.360000px;}
.x49{left:515.985000px;}
.x34{left:522.825000px;}
.x1a{left:527.505000px;}
.x44{left:545.145000px;}
.x37{left:619.350000px;}
.x26{left:621.870000px;}
.x23{left:631.050000px;}
.x45{left:638.610000px;}
.x2e{left:642.390000px;}
.x39{left:680.370000px;}
.x47{left:696.390000px;}
.x28{left:706.110000px;}
.x46{left:709.170000px;}
.x7{left:722.490000px;}
.x3a{left:727.350000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls11{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls9{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lse{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls14{letter-spacing:6.010027pt;}
.ls13{letter-spacing:6.031360pt;}
.lsb{letter-spacing:35.450027pt;}
.ls12{letter-spacing:35.471360pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.584533pt;}
.wsb{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.wse{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._7{width:2.359040pt;}
._6{width:3.356160pt;}
._2{width:5.063680pt;}
._5{width:6.327680pt;}
._4{width:7.304960pt;}
._3{width:8.243200pt;}
._a{width:9.628800pt;}
._29{width:10.598400pt;}
._15{width:11.713280pt;}
._24{width:12.670720pt;}
._17{width:13.569280pt;}
._18{width:15.815040pt;}
._d{width:16.898560pt;}
._1f{width:17.872000pt;}
._8{width:18.782720pt;}
._9{width:19.783680pt;}
._c{width:20.784640pt;}
._1a{width:22.315520pt;}
._16{width:23.375360pt;}
._3a{width:24.788480pt;}
._25{width:26.232960pt;}
._22{width:27.555840pt;}
._23{width:29.181227pt;}
._3d{width:30.261760pt;}
._27{width:31.677440pt;}
._e{width:32.855040pt;}
._28{width:34.209280pt;}
._3c{width:35.184640pt;}
._12{width:36.196480pt;}
._38{width:37.859840pt;}
._b{width:39.155200pt;}
._13{width:40.450560pt;}
._14{width:41.482880pt;}
._31{width:43.159040pt;}
._4e{width:44.073600pt;}
._2d{width:45.043200pt;}
._1b{width:46.632960pt;}
._10{width:47.572267pt;}
._f{width:48.693760pt;}
._2f{width:49.608320pt;}
._40{width:50.813440pt;}
._2c{width:52.697600pt;}
._19{width:53.934080pt;}
._3b{width:55.523840pt;}
._3f{width:56.819200pt;}
._39{width:58.055680pt;}
._35{width:59.853440pt;}
._47{width:61.909120pt;}
._2e{width:63.119360pt;}
._33{width:64.025387pt;}
._48{width:65.415680pt;}
._2b{width:67.182080pt;}
._20{width:68.359680pt;}
._21{width:69.301760pt;}
._26{width:72.186880pt;}
._41{width:74.365440pt;}
._52{width:75.397760pt;}
._2a{width:77.046400pt;}
._32{width:79.342720pt;}
._56{width:84.131200pt;}
._45{width:85.171840pt;}
._46{width:86.316160pt;}
._4a{width:88.378880pt;}
._44{width:96.983680pt;}
._42{width:98.506240pt;}
._34{width:99.742720pt;}
._4d{width:101.834880pt;}
._36{width:104.865280pt;}
._37{width:105.866240pt;}
._43{width:117.171200pt;}
._5a{width:134.302720pt;}
._1e{width:135.905280pt;}
._11{width:139.192320pt;}
._49{width:149.998720pt;}
._55{width:150.987520pt;}
._57{width:165.707520pt;}
._1c{width:168.548907pt;}
._1d{width:175.686400pt;}
._30{width:177.258667pt;}
._4b{width:181.644800pt;}
._4c{width:182.660480pt;}
._50{width:193.244160pt;}
._51{width:194.304000pt;}
._59{width:240.387200pt;}
._54{width:533.806080pt;}
._58{width:602.613760pt;}
._4f{width:638.820480pt;}
._53{width:706.972160pt;}
._3e{width:1284.746667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y9c{bottom:3.200000pt;}
.y9a{bottom:3.360000pt;}
.ya0{bottom:3.520000pt;}
.y9e{bottom:3.680000pt;}
.y14e{bottom:3.706667pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ydd{bottom:11.680000pt;}
.ye4{bottom:12.000000pt;}
.ye9{bottom:12.160000pt;}
.y13d{bottom:20.000000pt;}
.ydb{bottom:20.160000pt;}
.ye{bottom:20.320000pt;}
.ye3{bottom:20.480000pt;}
.y146{bottom:20.520000pt;}
.y15{bottom:23.560000pt;}
.ydc{bottom:28.640000pt;}
.ye6{bottom:28.800000pt;}
.ye0{bottom:28.960000pt;}
.y5{bottom:29.440000pt;}
.yde{bottom:36.960000pt;}
.ye2{bottom:37.280000pt;}
.yf8{bottom:37.306667pt;}
.ye8{bottom:37.440000pt;}
.y14{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.yfa{bottom:45.786667pt;}
.yeb{bottom:54.080000pt;}
.yf6{bottom:54.106667pt;}
.yf3{bottom:54.120000pt;}
.ye1{bottom:54.240000pt;}
.yf9{bottom:62.586667pt;}
.y13{bottom:62.760000pt;}
.y3d{bottom:66.880000pt;}
.yee{bottom:71.066667pt;}
.yf2{bottom:71.080000pt;}
.y12{bottom:82.920000pt;}
.yed{bottom:87.866667pt;}
.y169{bottom:100.000000pt;}
.y12f{bottom:102.720000pt;}
.y13b{bottom:103.040000pt;}
.yf7{bottom:104.826667pt;}
.yc7{bottom:108.000000pt;}
.y3a{bottom:109.440000pt;}
.y118{bottom:110.880000pt;}
.y88{bottom:112.640000pt;}
.y98{bottom:114.240000pt;}
.y75{bottom:118.880000pt;}
.yd9{bottom:119.040000pt;}
.y68{bottom:119.200000pt;}
.y168{bottom:121.920000pt;}
.y12e{bottom:124.640000pt;}
.y13a{bottom:124.960000pt;}
.yc6{bottom:129.920000pt;}
.y38{bottom:131.360000pt;}
.y117{bottom:132.800000pt;}
.y87{bottom:134.560000pt;}
.y97{bottom:136.160000pt;}
.y74{bottom:140.800000pt;}
.yd8{bottom:140.960000pt;}
.y67{bottom:141.120000pt;}
.y167{bottom:143.840000pt;}
.y12d{bottom:146.560000pt;}
.y139{bottom:146.880000pt;}
.yc5{bottom:151.520000pt;}
.yca{bottom:151.840000pt;}
.y37{bottom:153.280000pt;}
.yf5{bottom:154.880000pt;}
.y116{bottom:155.040000pt;}
.y86{bottom:156.480000pt;}
.y96{bottom:158.080000pt;}
.y73{bottom:162.720000pt;}
.y66{bottom:163.040000pt;}
.y166{bottom:165.760000pt;}
.y12c{bottom:168.480000pt;}
.y138{bottom:168.800000pt;}
.yc4{bottom:173.440000pt;}
.yc9{bottom:173.760000pt;}
.y36{bottom:175.200000pt;}
.y113{bottom:176.640000pt;}
.y85{bottom:178.400000pt;}
.y95{bottom:180.000000pt;}
.y72{bottom:184.666667pt;}
.y65{bottom:184.986667pt;}
.y165{bottom:187.706667pt;}
.y12b{bottom:190.426667pt;}
.y137{bottom:190.746667pt;}
.yc3{bottom:195.386667pt;}
.yc8{bottom:195.706667pt;}
.y35{bottom:197.146667pt;}
.y112{bottom:198.906667pt;}
.y84{bottom:200.346667pt;}
.y94{bottom:201.946667pt;}
.y71{bottom:206.586667pt;}
.y64{bottom:206.906667pt;}
.y164{bottom:209.626667pt;}
.y12a{bottom:212.346667pt;}
.y136{bottom:212.666667pt;}
.yc2{bottom:217.626667pt;}
.y34{bottom:219.066667pt;}
.y111{bottom:220.826667pt;}
.y83{bottom:222.266667pt;}
.y93{bottom:223.866667pt;}
.y63{bottom:228.826667pt;}
.y163{bottom:231.546667pt;}
.y129{bottom:234.266667pt;}
.y135{bottom:234.586667pt;}
.yc1{bottom:239.546667pt;}
.y33{bottom:240.986667pt;}
.y110{bottom:242.746667pt;}
.y82{bottom:244.186667pt;}
.y92{bottom:245.786667pt;}
.y62{bottom:250.746667pt;}
.y162{bottom:253.466667pt;}
.y128{bottom:256.346667pt;}
.y134{bottom:256.666667pt;}
.yc0{bottom:261.466667pt;}
.y32{bottom:262.906667pt;}
.y10f{bottom:264.666667pt;}
.y91{bottom:267.706667pt;}
.y61{bottom:272.346667pt;}
.y6a{bottom:272.666667pt;}
.yf4{bottom:273.626667pt;}
.y161{bottom:275.386667pt;}
.y127{bottom:278.266667pt;}
.y133{bottom:278.586667pt;}
.ybf{bottom:283.386667pt;}
.y31{bottom:284.826667pt;}
.y10e{bottom:286.586667pt;}
.y90{bottom:289.626667pt;}
.y60{bottom:294.266667pt;}
.y69{bottom:294.586667pt;}
.y160{bottom:297.306667pt;}
.y126{bottom:300.186667pt;}
.y132{bottom:300.506667pt;}
.ybe{bottom:305.306667pt;}
.y30{bottom:306.746667pt;}
.y10d{bottom:308.506667pt;}
.y8f{bottom:311.546667pt;}
.y5f{bottom:316.506667pt;}
.y15f{bottom:319.226667pt;}
.y125{bottom:322.106667pt;}
.y131{bottom:322.426667pt;}
.ybd{bottom:327.226667pt;}
.y2f{bottom:328.666667pt;}
.y10c{bottom:330.426667pt;}
.y8e{bottom:333.466667pt;}
.y5e{bottom:338.426667pt;}
.y15e{bottom:341.146667pt;}
.yf1{bottom:341.786667pt;}
.y124{bottom:344.346667pt;}
.ybc{bottom:349.146667pt;}
.y2e{bottom:350.586667pt;}
.y10b{bottom:352.346667pt;}
.y8d{bottom:355.386667pt;}
.y5d{bottom:360.346667pt;}
.y15d{bottom:363.066667pt;}
.y123{bottom:366.266667pt;}
.ybb{bottom:371.066667pt;}
.y2d{bottom:372.506667pt;}
.y115{bottom:373.946667pt;}
.y10a{bottom:374.266667pt;}
.y8c{bottom:377.306667pt;}
.y5c{bottom:382.266667pt;}
.y15c{bottom:384.986667pt;}
.y122{bottom:388.186667pt;}
.yba{bottom:393.026667pt;}
.y2c{bottom:394.466667pt;}
.y114{bottom:395.906667pt;}
.y109{bottom:396.226667pt;}
.y8b{bottom:399.266667pt;}
.y5b{bottom:404.226667pt;}
.y15b{bottom:406.946667pt;}
.y121{bottom:410.146667pt;}
.yb9{bottom:414.946667pt;}
.y2b{bottom:416.386667pt;}
.y108{bottom:418.306667pt;}
.y8a{bottom:421.186667pt;}
.y5a{bottom:426.306667pt;}
.yf0{bottom:426.786667pt;}
.y15a{bottom:428.866667pt;}
.y120{bottom:432.066667pt;}
.y107{bottom:432.226667pt;}
.yb8{bottom:436.866667pt;}
.y2a{bottom:438.466667pt;}
.y81{bottom:442.786667pt;}
.y89{bottom:443.106667pt;}
.y59{bottom:448.226667pt;}
.y106{bottom:449.666667pt;}
.yd5{bottom:450.786667pt;}
.y11f{bottom:453.986667pt;}
.y29{bottom:460.386667pt;}
.y80{bottom:465.026667pt;}
.y105{bottom:467.266667pt;}
.yd4{bottom:468.386667pt;}
.y58{bottom:470.146667pt;}
.y159{bottom:472.706667pt;}
.y11e{bottom:475.906667pt;}
.yef{bottom:477.986667pt;}
.y28{bottom:482.306667pt;}
.y104{bottom:484.706667pt;}
.yd3{bottom:485.826667pt;}
.y7f{bottom:486.946667pt;}
.y57{bottom:492.066667pt;}
.y158{bottom:494.626667pt;}
.y11d{bottom:497.826667pt;}
.y103{bottom:502.306667pt;}
.yd2{bottom:503.426667pt;}
.y27{bottom:504.226667pt;}
.y7e{bottom:509.026667pt;}
.y56{bottom:513.986667pt;}
.y157{bottom:516.546667pt;}
.y11c{bottom:519.746667pt;}
.y102{bottom:519.906667pt;}
.yd1{bottom:520.866667pt;}
.y26{bottom:526.146667pt;}
.y7d{bottom:530.946667pt;}
.y55{bottom:535.906667pt;}
.y101{bottom:537.346667pt;}
.y16c{bottom:538.146667pt;}
.yd0{bottom:538.466667pt;}
.y11b{bottom:541.666667pt;}
.yec{bottom:546.146667pt;}
.y25{bottom:547.746667pt;}
.y39{bottom:548.066667pt;}
.y7c{bottom:552.866667pt;}
.y100{bottom:554.946667pt;}
.ycf{bottom:556.066667pt;}
.y54{bottom:557.826667pt;}
.y16b{bottom:560.066667pt;}
.y156{bottom:560.386667pt;}
.y130{bottom:563.266667pt;}
.y11a{bottom:563.586667pt;}
.y24{bottom:569.666667pt;}
.yff{bottom:572.386667pt;}
.yce{bottom:573.506667pt;}
.y7b{bottom:574.786667pt;}
.y53{bottom:579.746667pt;}
.y155{bottom:582.306667pt;}
.y119{bottom:585.506667pt;}
.y23{bottom:590.946667pt;}
.ycd{bottom:591.106667pt;}
.y7a{bottom:596.706667pt;}
.y14d{bottom:599.426667pt;}
.y52{bottom:601.693333pt;}
.y154{bottom:604.253333pt;}
.yfe{bottom:606.813333pt;}
.ycc{bottom:608.573333pt;}
.y22{bottom:614.813333pt;}
.y14c{bottom:617.053333pt;}
.y79{bottom:618.653333pt;}
.y51{bottom:623.613333pt;}
.yfd{bottom:624.413333pt;}
.ycb{bottom:626.173333pt;}
.y153{bottom:626.333333pt;}
.y21{bottom:634.173333pt;}
.y78{bottom:640.573333pt;}
.y50{bottom:645.533333pt;}
.y152{bottom:647.933333pt;}
.yea{bottom:648.093333pt;}
.y16a{bottom:648.253333pt;}
.y14b{bottom:651.453333pt;}
.yb7{bottom:652.093333pt;}
.y20{bottom:653.533333pt;}
.y77{bottom:662.173333pt;}
.yfc{bottom:667.133333pt;}
.y4f{bottom:667.453333pt;}
.y151{bottom:669.853333pt;}
.y1f{bottom:672.893333pt;}
.yb6{bottom:674.333333pt;}
.y76{bottom:684.093333pt;}
.y14a{bottom:685.853333pt;}
.y4e{bottom:689.373333pt;}
.y150{bottom:691.773333pt;}
.y1e{bottom:692.413333pt;}
.yb5{bottom:696.253333pt;}
.yaf{bottom:698.333333pt;}
.y149{bottom:703.293333pt;}
.y14f{bottom:710.493333pt;}
.y4d{bottom:711.293333pt;}
.y1d{bottom:711.773333pt;}
.yae{bottom:715.773333pt;}
.ye7{bottom:716.093333pt;}
.yb4{bottom:718.173333pt;}
.y1c{bottom:731.133333pt;}
.y6d{bottom:732.893333pt;}
.y4c{bottom:733.213333pt;}
.yad{bottom:733.373333pt;}
.y148{bottom:737.693333pt;}
.yb3{bottom:740.093333pt;}
.y1b{bottom:750.493333pt;}
.yac{bottom:750.973333pt;}
.y70{bottom:754.813333pt;}
.y4b{bottom:755.133333pt;}
.y147{bottom:755.293333pt;}
.yb2{bottom:762.013333pt;}
.ye5{bottom:767.453333pt;}
.yab{bottom:768.413333pt;}
.y1a{bottom:769.853333pt;}
.y6f{bottom:776.733333pt;}
.y4a{bottom:777.053333pt;}
.yb1{bottom:783.933333pt;}
.yaa{bottom:786.013333pt;}
.y19{bottom:789.053333pt;}
.y145{bottom:789.693333pt;}
.y6e{bottom:798.653333pt;}
.y49{bottom:798.973333pt;}
.yb0{bottom:802.333333pt;}
.y17{bottom:802.653333pt;}
.ya9{bottom:803.453333pt;}
.y11{bottom:809.053333pt;}
.y16{bottom:812.455294pt;}
.ydf{bottom:818.693333pt;}
.y48{bottom:820.933333pt;}
.ya8{bottom:821.093333pt;}
.y144{bottom:824.133333pt;}
.ya7{bottom:838.693333pt;}
.y47{bottom:842.853333pt;}
.ya6{bottom:856.133333pt;}
.y143{bottom:858.533333pt;}
.y46{bottom:864.773333pt;}
.ya5{bottom:873.733333pt;}
.y45{bottom:886.693333pt;}
.yda{bottom:886.853333pt;}
.ya4{bottom:891.173333pt;}
.y142{bottom:892.933333pt;}
.y44{bottom:908.613333pt;}
.ya3{bottom:908.773333pt;}
.y141{bottom:910.373333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.ya2{bottom:926.213333pt;}
.y140{bottom:927.973333pt;}
.y43{bottom:930.533333pt;}
.ya1{bottom:943.813333pt;}
.y13f{bottom:945.413333pt;}
.yd7{bottom:952.133333pt;}
.y42{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9f{bottom:961.413333pt;}
.y9{bottom:961.733333pt;}
.y13e{bottom:963.013333pt;}
.yd6{bottom:974.053333pt;}
.y41{bottom:974.373333pt;}
.y9d{bottom:978.853333pt;}
.y13c{bottom:980.613333pt;}
.y2{bottom:983.333333pt;}
.yfb{bottom:995.973333pt;}
.y40{bottom:996.293333pt;}
.y9b{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y99{bottom:1013.893333pt;}
.y6c{bottom:1017.893333pt;}
.y3f{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y6b{bottom:1039.840000pt;}
.y3e{bottom:1040.160000pt;}
.y3c{bottom:1055.360000pt;}
.y3b{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h2d{height:16.786667pt;}
.h20{height:16.800000pt;}
.h22{height:16.832000pt;}
.h11{height:16.896000pt;}
.h2e{height:16.946667pt;}
.h21{height:16.960000pt;}
.h1f{height:16.992000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1b{height:27.093750pt;}
.h2f{height:33.600000pt;}
.h2b{height:33.760000pt;}
.h2c{height:33.786667pt;}
.h30{height:33.792000pt;}
.he{height:36.466667pt;}
.h1d{height:41.112500pt;}
.h5{height:47.040000pt;}
.h31{height:48.530000pt;}
.h9{height:49.852500pt;}
.h23{height:50.560000pt;}
.h25{height:50.592000pt;}
.h26{height:50.720000pt;}
.h1c{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h19{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1e{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h27{height:67.360000pt;}
.h24{height:67.520000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h29{height:84.352000pt;}
.h3{height:92.026667pt;}
.h28{height:101.152000pt;}
.h12{height:105.780000pt;}
.h2a{height:118.112000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:41.440000pt;}
.w1d{width:44.960000pt;}
.w11{width:45.440000pt;}
.w15{width:53.920000pt;}
.w21{width:62.400000pt;}
.w18{width:63.350667pt;}
.w17{width:65.792000pt;}
.w1a{width:67.360000pt;}
.w1f{width:71.680000pt;}
.wc{width:76.160000pt;}
.w20{width:82.752000pt;}
.w8{width:84.160000pt;}
.w14{width:85.472000pt;}
.w19{width:96.018667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w10{width:97.120000pt;}
.w1b{width:101.472000pt;}
.wf{width:102.112000pt;}
.wa{width:103.680000pt;}
.we{width:118.112000pt;}
.w13{width:135.866667pt;}
.wd{width:147.386667pt;}
.w12{width:192.986667pt;}
.w1c{width:221.613333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w1e{width:277.826667pt;}
.w9{width:330.493333pt;}
.w3{width:492.080000pt;}
.wb{width:518.973333pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x3b{left:11.360000pt;}
.x38{left:14.400000pt;}
.x3c{left:17.280000pt;}
.x10{left:18.386667pt;}
.x3d{left:20.640000pt;}
.x35{left:21.600000pt;}
.x36{left:24.160000pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x33{left:45.120000pt;}
.x9{left:47.346667pt;}
.x13{left:50.225333pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x31{left:83.360000pt;}
.xd{left:85.266667pt;}
.x2f{left:89.152000pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x42{left:105.472000pt;}
.x1c{left:109.792000pt;}
.x1e{left:120.032000pt;}
.x3f{left:121.481333pt;}
.x22{left:123.712000pt;}
.x4a{left:124.832000pt;}
.x2b{left:125.792000pt;}
.x1d{left:133.786667pt;}
.x30{left:135.226667pt;}
.x24{left:137.466667pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x16{left:170.745333pt;}
.x6{left:185.786667pt;}
.x2a{left:189.786667pt;}
.x41{left:193.786667pt;}
.x2c{left:202.266667pt;}
.x15{left:209.785333pt;}
.x25{left:221.946667pt;}
.x14{left:226.425333pt;}
.x29{left:228.986667pt;}
.x20{left:233.786667pt;}
.x27{left:236.066667pt;}
.x3e{left:281.346667pt;}
.x17{left:289.338318pt;}
.x12{left:298.292000pt;}
.x32{left:328.546667pt;}
.x2d{left:349.986667pt;}
.x21{left:387.426667pt;}
.xa{left:396.106667pt;}
.x1f{left:398.493333pt;}
.x43{left:412.573333pt;}
.x1b{left:420.893333pt;}
.x48{left:434.653333pt;}
.x40{left:450.986667pt;}
.x49{left:458.653333pt;}
.x34{left:464.733333pt;}
.x1a{left:468.893333pt;}
.x44{left:484.573333pt;}
.x37{left:550.533333pt;}
.x26{left:552.773333pt;}
.x23{left:560.933333pt;}
.x45{left:567.653333pt;}
.x2e{left:571.013333pt;}
.x39{left:604.773333pt;}
.x47{left:619.013333pt;}
.x28{left:627.653333pt;}
.x46{left:630.373333pt;}
.x7{left:642.213333pt;}
.x3a{left:646.533333pt;}
.x1{left:665.733333pt;}
}




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