
    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_50a7cff37dfabfb5616965fc.woff2')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_597a83957f78e81b3eab3d20.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.047852;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_7046646f7acd42d34112e47e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_7fd5521f81e94075a1a0192b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.047852;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_72c58a43b7d977cd99089364.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')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_cdf492ca3653c09591ab35dc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_25fae4aeaa54e7257e097b73.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229168,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls29{letter-spacing:-1.026000px;}
.ls14{letter-spacing:-0.930000px;}
.ls2c{letter-spacing:-0.305400px;}
.ls26{letter-spacing:-0.303600px;}
.ls2e{letter-spacing:-0.294000px;}
.ls22{letter-spacing:-0.259800px;}
.ls1a{letter-spacing:-0.253200px;}
.ls1d{letter-spacing:-0.234600px;}
.lsd{letter-spacing:-0.141000px;}
.lse{letter-spacing:-0.133200px;}
.ls1c{letter-spacing:-0.126600px;}
.ls13{letter-spacing:-0.100800px;}
.ls2d{letter-spacing:-0.066000px;}
.ls1b{letter-spacing:-0.058320px;}
.lsc{letter-spacing:-0.057600px;}
.ls1f{letter-spacing:-0.030240px;}
.ls25{letter-spacing:-0.018720px;}
.ls2a{letter-spacing:-0.017280px;}
.lsb{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.043200px;}
.ls4{letter-spacing:0.054720px;}
.lsf{letter-spacing:0.057600px;}
.ls21{letter-spacing:0.126600px;}
.ls6{letter-spacing:0.152640px;}
.ls12{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.217200px;}
.lsa{letter-spacing:0.217440px;}
.ls27{letter-spacing:0.223200px;}
.ls23{letter-spacing:0.234600px;}
.ls2b{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.262080px;}
.ls20{letter-spacing:0.291000px;}
.ls24{letter-spacing:0.300000px;}
.ls28{letter-spacing:0.302400px;}
.ls5{letter-spacing:0.303000px;}
.ls10{letter-spacing:0.339600px;}
.ls1e{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.368640px;}
.ls3{letter-spacing:0.377280px;}
.ls15{letter-spacing:0.414600px;}
.ls2{letter-spacing:0.505440px;}
.ls8{letter-spacing:0.763200px;}
.ls16{letter-spacing:3.643200px;}
.ls11{letter-spacing:29.707200px;}
.ls18{letter-spacing:59.345280px;}
.ls17{letter-spacing:59.489280px;}
.ls0{letter-spacing:190.902240px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc6{text-shadow:-0.015em 0 rgb(70,120,134),0 0.015em rgb(70,120,134),0.015em 0 rgb(70,120,134),0 -0.015em  rgb(70,120,134);}
.sc8{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc3{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(45,116,181),0 0.015em rgb(45,116,181),0.015em 0 rgb(45,116,181),0 -0.015em  rgb(45,116,181);}
.sc5{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);}
.sc4{text-shadow:-0.015em 0 rgb(217,217,217),0 0.015em rgb(217,217,217),0.015em 0 rgb(217,217,217),0 -0.015em  rgb(217,217,217);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc7{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(70,120,134);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(45,116,181);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(217,217,217);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-66.240000px;}
.ws7{word-spacing:-13.256400px;}
.ws19{word-spacing:-13.173000px;}
.ws18{word-spacing:-13.043400px;}
.ws1d{word-spacing:-12.934080px;}
.ws0{word-spacing:-12.916800px;}
.ws17{word-spacing:-12.899520px;}
.ws1b{word-spacing:-12.850800px;}
.ws8{word-spacing:-12.816000px;}
.ws5{word-spacing:-12.775800px;}
.wsa{word-spacing:-12.663600px;}
.ws1c{word-spacing:-12.622800px;}
.ws1a{word-spacing:-12.611400px;}
.ws13{word-spacing:-12.013200px;}
.ws3{word-spacing:-11.956200px;}
.ws14{word-spacing:-11.953200px;}
.ws12{word-spacing:-11.887800px;}
.ws16{word-spacing:-11.876400px;}
.wsd{word-spacing:-11.870400px;}
.ws10{word-spacing:-11.779800px;}
.ws2{word-spacing:-11.653200px;}
.ws15{word-spacing:-11.634480px;}
.wsf{word-spacing:-11.622960px;}
.wsb{word-spacing:-11.594880px;}
.wsc{word-spacing:-11.526600px;}
.wse{word-spacing:-11.418600px;}
.ws11{word-spacing:-11.393400px;}
.ws1{word-spacing:-8.143200px;}
.ws4{word-spacing:-7.581600px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-3.444480px;}
._9{margin-left:-2.131200px;}
._0{margin-left:-1.054080px;}
._1{width:1.296000px;}
._6{width:2.479680px;}
._c{width:3.807360px;}
._d{width:4.913280px;}
._e{width:6.733440px;}
._4{width:7.888320px;}
._17{width:8.952960px;}
._7{width:10.068480px;}
._a{width:11.206080px;}
._1d{width:13.929120px;}
._2{width:14.986800px;}
._3{width:16.224480px;}
._b{width:17.263920px;}
._1b{width:18.348480px;}
._10{width:19.607040px;}
._f{width:21.124800px;}
._14{width:22.262400px;}
._13{width:23.448960px;}
._2f{width:24.451200px;}
._11{width:25.502400px;}
._12{width:26.746560px;}
._1e{width:28.059840px;}
._15{width:29.410560px;}
._16{width:31.078080px;}
._21{width:32.181120px;}
._20{width:33.330240px;}
._1a{width:35.637120px;}
._1c{width:36.785760px;}
._19{width:38.197920px;}
._18{width:39.291840px;}
._30{width:40.362720px;}
._37{width:42.235200px;}
._1f{width:43.254720px;}
._22{width:44.645760px;}
._24{width:46.566720px;}
._23{width:47.661120px;}
._29{width:48.818880px;}
._2a{width:50.155200px;}
._33{width:122.855040px;}
._5{width:126.458640px;}
._36{width:128.882880px;}
._34{width:130.702320px;}
._26{width:149.042880px;}
._28{width:150.543600px;}
._2b{width:152.931120px;}
._27{width:155.379120px;}
._25{width:157.198560px;}
._2e{width:159.399840px;}
._31{width:173.747520px;}
._32{width:227.070720px;}
._38{width:386.444160px;}
._2d{width:458.049600px;}
._35{width:471.628800px;}
._2c{width:1101.631680px;}
.fc8{color:rgb(15,71,97);}
.fc9{color:rgb(5,99,193);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(70,120,134);}
.fc7{color:rgb(0,176,240);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(45,116,181);}
.fc4{color:rgb(217,217,217);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:4.500000px;}
.ydb{bottom:4.530000px;}
.yeb{bottom:4.545000px;}
.y80{bottom:4.680000px;}
.y109{bottom:4.710000px;}
.yed{bottom:5.040000px;}
.ye8{bottom:5.220000px;}
.y7e{bottom:5.580000px;}
.yc9{bottom:5.760000px;}
.yc0{bottom:6.480000px;}
.yee{bottom:14.220000px;}
.ye9{bottom:14.400000px;}
.y9c{bottom:15.660000px;}
.y125{bottom:16.740000px;}
.ye7{bottom:23.400000px;}
.y149{bottom:23.580000px;}
.ybf{bottom:24.840000px;}
.y90{bottom:25.740000px;}
.yd8{bottom:25.950000px;}
.yc7{bottom:27.000000px;}
.y9b{bottom:33.840000px;}
.y136{bottom:33.885000px;}
.y107{bottom:34.020000px;}
.y130{bottom:34.050000px;}
.y124{bottom:35.100000px;}
.yb7{bottom:35.820000px;}
.yfb{bottom:36.000000px;}
.ybe{bottom:43.014000px;}
.y8f{bottom:44.100000px;}
.yf1{bottom:45.354000px;}
.yc6{bottom:45.360000px;}
.y123{bottom:53.280000px;}
.y147{bottom:53.490000px;}
.y118{bottom:54.174000px;}
.yb6{bottom:54.180000px;}
.y4{bottom:59.220000px;}
.yf0{bottom:63.534000px;}
.ye5{bottom:63.540000px;}
.y3{bottom:75.636000px;}
.y117{bottom:111.096000px;}
.y15c{bottom:111.996000px;}
.ybd{bottom:112.536000px;}
.y5e{bottom:116.136000px;}
.y35{bottom:120.456000px;}
.y8b{bottom:126.036000px;}
.y13a{bottom:126.396000px;}
.y11c{bottom:131.436000px;}
.yc2{bottom:132.696000px;}
.yf3{bottom:132.876000px;}
.y15b{bottom:135.216000px;}
.y5d{bottom:139.356000px;}
.y34{bottom:143.496000px;}
.y8a{bottom:147.996000px;}
.y139{bottom:149.616000px;}
.y11b{bottom:151.590000px;}
.yc1{bottom:153.030000px;}
.y15a{bottom:158.430000px;}
.y5c{bottom:162.570000px;}
.y33{bottom:166.710000px;}
.y89{bottom:171.210000px;}
.y11a{bottom:171.930000px;}
.y138{bottom:172.830000px;}
.ybc{bottom:173.190000px;}
.y159{bottom:181.470000px;}
.y5b{bottom:185.610000px;}
.y32{bottom:189.930000px;}
.y119{bottom:192.090000px;}
.yf2{bottom:192.810000px;}
.yb5{bottom:193.530000px;}
.y88{bottom:194.430000px;}
.y137{bottom:196.050000px;}
.y158{bottom:204.690000px;}
.y5a{bottom:208.830000px;}
.y87{bottom:210.810000px;}
.y116{bottom:212.430000px;}
.y31{bottom:212.970000px;}
.ybb{bottom:213.690000px;}
.y157{bottom:227.910000px;}
.y86{bottom:230.250000px;}
.y59{bottom:232.050000px;}
.yef{bottom:232.590000px;}
.yba{bottom:234.030000px;}
.y30{bottom:236.190000px;}
.y85{bottom:249.690000px;}
.y156{bottom:250.950000px;}
.ye4{bottom:252.750000px;}
.y115{bottom:252.930000px;}
.yb9{bottom:254.190000px;}
.y58{bottom:255.090000px;}
.y2f{bottom:259.410000px;}
.y84{bottom:269.310000px;}
.yec{bottom:273.090000px;}
.y155{bottom:274.170000px;}
.yb8{bottom:274.530000px;}
.y57{bottom:278.310000px;}
.y2e{bottom:282.450000px;}
.y83{bottom:288.750000px;}
.y114{bottom:293.430000px;}
.yb4{bottom:294.690000px;}
.y154{bottom:297.390000px;}
.y56{bottom:301.530000px;}
.y2d{bottom:305.670000px;}
.y82{bottom:309.090000px;}
.yea{bottom:312.870000px;}
.y113{bottom:313.590000px;}
.y153{bottom:320.655000px;}
.yb3{bottom:321.735000px;}
.y55{bottom:324.615000px;}
.y2c{bottom:328.935000px;}
.y81{bottom:329.295000px;}
.ye6{bottom:333.075000px;}
.y112{bottom:333.975000px;}
.yb2{bottom:343.515000px;}
.y152{bottom:343.695000px;}
.y54{bottom:347.835000px;}
.y7f{bottom:348.735000px;}
.y2b{bottom:351.975000px;}
.y135{bottom:354.135000px;}
.y111{bottom:360.795000px;}
.yb1{bottom:366.735000px;}
.y151{bottom:366.915000px;}
.y7d{bottom:368.355000px;}
.y53{bottom:371.055000px;}
.ye3{bottom:372.855000px;}
.y2a{bottom:375.195000px;}
.y134{bottom:381.135000px;}
.y110{bottom:382.755000px;}
.yb0{bottom:389.955000px;}
.y150{bottom:390.135000px;}
.y7b{bottom:390.855000px;}
.y52{bottom:394.095000px;}
.y29{bottom:398.415000px;}
.ye2{bottom:399.675000px;}
.y133{bottom:402.915000px;}
.y10f{bottom:405.975000px;}
.yaf{bottom:412.995000px;}
.y14f{bottom:413.175000px;}
.y51{bottom:417.315000px;}
.y7a{bottom:417.675000px;}
.y28{bottom:421.455000px;}
.ye1{bottom:421.635000px;}
.y132{bottom:426.135000px;}
.y10e{bottom:429.015000px;}
.yac{bottom:429.555000px;}
.y14e{bottom:436.395000px;}
.y79{bottom:439.635000px;}
.y50{bottom:440.535000px;}
.y27{bottom:444.675000px;}
.ye0{bottom:444.855000px;}
.y10c{bottom:445.395000px;}
.y131{bottom:449.355000px;}
.yae{bottom:449.715000px;}
.y14d{bottom:459.615000px;}
.y78{bottom:462.855000px;}
.y4f{bottom:463.575000px;}
.y10d{bottom:465.735000px;}
.y26{bottom:467.895000px;}
.yad{bottom:470.055000px;}
.y14c{bottom:482.655000px;}
.ydd{bottom:484.455000px;}
.y77{bottom:485.895000px;}
.y4e{bottom:486.795000px;}
.yab{bottom:490.215000px;}
.y25{bottom:491.115000px;}
.ydf{bottom:504.615000px;}
.y14b{bottom:505.875000px;}
.y10b{bottom:506.235000px;}
.y60{bottom:509.115000px;}
.y4d{bottom:510.015000px;}
.ya8{bottom:510.555000px;}
.y24{bottom:514.155000px;}
.y146{bottom:522.255000px;}
.yde{bottom:524.955000px;}
.y106{bottom:526.395000px;}
.yaa{bottom:530.715000px;}
.y5f{bottom:532.155000px;}
.y4c{bottom:533.055000px;}
.y23{bottom:537.375000px;}
.y14a{bottom:542.595000px;}
.ydc{bottom:545.115000px;}
.y10a{bottom:546.735000px;}
.ya9{bottom:551.055000px;}
.y76{bottom:552.855000px;}
.y4b{bottom:556.275000px;}
.y22{bottom:560.595000px;}
.yd7{bottom:565.455000px;}
.y108{bottom:566.895000px;}
.ya7{bottom:571.245000px;}
.y75{bottom:575.925000px;}
.y4a{bottom:579.525000px;}
.y148{bottom:582.225000px;}
.y21{bottom:583.665000px;}
.yda{bottom:585.645000px;}
.y105{bottom:587.265000px;}
.ya6{bottom:598.245000px;}
.y74{bottom:599.145000px;}
.y49{bottom:602.745000px;}
.yd9{bottom:605.985000px;}
.y20{bottom:606.885000px;}
.y12f{bottom:607.425000px;}
.y104{bottom:614.085000px;}
.ya5{bottom:620.025000px;}
.y145{bottom:622.005000px;}
.y73{bottom:622.365000px;}
.y48{bottom:625.785000px;}
.yd6{bottom:628.485000px;}
.y1f{bottom:630.105000px;}
.y12e{bottom:634.425000px;}
.y103{bottom:636.045000px;}
.y143{bottom:642.345000px;}
.ya4{bottom:643.245000px;}
.y72{bottom:645.405000px;}
.y47{bottom:649.005000px;}
.y1e{bottom:653.145000px;}
.yd5{bottom:655.305000px;}
.y12d{bottom:656.385000px;}
.y102{bottom:659.265000px;}
.y144{bottom:662.505000px;}
.ya3{bottom:666.465000px;}
.y71{bottom:668.625000px;}
.y46{bottom:672.225000px;}
.y1d{bottom:676.365000px;}
.yd4{bottom:677.265000px;}
.y12c{bottom:679.425000px;}
.y101{bottom:682.305000px;}
.ya0{bottom:682.845000px;}
.y70{bottom:691.845000px;}
.y45{bottom:695.265000px;}
.y1c{bottom:699.585000px;}
.yd3{bottom:700.305000px;}
.y12b{bottom:702.645000px;}
.ya2{bottom:703.005000px;}
.y100{bottom:705.525000px;}
.y6f{bottom:714.885000px;}
.y44{bottom:718.485000px;}
.y1b{bottom:721.905000px;}
.y13{bottom:722.625000px;}
.ya1{bottom:723.345000px;}
.yd2{bottom:723.525000px;}
.y12a{bottom:725.865000px;}
.y6e{bottom:738.105000px;}
.y43{bottom:741.705000px;}
.yff{bottom:742.245000px;}
.y1a{bottom:742.965000px;}
.y9f{bottom:743.505000px;}
.yd1{bottom:746.745000px;}
.y129{bottom:748.905000px;}
.y12{bottom:750.165000px;}
.y6d{bottom:761.325000px;}
.yfe{bottom:762.405000px;}
.ycd{bottom:763.125000px;}
.y9a{bottom:763.845000px;}
.y19{bottom:764.025000px;}
.y42{bottom:764.745000px;}
.y122{bottom:765.285000px;}
.y11{bottom:766.005000px;}
.y142{bottom:770.505000px;}
.yfd{bottom:782.745000px;}
.yd0{bottom:783.285000px;}
.y9e{bottom:784.005000px;}
.y6c{bottom:784.365000px;}
.y18{bottom:785.085000px;}
.y128{bottom:785.625000px;}
.y41{bottom:787.965000px;}
.y10{bottom:792.285000px;}
.yfc{bottom:802.905000px;}
.ycf{bottom:803.625000px;}
.y9d{bottom:804.345000px;}
.y127{bottom:805.785000px;}
.y17{bottom:806.145000px;}
.y6b{bottom:807.585000px;}
.yf{bottom:808.125000px;}
.y40{bottom:811.185000px;}
.y141{bottom:815.505000px;}
.yfa{bottom:823.290000px;}
.yce{bottom:823.830000px;}
.y99{bottom:824.550000px;}
.y126{bottom:826.170000px;}
.y16{bottom:827.250000px;}
.ye{bottom:829.230000px;}
.y6a{bottom:830.850000px;}
.y3f{bottom:834.270000px;}
.y140{bottom:838.770000px;}
.yf6{bottom:843.450000px;}
.ycc{bottom:844.170000px;}
.y121{bottom:846.330000px;}
.y15{bottom:848.310000px;}
.y98{bottom:851.550000px;}
.y69{bottom:854.070000px;}
.yd{bottom:855.510000px;}
.y3e{bottom:857.490000px;}
.y13f{bottom:861.990000px;}
.yf9{bottom:863.790000px;}
.yc5{bottom:864.330000px;}
.y11d{bottom:866.670000px;}
.y14{bottom:870.090000px;}
.yc{bottom:871.350000px;}
.y97{bottom:873.330000px;}
.y68{bottom:877.110000px;}
.y13c{bottom:878.370000px;}
.y3d{bottom:880.710000px;}
.yf8{bottom:883.950000px;}
.ycb{bottom:884.670000px;}
.y120{bottom:886.830000px;}
.y96{bottom:896.550000px;}
.yb{bottom:897.630000px;}
.y13e{bottom:898.530000px;}
.y67{bottom:900.330000px;}
.y3c{bottom:903.750000px;}
.yf7{bottom:904.290000px;}
.yca{bottom:904.830000px;}
.y11f{bottom:907.170000px;}
.ya{bottom:914.370000px;}
.y13d{bottom:918.870000px;}
.y95{bottom:919.770000px;}
.y66{bottom:923.370000px;}
.yf5{bottom:924.450000px;}
.yc8{bottom:925.170000px;}
.y3b{bottom:926.970000px;}
.y11e{bottom:927.330000px;}
.y9{bottom:937.590000px;}
.y13b{bottom:939.030000px;}
.y94{bottom:942.990000px;}
.y65{bottom:947.490000px;}
.yc4{bottom:947.670000px;}
.y3a{bottom:950.190000px;}
.yf4{bottom:951.450000px;}
.y8e{bottom:959.370000px;}
.y8{bottom:962.430000px;}
.y64{bottom:971.610000px;}
.y39{bottom:973.230000px;}
.yc3{bottom:974.490000px;}
.y93{bottom:979.530000px;}
.y7{bottom:994.650000px;}
.y38{bottom:996.450000px;}
.y92{bottom:999.870000px;}
.y63{bottom:1018.770000px;}
.y37{bottom:1019.670000px;}
.y91{bottom:1020.030000px;}
.y6{bottom:1032.450000px;}
.y8d{bottom:1040.370000px;}
.y62{bottom:1041.990000px;}
.y36{bottom:1042.710000px;}
.y61{bottom:1065.030000px;}
.y5{bottom:1065.930000px;}
.y8c{bottom:1067.190000px;}
.y2{bottom:1096.020000px;}
.y1{bottom:1119.240000px;}
.he{height:19.440000px;}
.h11{height:19.476000px;}
.h10{height:19.620000px;}
.h1f{height:19.656000px;}
.h19{height:21.600000px;}
.hf{height:21.780000px;}
.h9{height:31.457109px;}
.h1c{height:38.880000px;}
.h24{height:38.916000px;}
.h1b{height:39.060000px;}
.h3{height:43.690430px;}
.hd{height:47.883867px;}
.ha{height:48.350742px;}
.hb{height:53.076094px;}
.h5{height:53.593594px;}
.h8{height:57.547266px;}
.h14{height:59.940000px;}
.h13{height:59.976000px;}
.h21{height:60.120000px;}
.h20{height:60.156000px;}
.h18{height:62.136000px;}
.hc{height:68.084282px;}
.h7{height:68.157070px;}
.h2{height:68.956875px;}
.h4{height:71.613281px;}
.h12{height:80.280000px;}
.h17{height:80.316000px;}
.h16{height:82.620000px;}
.h6{height:87.380859px;}
.h1{height:95.245664px;}
.h23{height:99.036000px;}
.h15{height:100.440000px;}
.h22{height:100.620000px;}
.h1e{height:100.656000px;}
.h1d{height:119.340000px;}
.h1a{height:119.376000px;}
.h0{height:1188.000000px;}
.w6{width:90.000000px;}
.w7{width:90.036000px;}
.w4{width:95.940000px;}
.wc{width:115.416000px;}
.w3{width:118.476000px;}
.w9{width:153.030000px;}
.w8{width:155.910000px;}
.wa{width:156.090000px;}
.w2{width:166.530000px;}
.w5{width:187.410000px;}
.wb{width:237.090000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2c{left:5.580000px;}
.x2d{left:6.840000px;}
.x1a{left:8.280000px;}
.x3f{left:9.720000px;}
.x2a{left:12.600000px;}
.x3a{left:13.680000px;}
.x42{left:14.760000px;}
.x3c{left:17.460000px;}
.x43{left:19.440000px;}
.x51{left:20.700000px;}
.x40{left:22.140000px;}
.x5d{left:23.220000px;}
.x59{left:24.840000px;}
.x3d{left:26.280000px;}
.x34{left:28.440000px;}
.x18{left:32.040000px;}
.x5b{left:33.120000px;}
.x1d{left:34.560000px;}
.x22{left:36.180000px;}
.x2e{left:37.440000px;}
.x30{left:38.520000px;}
.x26{left:39.960000px;}
.x32{left:42.120000px;}
.x48{left:43.920000px;}
.x2f{left:45.000000px;}
.x58{left:46.440000px;}
.x1f{left:48.450000px;}
.x1c{left:51.690000px;}
.x1b{left:52.785000px;}
.x4e{left:54.720000px;}
.x5e{left:55.980000px;}
.x5a{left:57.240000px;}
.x20{left:58.545000px;}
.x21{left:60.705000px;}
.x1{left:63.899986px;}
.x28{left:65.700000px;}
.x1e{left:67.725000px;}
.x11{left:68.939986px;}
.x3b{left:71.100000px;}
.x64{left:72.900000px;}
.x31{left:74.340000px;}
.x5{left:76.859986px;}
.x33{left:78.120000px;}
.x65{left:80.460000px;}
.x45{left:84.780000px;}
.x44{left:88.020000px;}
.x4b{left:94.860000px;}
.x12{left:95.975986px;}
.x4f{left:101.520000px;}
.x50{left:102.960000px;}
.x52{left:105.120000px;}
.x2{left:117.935986px;}
.x8{left:121.535986px;}
.x7{left:144.755986px;}
.x49{left:172.470000px;}
.x25{left:192.090000px;}
.x60{left:197.310000px;}
.x36{left:214.590000px;}
.x54{left:233.310000px;}
.x3{left:247.349986px;}
.x16{left:268.590000px;}
.x4{left:278.129986px;}
.x4a{left:328.575000px;}
.x5c{left:333.254986px;}
.x5f{left:342.614986px;}
.x53{left:352.334986px;}
.x61{left:353.415000px;}
.x27{left:358.635000px;}
.x35{left:361.514986px;}
.x41{left:365.294986px;}
.x24{left:368.354986px;}
.x3e{left:369.434986px;}
.x37{left:370.515000px;}
.x15{left:372.494986px;}
.x47{left:376.094986px;}
.x9{left:380.054986px;}
.x46{left:384.554986px;}
.x55{left:389.415000px;}
.x6{left:433.694986px;}
.x17{left:435.135000px;}
.x23{left:459.074986px;}
.xa{left:485.564986px;}
.x13{left:490.604986px;}
.x67{left:492.584986px;}
.x66{left:502.664986px;}
.x56{left:504.825000px;}
.x14{left:517.604986px;}
.x6d{left:520.844986px;}
.x38{left:523.545000px;}
.x62{left:540.825000px;}
.x29{left:546.045000px;}
.x6a{left:548.744986px;}
.x19{left:553.605000px;}
.x4c{left:565.665000px;}
.xc{left:583.124986px;}
.x6c{left:586.724986px;}
.x57{left:594.825000px;}
.x10{left:602.924986px;}
.xf{left:605.624986px;}
.xe{left:607.964986px;}
.x39{left:613.545000px;}
.xb{left:616.964986px;}
.x69{left:624.524986px;}
.x63{left:630.825000px;}
.x2b{left:636.045000px;}
.x4d{left:655.665000px;}
.xd{left:669.884986px;}
.x6b{left:672.584986px;}
.x68{left:699.629986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls29{letter-spacing:-0.912000pt;}
.ls14{letter-spacing:-0.826667pt;}
.ls2c{letter-spacing:-0.271467pt;}
.ls26{letter-spacing:-0.269867pt;}
.ls2e{letter-spacing:-0.261333pt;}
.ls22{letter-spacing:-0.230933pt;}
.ls1a{letter-spacing:-0.225067pt;}
.ls1d{letter-spacing:-0.208533pt;}
.lsd{letter-spacing:-0.125333pt;}
.lse{letter-spacing:-0.118400pt;}
.ls1c{letter-spacing:-0.112533pt;}
.ls13{letter-spacing:-0.089600pt;}
.ls2d{letter-spacing:-0.058667pt;}
.ls1b{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:-0.051200pt;}
.ls1f{letter-spacing:-0.026880pt;}
.ls25{letter-spacing:-0.016640pt;}
.ls2a{letter-spacing:-0.015360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.038400pt;}
.ls4{letter-spacing:0.048640pt;}
.lsf{letter-spacing:0.051200pt;}
.ls21{letter-spacing:0.112533pt;}
.ls6{letter-spacing:0.135680pt;}
.ls12{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.193067pt;}
.lsa{letter-spacing:0.193280pt;}
.ls27{letter-spacing:0.198400pt;}
.ls23{letter-spacing:0.208533pt;}
.ls2b{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.232960pt;}
.ls20{letter-spacing:0.258667pt;}
.ls24{letter-spacing:0.266667pt;}
.ls28{letter-spacing:0.268800pt;}
.ls5{letter-spacing:0.269333pt;}
.ls10{letter-spacing:0.301867pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.327680pt;}
.ls3{letter-spacing:0.335360pt;}
.ls15{letter-spacing:0.368533pt;}
.ls2{letter-spacing:0.449280pt;}
.ls8{letter-spacing:0.678400pt;}
.ls16{letter-spacing:3.238400pt;}
.ls11{letter-spacing:26.406400pt;}
.ls18{letter-spacing:52.751360pt;}
.ls17{letter-spacing:52.879360pt;}
.ls0{letter-spacing:169.690880pt;}
.ws9{word-spacing:-58.880000pt;}
.ws7{word-spacing:-11.783467pt;}
.ws19{word-spacing:-11.709333pt;}
.ws18{word-spacing:-11.594133pt;}
.ws1d{word-spacing:-11.496960pt;}
.ws0{word-spacing:-11.481600pt;}
.ws17{word-spacing:-11.466240pt;}
.ws1b{word-spacing:-11.422933pt;}
.ws8{word-spacing:-11.392000pt;}
.ws5{word-spacing:-11.356267pt;}
.wsa{word-spacing:-11.256533pt;}
.ws1c{word-spacing:-11.220267pt;}
.ws1a{word-spacing:-11.210133pt;}
.ws13{word-spacing:-10.678400pt;}
.ws3{word-spacing:-10.627733pt;}
.ws14{word-spacing:-10.625067pt;}
.ws12{word-spacing:-10.566933pt;}
.ws16{word-spacing:-10.556800pt;}
.wsd{word-spacing:-10.551467pt;}
.ws10{word-spacing:-10.470933pt;}
.ws2{word-spacing:-10.358400pt;}
.ws15{word-spacing:-10.341760pt;}
.wsf{word-spacing:-10.331520pt;}
.wsb{word-spacing:-10.306560pt;}
.wsc{word-spacing:-10.245867pt;}
.wse{word-spacing:-10.149867pt;}
.ws11{word-spacing:-10.127467pt;}
.ws1{word-spacing:-7.238400pt;}
.ws4{word-spacing:-6.739200pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-3.061760pt;}
._9{margin-left:-1.894400pt;}
._0{margin-left:-0.936960pt;}
._1{width:1.152000pt;}
._6{width:2.204160pt;}
._c{width:3.384320pt;}
._d{width:4.367360pt;}
._e{width:5.985280pt;}
._4{width:7.011840pt;}
._17{width:7.958187pt;}
._7{width:8.949760pt;}
._a{width:9.960960pt;}
._1d{width:12.381440pt;}
._2{width:13.321600pt;}
._3{width:14.421760pt;}
._b{width:15.345707pt;}
._1b{width:16.309760pt;}
._10{width:17.428480pt;}
._f{width:18.777600pt;}
._14{width:19.788800pt;}
._13{width:20.843520pt;}
._2f{width:21.734400pt;}
._11{width:22.668800pt;}
._12{width:23.774720pt;}
._1e{width:24.942080pt;}
._15{width:26.142720pt;}
._16{width:27.624960pt;}
._21{width:28.605440pt;}
._20{width:29.626880pt;}
._1a{width:31.677440pt;}
._1c{width:32.698453pt;}
._19{width:33.953707pt;}
._18{width:34.926080pt;}
._30{width:35.877973pt;}
._37{width:37.542400pt;}
._1f{width:38.448640pt;}
._22{width:39.685120pt;}
._24{width:41.392640pt;}
._23{width:42.365440pt;}
._29{width:43.394560pt;}
._2a{width:44.582400pt;}
._33{width:109.204480pt;}
._5{width:112.407680pt;}
._36{width:114.562560pt;}
._34{width:116.179840pt;}
._26{width:132.482560pt;}
._28{width:133.816533pt;}
._2b{width:135.938773pt;}
._27{width:138.114773pt;}
._25{width:139.732053pt;}
._2e{width:141.688747pt;}
._31{width:154.442240pt;}
._32{width:201.840640pt;}
._38{width:343.505920pt;}
._2d{width:407.155200pt;}
._35{width:419.225600pt;}
._2c{width:979.228160pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:4.000000pt;}
.ydb{bottom:4.026667pt;}
.yeb{bottom:4.040000pt;}
.y80{bottom:4.160000pt;}
.y109{bottom:4.186667pt;}
.yed{bottom:4.480000pt;}
.ye8{bottom:4.640000pt;}
.y7e{bottom:4.960000pt;}
.yc9{bottom:5.120000pt;}
.yc0{bottom:5.760000pt;}
.yee{bottom:12.640000pt;}
.ye9{bottom:12.800000pt;}
.y9c{bottom:13.920000pt;}
.y125{bottom:14.880000pt;}
.ye7{bottom:20.800000pt;}
.y149{bottom:20.960000pt;}
.ybf{bottom:22.080000pt;}
.y90{bottom:22.880000pt;}
.yd8{bottom:23.066667pt;}
.yc7{bottom:24.000000pt;}
.y9b{bottom:30.080000pt;}
.y136{bottom:30.120000pt;}
.y107{bottom:30.240000pt;}
.y130{bottom:30.266667pt;}
.y124{bottom:31.200000pt;}
.yb7{bottom:31.840000pt;}
.yfb{bottom:32.000000pt;}
.ybe{bottom:38.234667pt;}
.y8f{bottom:39.200000pt;}
.yf1{bottom:40.314667pt;}
.yc6{bottom:40.320000pt;}
.y123{bottom:47.360000pt;}
.y147{bottom:47.546667pt;}
.y118{bottom:48.154667pt;}
.yb6{bottom:48.160000pt;}
.y4{bottom:52.640000pt;}
.yf0{bottom:56.474667pt;}
.ye5{bottom:56.480000pt;}
.y3{bottom:67.232000pt;}
.y117{bottom:98.752000pt;}
.y15c{bottom:99.552000pt;}
.ybd{bottom:100.032000pt;}
.y5e{bottom:103.232000pt;}
.y35{bottom:107.072000pt;}
.y8b{bottom:112.032000pt;}
.y13a{bottom:112.352000pt;}
.y11c{bottom:116.832000pt;}
.yc2{bottom:117.952000pt;}
.yf3{bottom:118.112000pt;}
.y15b{bottom:120.192000pt;}
.y5d{bottom:123.872000pt;}
.y34{bottom:127.552000pt;}
.y8a{bottom:131.552000pt;}
.y139{bottom:132.992000pt;}
.y11b{bottom:134.746667pt;}
.yc1{bottom:136.026667pt;}
.y15a{bottom:140.826667pt;}
.y5c{bottom:144.506667pt;}
.y33{bottom:148.186667pt;}
.y89{bottom:152.186667pt;}
.y11a{bottom:152.826667pt;}
.y138{bottom:153.626667pt;}
.ybc{bottom:153.946667pt;}
.y159{bottom:161.306667pt;}
.y5b{bottom:164.986667pt;}
.y32{bottom:168.826667pt;}
.y119{bottom:170.746667pt;}
.yf2{bottom:171.386667pt;}
.yb5{bottom:172.026667pt;}
.y88{bottom:172.826667pt;}
.y137{bottom:174.266667pt;}
.y158{bottom:181.946667pt;}
.y5a{bottom:185.626667pt;}
.y87{bottom:187.386667pt;}
.y116{bottom:188.826667pt;}
.y31{bottom:189.306667pt;}
.ybb{bottom:189.946667pt;}
.y157{bottom:202.586667pt;}
.y86{bottom:204.666667pt;}
.y59{bottom:206.266667pt;}
.yef{bottom:206.746667pt;}
.yba{bottom:208.026667pt;}
.y30{bottom:209.946667pt;}
.y85{bottom:221.946667pt;}
.y156{bottom:223.066667pt;}
.ye4{bottom:224.666667pt;}
.y115{bottom:224.826667pt;}
.yb9{bottom:225.946667pt;}
.y58{bottom:226.746667pt;}
.y2f{bottom:230.586667pt;}
.y84{bottom:239.386667pt;}
.yec{bottom:242.746667pt;}
.y155{bottom:243.706667pt;}
.yb8{bottom:244.026667pt;}
.y57{bottom:247.386667pt;}
.y2e{bottom:251.066667pt;}
.y83{bottom:256.666667pt;}
.y114{bottom:260.826667pt;}
.yb4{bottom:261.946667pt;}
.y154{bottom:264.346667pt;}
.y56{bottom:268.026667pt;}
.y2d{bottom:271.706667pt;}
.y82{bottom:274.746667pt;}
.yea{bottom:278.106667pt;}
.y113{bottom:278.746667pt;}
.y153{bottom:285.026667pt;}
.yb3{bottom:285.986667pt;}
.y55{bottom:288.546667pt;}
.y2c{bottom:292.386667pt;}
.y81{bottom:292.706667pt;}
.ye6{bottom:296.066667pt;}
.y112{bottom:296.866667pt;}
.yb2{bottom:305.346667pt;}
.y152{bottom:305.506667pt;}
.y54{bottom:309.186667pt;}
.y7f{bottom:309.986667pt;}
.y2b{bottom:312.866667pt;}
.y135{bottom:314.786667pt;}
.y111{bottom:320.706667pt;}
.yb1{bottom:325.986667pt;}
.y151{bottom:326.146667pt;}
.y7d{bottom:327.426667pt;}
.y53{bottom:329.826667pt;}
.ye3{bottom:331.426667pt;}
.y2a{bottom:333.506667pt;}
.y134{bottom:338.786667pt;}
.y110{bottom:340.226667pt;}
.yb0{bottom:346.626667pt;}
.y150{bottom:346.786667pt;}
.y7b{bottom:347.426667pt;}
.y52{bottom:350.306667pt;}
.y29{bottom:354.146667pt;}
.ye2{bottom:355.266667pt;}
.y133{bottom:358.146667pt;}
.y10f{bottom:360.866667pt;}
.yaf{bottom:367.106667pt;}
.y14f{bottom:367.266667pt;}
.y51{bottom:370.946667pt;}
.y7a{bottom:371.266667pt;}
.y28{bottom:374.626667pt;}
.ye1{bottom:374.786667pt;}
.y132{bottom:378.786667pt;}
.y10e{bottom:381.346667pt;}
.yac{bottom:381.826667pt;}
.y14e{bottom:387.906667pt;}
.y79{bottom:390.786667pt;}
.y50{bottom:391.586667pt;}
.y27{bottom:395.266667pt;}
.ye0{bottom:395.426667pt;}
.y10c{bottom:395.906667pt;}
.y131{bottom:399.426667pt;}
.yae{bottom:399.746667pt;}
.y14d{bottom:408.546667pt;}
.y78{bottom:411.426667pt;}
.y4f{bottom:412.066667pt;}
.y10d{bottom:413.986667pt;}
.y26{bottom:415.906667pt;}
.yad{bottom:417.826667pt;}
.y14c{bottom:429.026667pt;}
.ydd{bottom:430.626667pt;}
.y77{bottom:431.906667pt;}
.y4e{bottom:432.706667pt;}
.yab{bottom:435.746667pt;}
.y25{bottom:436.546667pt;}
.ydf{bottom:448.546667pt;}
.y14b{bottom:449.666667pt;}
.y10b{bottom:449.986667pt;}
.y60{bottom:452.546667pt;}
.y4d{bottom:453.346667pt;}
.ya8{bottom:453.826667pt;}
.y24{bottom:457.026667pt;}
.y146{bottom:464.226667pt;}
.yde{bottom:466.626667pt;}
.y106{bottom:467.906667pt;}
.yaa{bottom:471.746667pt;}
.y5f{bottom:473.026667pt;}
.y4c{bottom:473.826667pt;}
.y23{bottom:477.666667pt;}
.y14a{bottom:482.306667pt;}
.ydc{bottom:484.546667pt;}
.y10a{bottom:485.986667pt;}
.ya9{bottom:489.826667pt;}
.y76{bottom:491.426667pt;}
.y4b{bottom:494.466667pt;}
.y22{bottom:498.306667pt;}
.yd7{bottom:502.626667pt;}
.y108{bottom:503.906667pt;}
.ya7{bottom:507.773333pt;}
.y75{bottom:511.933333pt;}
.y4a{bottom:515.133333pt;}
.y148{bottom:517.533333pt;}
.y21{bottom:518.813333pt;}
.yda{bottom:520.573333pt;}
.y105{bottom:522.013333pt;}
.ya6{bottom:531.773333pt;}
.y74{bottom:532.573333pt;}
.y49{bottom:535.773333pt;}
.yd9{bottom:538.653333pt;}
.y20{bottom:539.453333pt;}
.y12f{bottom:539.933333pt;}
.y104{bottom:545.853333pt;}
.ya5{bottom:551.133333pt;}
.y145{bottom:552.893333pt;}
.y73{bottom:553.213333pt;}
.y48{bottom:556.253333pt;}
.yd6{bottom:558.653333pt;}
.y1f{bottom:560.093333pt;}
.y12e{bottom:563.933333pt;}
.y103{bottom:565.373333pt;}
.y143{bottom:570.973333pt;}
.ya4{bottom:571.773333pt;}
.y72{bottom:573.693333pt;}
.y47{bottom:576.893333pt;}
.y1e{bottom:580.573333pt;}
.yd5{bottom:582.493333pt;}
.y12d{bottom:583.453333pt;}
.y102{bottom:586.013333pt;}
.y144{bottom:588.893333pt;}
.ya3{bottom:592.413333pt;}
.y71{bottom:594.333333pt;}
.y46{bottom:597.533333pt;}
.y1d{bottom:601.213333pt;}
.yd4{bottom:602.013333pt;}
.y12c{bottom:603.933333pt;}
.y101{bottom:606.493333pt;}
.ya0{bottom:606.973333pt;}
.y70{bottom:614.973333pt;}
.y45{bottom:618.013333pt;}
.y1c{bottom:621.853333pt;}
.yd3{bottom:622.493333pt;}
.y12b{bottom:624.573333pt;}
.ya2{bottom:624.893333pt;}
.y100{bottom:627.133333pt;}
.y6f{bottom:635.453333pt;}
.y44{bottom:638.653333pt;}
.y1b{bottom:641.693333pt;}
.y13{bottom:642.333333pt;}
.ya1{bottom:642.973333pt;}
.yd2{bottom:643.133333pt;}
.y12a{bottom:645.213333pt;}
.y6e{bottom:656.093333pt;}
.y43{bottom:659.293333pt;}
.yff{bottom:659.773333pt;}
.y1a{bottom:660.413333pt;}
.y9f{bottom:660.893333pt;}
.yd1{bottom:663.773333pt;}
.y129{bottom:665.693333pt;}
.y12{bottom:666.813333pt;}
.y6d{bottom:676.733333pt;}
.yfe{bottom:677.693333pt;}
.ycd{bottom:678.333333pt;}
.y9a{bottom:678.973333pt;}
.y19{bottom:679.133333pt;}
.y42{bottom:679.773333pt;}
.y122{bottom:680.253333pt;}
.y11{bottom:680.893333pt;}
.y142{bottom:684.893333pt;}
.yfd{bottom:695.773333pt;}
.yd0{bottom:696.253333pt;}
.y9e{bottom:696.893333pt;}
.y6c{bottom:697.213333pt;}
.y18{bottom:697.853333pt;}
.y128{bottom:698.333333pt;}
.y41{bottom:700.413333pt;}
.y10{bottom:704.253333pt;}
.yfc{bottom:713.693333pt;}
.ycf{bottom:714.333333pt;}
.y9d{bottom:714.973333pt;}
.y127{bottom:716.253333pt;}
.y17{bottom:716.573333pt;}
.y6b{bottom:717.853333pt;}
.yf{bottom:718.333333pt;}
.y40{bottom:721.053333pt;}
.y141{bottom:724.893333pt;}
.yfa{bottom:731.813333pt;}
.yce{bottom:732.293333pt;}
.y99{bottom:732.933333pt;}
.y126{bottom:734.373333pt;}
.y16{bottom:735.333333pt;}
.ye{bottom:737.093333pt;}
.y6a{bottom:738.533333pt;}
.y3f{bottom:741.573333pt;}
.y140{bottom:745.573333pt;}
.yf6{bottom:749.733333pt;}
.ycc{bottom:750.373333pt;}
.y121{bottom:752.293333pt;}
.y15{bottom:754.053333pt;}
.y98{bottom:756.933333pt;}
.y69{bottom:759.173333pt;}
.yd{bottom:760.453333pt;}
.y3e{bottom:762.213333pt;}
.y13f{bottom:766.213333pt;}
.yf9{bottom:767.813333pt;}
.yc5{bottom:768.293333pt;}
.y11d{bottom:770.373333pt;}
.y14{bottom:773.413333pt;}
.yc{bottom:774.533333pt;}
.y97{bottom:776.293333pt;}
.y68{bottom:779.653333pt;}
.y13c{bottom:780.773333pt;}
.y3d{bottom:782.853333pt;}
.yf8{bottom:785.733333pt;}
.ycb{bottom:786.373333pt;}
.y120{bottom:788.293333pt;}
.y96{bottom:796.933333pt;}
.yb{bottom:797.893333pt;}
.y13e{bottom:798.693333pt;}
.y67{bottom:800.293333pt;}
.y3c{bottom:803.333333pt;}
.yf7{bottom:803.813333pt;}
.yca{bottom:804.293333pt;}
.y11f{bottom:806.373333pt;}
.ya{bottom:812.773333pt;}
.y13d{bottom:816.773333pt;}
.y95{bottom:817.573333pt;}
.y66{bottom:820.773333pt;}
.yf5{bottom:821.733333pt;}
.yc8{bottom:822.373333pt;}
.y3b{bottom:823.973333pt;}
.y11e{bottom:824.293333pt;}
.y9{bottom:833.413333pt;}
.y13b{bottom:834.693333pt;}
.y94{bottom:838.213333pt;}
.y65{bottom:842.213333pt;}
.yc4{bottom:842.373333pt;}
.y3a{bottom:844.613333pt;}
.yf4{bottom:845.733333pt;}
.y8e{bottom:852.773333pt;}
.y8{bottom:855.493333pt;}
.y64{bottom:863.653333pt;}
.y39{bottom:865.093333pt;}
.yc3{bottom:866.213333pt;}
.y93{bottom:870.693333pt;}
.y7{bottom:884.133333pt;}
.y38{bottom:885.733333pt;}
.y92{bottom:888.773333pt;}
.y63{bottom:905.573333pt;}
.y37{bottom:906.373333pt;}
.y91{bottom:906.693333pt;}
.y6{bottom:917.733333pt;}
.y8d{bottom:924.773333pt;}
.y62{bottom:926.213333pt;}
.y36{bottom:926.853333pt;}
.y61{bottom:946.693333pt;}
.y5{bottom:947.493333pt;}
.y8c{bottom:948.613333pt;}
.y2{bottom:974.240000pt;}
.y1{bottom:994.880000pt;}
.he{height:17.280000pt;}
.h11{height:17.312000pt;}
.h10{height:17.440000pt;}
.h1f{height:17.472000pt;}
.h19{height:19.200000pt;}
.hf{height:19.360000pt;}
.h9{height:27.961875pt;}
.h1c{height:34.560000pt;}
.h24{height:34.592000pt;}
.h1b{height:34.720000pt;}
.h3{height:38.835938pt;}
.hd{height:42.563437pt;}
.ha{height:42.978437pt;}
.hb{height:47.178750pt;}
.h5{height:47.638750pt;}
.h8{height:51.153125pt;}
.h14{height:53.280000pt;}
.h13{height:53.312000pt;}
.h21{height:53.440000pt;}
.h20{height:53.472000pt;}
.h18{height:55.232000pt;}
.hc{height:60.519362pt;}
.h7{height:60.584062pt;}
.h2{height:61.295000pt;}
.h4{height:63.656250pt;}
.h12{height:71.360000pt;}
.h17{height:71.392000pt;}
.h16{height:73.440000pt;}
.h6{height:77.671875pt;}
.h1{height:84.662813pt;}
.h23{height:88.032000pt;}
.h15{height:89.280000pt;}
.h22{height:89.440000pt;}
.h1e{height:89.472000pt;}
.h1d{height:106.080000pt;}
.h1a{height:106.112000pt;}
.h0{height:1056.000000pt;}
.w6{width:80.000000pt;}
.w7{width:80.032000pt;}
.w4{width:85.280000pt;}
.wc{width:102.592000pt;}
.w3{width:105.312000pt;}
.w9{width:136.026667pt;}
.w8{width:138.586667pt;}
.wa{width:138.746667pt;}
.w2{width:148.026667pt;}
.w5{width:166.586667pt;}
.wb{width:210.746667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:4.960000pt;}
.x2d{left:6.080000pt;}
.x1a{left:7.360000pt;}
.x3f{left:8.640000pt;}
.x2a{left:11.200000pt;}
.x3a{left:12.160000pt;}
.x42{left:13.120000pt;}
.x3c{left:15.520000pt;}
.x43{left:17.280000pt;}
.x51{left:18.400000pt;}
.x40{left:19.680000pt;}
.x5d{left:20.640000pt;}
.x59{left:22.080000pt;}
.x3d{left:23.360000pt;}
.x34{left:25.280000pt;}
.x18{left:28.480000pt;}
.x5b{left:29.440000pt;}
.x1d{left:30.720000pt;}
.x22{left:32.160000pt;}
.x2e{left:33.280000pt;}
.x30{left:34.240000pt;}
.x26{left:35.520000pt;}
.x32{left:37.440000pt;}
.x48{left:39.040000pt;}
.x2f{left:40.000000pt;}
.x58{left:41.280000pt;}
.x1f{left:43.066667pt;}
.x1c{left:45.946667pt;}
.x1b{left:46.920000pt;}
.x4e{left:48.640000pt;}
.x5e{left:49.760000pt;}
.x5a{left:50.880000pt;}
.x20{left:52.040000pt;}
.x21{left:53.960000pt;}
.x1{left:56.799988pt;}
.x28{left:58.400000pt;}
.x1e{left:60.200000pt;}
.x11{left:61.279988pt;}
.x3b{left:63.200000pt;}
.x64{left:64.800000pt;}
.x31{left:66.080000pt;}
.x5{left:68.319988pt;}
.x33{left:69.440000pt;}
.x65{left:71.520000pt;}
.x45{left:75.360000pt;}
.x44{left:78.240000pt;}
.x4b{left:84.320000pt;}
.x12{left:85.311988pt;}
.x4f{left:90.240000pt;}
.x50{left:91.520000pt;}
.x52{left:93.440000pt;}
.x2{left:104.831988pt;}
.x8{left:108.031988pt;}
.x7{left:128.671988pt;}
.x49{left:153.306667pt;}
.x25{left:170.746667pt;}
.x60{left:175.386667pt;}
.x36{left:190.746667pt;}
.x54{left:207.386667pt;}
.x3{left:219.866655pt;}
.x16{left:238.746667pt;}
.x4{left:247.226655pt;}
.x4a{left:292.066667pt;}
.x5c{left:296.226655pt;}
.x5f{left:304.546655pt;}
.x53{left:313.186655pt;}
.x61{left:314.146667pt;}
.x27{left:318.786667pt;}
.x35{left:321.346655pt;}
.x41{left:324.706655pt;}
.x24{left:327.426655pt;}
.x3e{left:328.386655pt;}
.x37{left:329.346667pt;}
.x15{left:331.106655pt;}
.x47{left:334.306655pt;}
.x9{left:337.826655pt;}
.x46{left:341.826655pt;}
.x55{left:346.146667pt;}
.x6{left:385.506655pt;}
.x17{left:386.786667pt;}
.x23{left:408.066655pt;}
.xa{left:431.613321pt;}
.x13{left:436.093321pt;}
.x67{left:437.853321pt;}
.x66{left:446.813321pt;}
.x56{left:448.733333pt;}
.x14{left:460.093321pt;}
.x6d{left:462.973321pt;}
.x38{left:465.373333pt;}
.x62{left:480.733333pt;}
.x29{left:485.373333pt;}
.x6a{left:487.773321pt;}
.x19{left:492.093333pt;}
.x4c{left:502.813333pt;}
.xc{left:518.333321pt;}
.x6c{left:521.533321pt;}
.x57{left:528.733333pt;}
.x10{left:535.933321pt;}
.xf{left:538.333321pt;}
.xe{left:540.413321pt;}
.x39{left:545.373333pt;}
.xb{left:548.413321pt;}
.x69{left:555.133321pt;}
.x63{left:560.733333pt;}
.x2b{left:565.373333pt;}
.x4d{left:582.813333pt;}
.xd{left:595.453321pt;}
.x6b{left:597.853321pt;}
.x68{left:621.893321pt;}
}




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