
    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_f28ae0b99615b5c6213ae944.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.037000;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_b84d73ade80a5a5bcc4c6e17.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.823730;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_e95b94731a2fe94565efedc4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_748625c1e876a369aa2ee04d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_3d1169459da86e872d973387.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_ed01b037866e8952c1070960.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.186035;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_8b107c6f5c7a26c32930596e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_a1dff603e9714a1659edcedf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739000;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_77d43f37fb6aeb1acde8360a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.833000;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_381f908527514b56b36991ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_22118f601af8d0d5a8701c60.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_d77af7ec98098f488477fae0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.963379;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_ee382d90b67b70a238c48bc5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_a71ed731846851388d134fa8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.746094;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_4442bf6376872bc88e6580b5.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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);}
.v4{vertical-align:-63.863183px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.638179px;}
.v2{vertical-align:32.166712px;}
.v1{vertical-align:39.366721px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.003270px;}
.ls17{letter-spacing:0.003360px;}
.ls1a{letter-spacing:0.003450px;}
.ls1c{letter-spacing:0.003540px;}
.ls1d{letter-spacing:0.003585px;}
.ls6{letter-spacing:0.019652px;}
.ls11{letter-spacing:0.055322px;}
.ls10{letter-spacing:0.065656px;}
.lsf{letter-spacing:0.065701px;}
.ls1b{letter-spacing:0.502050px;}
.ls18{letter-spacing:0.502095px;}
.lsc{letter-spacing:107.960702px;}
.ls8{letter-spacing:107.966423px;}
.ls9{letter-spacing:107.969306px;}
.ls4{letter-spacing:107.972021px;}
.ls5{letter-spacing:107.972030px;}
.ls16{letter-spacing:107.972075px;}
.lse{letter-spacing:107.972093px;}
.ls15{letter-spacing:107.974911px;}
.lsd{letter-spacing:107.986217px;}
.ls14{letter-spacing:107.986253px;}
.ls2{letter-spacing:107.986262px;}
.lsb{letter-spacing:107.992256px;}
.lsa{letter-spacing:107.997500px;}
.ls7{letter-spacing:108.000273px;}
.ls13{letter-spacing:108.000354px;}
.ls12{letter-spacing:108.000363px;}
.ls3{letter-spacing:108.000408px;}
.ls1{letter-spacing:108.000426px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-64.800002px;}
.ws5{word-spacing:-41.220001px;}
.ws10{word-spacing:-34.350000px;}
.ws2{word-spacing:-27.972001px;}
.ws0{word-spacing:-27.480000px;}
.wsf{word-spacing:-26.418000px;}
.ws11{word-spacing:-23.776203px;}
.wsb{word-spacing:-23.268000px;}
.ws3{word-spacing:-21.756000px;}
.wsa{word-spacing:-20.916000px;}
.ws9{word-spacing:-20.748000px;}
.ws19{word-spacing:-19.236000px;}
.ws18{word-spacing:-17.094001px;}
.ws4{word-spacing:-13.740000px;}
.wse{word-spacing:-0.102000px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:136.132322px;}
.ws15{word-spacing:136.180579px;}
.ws17{word-spacing:136.221353px;}
.ws12{word-spacing:232.993614px;}
.ws14{word-spacing:363.202345px;}
.ws16{word-spacing:387.203591px;}
.ws7{word-spacing:443.591591px;}
.wsd{word-spacing:671.044248px;}
.ws6{word-spacing:706.345384px;}
.wsc{word-spacing:714.220541px;}
._0{margin-left:-15.698401px;}
._f{margin-left:-10.080315px;}
._18{margin-left:-5.520000px;}
._3{margin-left:-4.505677px;}
._2{margin-left:-2.532000px;}
._1{margin-left:-1.519200px;}
._6{width:1.142453px;}
._a{width:2.375647px;}
._8{width:127.491052px;}
._15{width:266.249884px;}
._10{width:354.557234px;}
._11{width:406.601370px;}
._16{width:475.745632px;}
._14{width:496.278054px;}
._17{width:499.708386px;}
._12{width:509.527650px;}
._5{width:534.937882px;}
._b{width:569.594785px;}
._e{width:596.574731px;}
._13{width:676.947002px;}
._d{width:728.101384px;}
._c{width:906.858381px;}
._4{width:1895.160078px;}
._9{width:3443.524013px;}
._7{width:3572.616926px;}
.fcf{color:rgb(102,102,102);}
.fce{color:rgb(36,41,47);}
.fcd{color:rgb(255,51,147);}
.fc5{color:transparent;}
.fc1{color:rgb(0,144,211);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(67,67,67);}
.fc9{color:rgb(183,183,183);}
.fc0{color:rgb(12,85,137);}
.fc7{color:rgb(158,158,158);}
.fc3{color:rgb(53,53,54);}
.fc8{color:rgb(61,61,61);}
.fca{color:rgb(0,0,150);}
.fcb{color:rgb(51,153,255);}
.fcc{color:rgb(0,153,153);}
.fs2{font-size:48.000003px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:66.000004px;}
.fsc{font-size:72.000002px;}
.fsf{font-size:77.699999px;}
.fs9{font-size:78.000005px;}
.fs7{font-size:84.000000px;}
.fs14{font-size:87.000006px;}
.fs13{font-size:88.800006px;}
.fs8{font-size:90.000003px;}
.fs19{font-size:91.800012px;}
.fs5{font-size:96.000006px;}
.fs11{font-size:99.885018px;}
.fsd{font-size:99.899999px;}
.fs15{font-size:102.000000px;}
.fse{font-size:105.450006px;}
.fs4{font-size:108.000003px;}
.fs12{font-size:112.942511px;}
.fs1{font-size:120.000001px;}
.fs1b{font-size:126.000004px;}
.fs10{font-size:144.000005px;}
.fs18{font-size:149.999999px;}
.fsb{font-size:162.000005px;}
.fs17{font-size:179.999826px;}
.fs3{font-size:180.000006px;}
.fs16{font-size:193.333205px;}
.fs0{font-size:253.200023px;}
.fs1a{font-size:276.000003px;}
.yf1{bottom:-1.128805px;}
.y0{bottom:0.000000px;}
.y43{bottom:8.074221px;}
.y176{bottom:10.399935px;}
.y28{bottom:13.022700px;}
.ycb{bottom:14.413784px;}
.yb0{bottom:17.806506px;}
.y21{bottom:18.240565px;}
.y35{bottom:18.422700px;}
.y112{bottom:19.082211px;}
.y23{bottom:20.040567px;}
.y8d{bottom:21.177622px;}
.y179{bottom:22.999931px;}
.yf0{bottom:24.071196px;}
.yc7{bottom:26.806506px;}
.y2c{bottom:27.240565px;}
.y2d{bottom:27.422700px;}
.y26{bottom:28.082211px;}
.y14{bottom:28.082245px;}
.y50{bottom:28.421801px;}
.y3c{bottom:29.086071px;}
.y175{bottom:30.199932px;}
.y11a{bottom:34.663324px;}
.y27{bottom:36.422700px;}
.y58{bottom:41.622850px;}
.y178{bottom:42.799932px;}
.y135{bottom:44.048007px;}
.y22{bottom:45.240566px;}
.y77{bottom:46.669709px;}
.yaa{bottom:47.730335px;}
.yef{bottom:49.271230px;}
.y174{bottom:49.999932px;}
.y17f{bottom:53.208887px;}
.ycd{bottom:55.516155px;}
.y177{bottom:62.599933px;}
.y114{bottom:64.059819px;}
.ya4{bottom:66.564714px;}
.y57{bottom:66.822856px;}
.y173{bottom:69.799933px;}
.ya9{bottom:72.930335px;}
.yee{bottom:74.471265px;}
.y119{bottom:77.863326px;}
.y17e{bottom:78.408885px;}
.y134{bottom:82.604008px;}
.y99{bottom:83.847932px;}
.y85{bottom:86.308352px;}
.y8{bottom:87.435593px;}
.y172{bottom:89.599933px;}
.y111{bottom:90.624201px;}
.yd9{bottom:91.516156px;}
.y56{bottom:92.022851px;}
.y76{bottom:93.464986px;}
.y127{bottom:93.713003px;}
.yc4{bottom:96.196754px;}
.y159{bottom:98.515106px;}
.yed{bottom:99.671288px;}
.y141{bottom:100.943365px;}
.ya3{bottom:101.844693px;}
.y113{bottom:102.129814px;}
.y17a{bottom:103.729959px;}
.ybe{bottom:106.143813px;}
.y11{bottom:108.143365px;}
.y105{bottom:108.550618px;}
.y32{bottom:109.699911px;}
.y7{bottom:116.235592px;}
.y12f{bottom:117.143366px;}
.y55{bottom:117.222849px;}
.y158{bottom:118.315073px;}
.y98{bottom:118.812922px;}
.y61{bottom:118.943427px;}
.y133{bottom:121.160006px;}
.yec{bottom:124.871311px;}
.y171{bottom:127.315074px;}
.y117{bottom:127.408788px;}
.y118{bottom:130.063327px;}
.y110{bottom:131.124202px;}
.yc3{bottom:135.346755px;}
.ya2{bottom:137.124671px;}
.y157{bottom:138.115051px;}
.ybd{bottom:140.775814px;}
.y84{bottom:144.268376px;}
.y70{bottom:144.990030px;}
.y170{bottom:147.115052px;}
.y140{bottom:149.543367px;}
.yeb{bottom:150.071346px;}
.y97{bottom:153.777912px;}
.y1d{bottom:154.009859px;}
.y60{bottom:154.223406px;}
.yd8{bottom:154.516158px;}
.y10{bottom:156.743389px;}
.y182{bottom:156.979381px;}
.y156{bottom:157.915018px;}
.y132{bottom:159.716008px;}
.y12e{bottom:165.743390px;}
.y16f{bottom:166.915019px;}
.ya8{bottom:168.330338px;}
.y104{bottom:169.551596px;}
.y10f{bottom:171.624204px;}
.ya1{bottom:172.404672px;}
.y83{bottom:173.248355px;}
.y4a{bottom:174.203418px;}
.yc2{bottom:174.496767px;}
.y42{bottom:174.743390px;}
.yea{bottom:175.271381px;}
.ybc{bottom:175.407804px;}
.ycc{bottom:177.016159px;}
.y155{bottom:177.714996px;}
.yb3{bottom:178.703418px;}
.y181{bottom:182.179375px;}
.y6f{bottom:182.250020px;}
.y67{bottom:185.018221px;}
.y16e{bottom:186.714997px;}
.y122{bottom:187.703418px;}
.y96{bottom:188.742890px;}
.y5f{bottom:189.503373px;}
.y53{bottom:193.103368px;}
.y4f{bottom:193.103379px;}
.ya7{bottom:193.530334px;}
.y154{bottom:197.514975px;}
.ye9{bottom:200.471404px;}
.y82{bottom:200.968356px;}
.yff{bottom:201.180944px;}
.y6{bottom:202.091326px;}
.y1c{bottom:202.609883px;}
.yf{bottom:202.823402px;}
.y16d{bottom:206.514975px;}
.y180{bottom:207.379373px;}
.ya0{bottom:207.684685px;}
.ybb{bottom:210.039805px;}
.y49{bottom:212.003397px;}
.y10e{bottom:212.124216px;}
.yd6{bottom:213.016160px;}
.yc1{bottom:213.646762px;}
.y12d{bottom:214.343391px;}
.y66{bottom:215.798220px;}
.y103{bottom:216.345704px;}
.yb2{bottom:216.503397px;}
.y153{bottom:217.314942px;}
.ya6{bottom:218.730329px;}
.y41{bottom:223.343391px;}
.y5e{bottom:224.783375px;}
.y121{bottom:225.503397px;}
.ye8{bottom:225.671427px;}
.y81{bottom:225.808357px;}
.y16c{bottom:226.314942px;}
.yfe{bottom:226.380978px;}
.y13a{bottom:228.273065px;}
.y95{bottom:228.369892px;}
.y4e{bottom:230.903369px;}
.yac{bottom:230.903392px;}
.y5{bottom:233.771323px;}
.y52{bottom:235.943369px;}
.y13e{bottom:236.483403px;}
.y152{bottom:237.114908px;}
.y102{bottom:241.545703px;}
.yba{bottom:244.671806px;}
.ya5{bottom:245.370330px;}
.ye{bottom:246.023392px;}
.y16b{bottom:246.114909px;}
.y9f{bottom:247.284686px;}
.y80{bottom:250.648357px;}
.ye7{bottom:250.871462px;}
.y1b{bottom:251.209884px;}
.yfd{bottom:251.581001px;}
.y75{bottom:251.880358px;}
.y4{bottom:252.491321px;}
.y10d{bottom:252.624217px;}
.yc0{bottom:252.796759px;}
.y48{bottom:254.843398px;}
.yaf{bottom:256.698653px;}
.y151{bottom:256.914887px;}
.yb1{bottom:259.343398px;}
.y5d{bottom:260.063376px;}
.y3b{bottom:262.943393px;}
.y16a{bottom:265.914887px;}
.y120{bottom:268.343399px;}
.yab{bottom:268.703382px;}
.y40{bottom:271.943393px;}
.y94{bottom:273.324882px;}
.y4d{bottom:273.743371px;}
.y139{bottom:275.068342px;}
.y7f{bottom:275.488369px;}
.yb7{bottom:275.543388px;}
.ye6{bottom:276.071485px;}
.y150{bottom:276.714865px;}
.yfc{bottom:276.781002px;}
.yb9{bottom:279.303796px;}
.y51{bottom:279.503371px;}
.yd7{bottom:280.516162px;}
.y12c{bottom:280.583421px;}
.y13d{bottom:282.383388px;}
.y169{bottom:285.714865px;}
.y184{bottom:290.179367px;}
.yd{bottom:291.743394px;}
.ybf{bottom:291.946760px;}
.y9e{bottom:292.644676px;}
.y10c{bottom:293.124219px;}
.yd1{bottom:295.141172px;}
.y14f{bottom:296.514865px;}
.y47{bottom:298.403377px;}
.y74{bottom:298.675624px;}
.y5c{bottom:299.663377px;}
.y1a{bottom:299.809886px;}
.yae{bottom:299.898654px;}
.y7e{bottom:300.328370px;}
.ye5{bottom:301.271486px;}
.yfb{bottom:301.980992px;}
.y101{bottom:302.546681px;}
.y8b{bottom:304.497885px;}
.y168{bottom:305.514866px;}
.y65{bottom:307.943400px;}
.y3a{bottom:311.543377px;}
.y183{bottom:315.379365px;}
.y14e{bottom:316.314877px;}
.y11f{bottom:316.943400px;}
.yb8{bottom:317.557172px;}
.y93{bottom:318.279883px;}
.yd0{bottom:319.891175px;}
.y3f{bottom:320.543378px;}
.yb6{bottom:321.623378px;}
.y138{bottom:321.863618px;}
.y4c{bottom:322.343372px;}
.y167{bottom:325.314877px;}
.y2b{bottom:326.303389px;}
.y7d{bottom:326.428364px;}
.ye4{bottom:326.471475px;}
.y12b{bottom:326.483412px;}
.yfa{bottom:327.180993px;}
.y8f{bottom:328.103384px;}
.y13c{bottom:328.283372px;}
.y8a{bottom:329.337885px;}
.y37{bottom:333.503378px;}
.y10b{bottom:333.624220px;}
.y46{bottom:334.943378px;}
.y14d{bottom:336.114889px;}
.yc{bottom:337.823384px;}
.y9d{bottom:338.004678px;}
.yd5{bottom:343.516175px;}
.y3{bottom:343.677209px;}
.y5b{bottom:345.023378px;}
.y166{bottom:345.114889px;}
.y73{bottom:345.469721px;}
.y19{bottom:348.409870px;}
.y34{bottom:351.143373px;}
.ye3{bottom:351.671476px;}
.yf9{bottom:352.380982px;}
.y7c{bottom:355.408361px;}
.y89{bottom:355.437886px;}
.y14c{bottom:355.914890px;}
.y64{bottom:356.543384px;}
.y2f{bottom:360.143373px;}
.y17d{bottom:363.676530px;}
.y2a{bottom:364.103390px;}
.y92{bottom:364.400385px;}
.y165{bottom:364.914890px;}
.y11e{bottom:365.543385px;}
.y4b{bottom:365.903379px;}
.yb5{bottom:367.343379px;}
.y3e{bottom:369.143374px;}
.yc9{bottom:370.516176px;}
.y72{bottom:370.669720px;}
.y36{bottom:371.303391px;}
.y12a{bottom:372.383396px;}
.y13b{bottom:374.183376px;}
.y14b{bottom:375.714902px;}
.y45{bottom:376.343379px;}
.ye2{bottom:376.871466px;}
.yf8{bottom:377.580972px;}
.y10a{bottom:377.904210px;}
.yb{bottom:381.023385px;}
.y137{bottom:382.385376px;}
.y9c{bottom:383.364679px;}
.y7b{bottom:384.388350px;}
.y88{bottom:384.417876px;}
.y164{bottom:384.714902px;}
.y5a{bottom:390.383380px;}
.y14a{bottom:395.514913px;}
.y25{bottom:396.143380px;}
.y18{bottom:397.009866px;}
.y33{bottom:399.743375px;}
.yc6{bottom:400.283380px;}
.y17c{bottom:401.476531px;}
.y29{bottom:401.903386px;}
.ye1{bottom:402.071455px;}
.yf7{bottom:402.780973px;}
.y163{bottom:404.514914px;}
.y63{bottom:405.143380px;}
.y2e{bottom:408.743375px;}
.y91{bottom:410.687377px;}
.y7a{bottom:410.848347px;}
.y87{bottom:410.877872px;}
.yb4{bottom:410.903386px;}
.y20{bottom:414.143381px;}
.y116{bottom:414.794524px;}
.y149{bottom:415.314914px;}
.yd4{bottom:415.516178px;}
.y71{bottom:417.464996px;}
.y3d{bottom:417.743375px;}
.y129{bottom:418.283381px;}
.y2{bottom:419.637223px;}
.y44{bottom:419.903386px;}
.y162{bottom:424.314914px;}
.y109{bottom:426.504212px;}
.ya{bottom:426.743375px;}
.y11c{bottom:426.890308px;}
.ye0{bottom:427.271456px;}
.yf6{bottom:427.980962px;}
.y9b{bottom:428.724681px;}
.y79{bottom:434.068343px;}
.y86{bottom:434.097869px;}
.y148{bottom:435.114915px;}
.y59{bottom:435.743381px;}
.ycf{bottom:439.141176px;}
.y115{bottom:439.994523px;}
.y161{bottom:444.114915px;}
.y24{bottom:444.743382px;}
.y17{bottom:445.609869px;}
.yc5{bottom:446.183384px;}
.ydf{bottom:452.471446px;}
.y136{bottom:452.928415px;}
.yf5{bottom:453.180957px;}
.y62{bottom:453.743382px;}
.y147{bottom:454.914922px;}
.y11b{bottom:455.690307px;}
.y9a{bottom:458.307865px;}
.y1f{bottom:462.743382px;}
.yce{bottom:463.891179px;}
.y160{bottom:463.914922px;}
.y128{bottom:464.183385px;}
.y146{bottom:474.714921px;}
.y31{bottom:475.407274px;}
.yde{bottom:477.671441px;}
.y17b{bottom:477.715498px;}
.yf4{bottom:478.380964px;}
.y6e{bottom:480.329997px;}
.y126{bottom:482.183385px;}
.y15f{bottom:483.714921px;}
.y125{bottom:484.343378px;}
.y8c{bottom:489.931531px;}
.y9{bottom:492.925980px;}
.yd3{bottom:493.141178px;}
.y145{bottom:494.514917px;}
.y1{bottom:495.597224px;}
.y108{bottom:500.845983px;}
.ydd{bottom:502.871447px;}
.y15e{bottom:503.514917px;}
.yf3{bottom:503.580958px;}
.y131{bottom:509.125972px;}
.y13f{bottom:510.925983px;}
.y69{bottom:512.745002px;}
.y144{bottom:514.314917px;}
.y15{bottom:516.373819px;}
.y12{bottom:516.374763px;}
.y124{bottom:516.743384px;}
.yd2{bottom:517.891181px;}
.y1e{bottom:519.925982px;}
.y15d{bottom:523.314918px;}
.y16{bottom:525.796061px;}
.ydc{bottom:528.071441px;}
.yf2{bottom:528.780956px;}
.y38{bottom:528.925982px;}
.y30{bottom:529.407275px;}
.y90{bottom:530.307869px;}
.y143{bottom:534.114918px;}
.y6d{bottom:534.374765px;}
.y39{bottom:537.925982px;}
.yc8{bottom:541.516182px;}
.y13{bottom:541.699941px;}
.y106{bottom:542.481873px;}
.y15c{bottom:543.114918px;}
.yda{bottom:543.766182px;}
.y6b{bottom:544.424999px;}
.y78{bottom:546.925983px;}
.y107{bottom:549.445979px;}
.y100{bottom:551.481873px;}
.ydb{bottom:553.271440px;}
.y6a{bottom:553.424999px;}
.y54{bottom:553.711417px;}
.y142{bottom:553.914919px;}
.y130{bottom:554.125976px;}
.y123{bottom:555.925984px;}
.y8e{bottom:559.918581px;}
.y68{bottom:561.345000px;}
.y6c{bottom:562.424999px;}
.y15b{bottom:562.914919px;}
.yad{bottom:564.106652px;}
.y11d{bottom:564.925967px;}
.y15a{bottom:577.157124px;}
.yca{bottom:583.965002px;}
.h3{height:40.464003px;}
.h12{height:43.920000px;}
.ha{height:50.580000px;}
.h15{height:56.718750px;}
.h1a{height:59.451123px;}
.h22{height:61.154297px;}
.h11{height:62.390628px;}
.h21{height:63.861328px;}
.h13{height:64.271484px;}
.h16{height:68.062502px;}
.h29{height:70.812000px;}
.h1b{height:73.450781px;}
.h6{height:73.453130px;}
.he{height:73.734380px;}
.h24{height:78.626956px;}
.hc{height:79.406250px;}
.h1f{height:82.242193px;}
.h5{height:82.634768px;}
.hf{height:82.740237px;}
.hd{height:82.746712px;}
.h1e{height:83.943756px;}
.h25{height:85.078128px;}
.h28{height:86.779699px;}
.h17{height:88.668003px;}
.h10{height:89.218046px;}
.hb{height:89.946722px;}
.h7{height:90.750006px;}
.h18{height:94.436718px;}
.h20{height:96.421875px;}
.h19{height:99.683209px;}
.h2{height:101.160001px;}
.h8{height:102.093753px;}
.h1d{height:106.765968px;}
.h2b{height:119.109379px;}
.h27{height:126.449999px;}
.h1c{height:136.125004px;}
.h14{height:136.566004px;}
.h4{height:145.283208px;}
.h26{height:151.739853px;}
.h9{height:151.740005px;}
.h23{height:162.979892px;}
.h1{height:213.447619px;}
.h2a{height:232.668002px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x44{left:15.864753px;}
.x16{left:23.236009px;}
.x33{left:25.937010px;}
.x46{left:28.939962px;}
.x51{left:33.084433px;}
.x1a{left:37.939962px;}
.x1d{left:39.631857px;}
.x59{left:41.376970px;}
.x2{left:46.939963px;}
.x17{left:48.631857px;}
.x25{left:50.910045px;}
.xa{left:52.711369px;}
.x6{left:53.996694px;}
.x3{left:57.631857px;}
.x34{left:58.863459px;}
.x2c{left:61.262959px;}
.x28{left:68.625002px;}
.x1{left:70.892718px;}
.x52{left:73.939962px;}
.x3d{left:75.179922px;}
.x3e{left:76.624852px;}
.x1e{left:82.939964px;}
.x21{left:84.297407px;}
.x12{left:88.726944px;}
.x38{left:90.348345px;}
.x1b{left:91.939964px;}
.xe{left:100.939964px;}
.x57{left:103.544947px;}
.x48{left:104.625003px;}
.x18{left:106.262958px;}
.xb{left:110.342473px;}
.x5{left:111.631864px;}
.x4{left:113.447400px;}
.x13{left:115.262959px;}
.x2d{left:117.067897px;}
.x22{left:123.974412px;}
.x61{left:131.220465px;}
.x53{left:132.618768px;}
.x58{left:145.939966px;}
.x20{left:154.939966px;}
.x4a{left:168.349877px;}
.x35{left:181.939967px;}
.x5e{left:197.933071px;}
.x62{left:216.029324px;}
.x11{left:220.864530px;}
.x39{left:250.379595px;}
.x43{left:253.220296px;}
.x3c{left:254.838451px;}
.x5b{left:279.616081px;}
.x60{left:287.794321px;}
.x5c{left:291.537599px;}
.x5d{left:301.996578px;}
.x2a{left:360.316699px;}
.x1c{left:420.002980px;}
.x9{left:438.005793px;}
.x4d{left:442.939964px;}
.x41{left:452.838434px;}
.x26{left:482.910045px;}
.x47{left:489.852646px;}
.x5f{left:495.089460px;}
.x49{left:536.317915px;}
.x27{left:538.890677px;}
.x2b{left:541.155527px;}
.x55{left:543.528859px;}
.x3f{left:551.838438px;}
.x29{left:554.206596px;}
.x56{left:555.908665px;}
.x36{left:567.150599px;}
.x2e{left:580.880944px;}
.x30{left:595.203940px;}
.x4e{left:596.214582px;}
.x2f{left:634.880945px;}
.x45{left:636.312013px;}
.x37{left:641.908483px;}
.x31{left:651.008878px;}
.x54{left:657.856163px;}
.x5a{left:665.249984px;}
.x3b{left:673.021968px;}
.x10{left:734.399912px;}
.x7{left:774.858760px;}
.x3a{left:782.955734px;}
.xf{left:792.696760px;}
.x32{left:808.526613px;}
.x40{left:821.838514px;}
.x15{left:828.562386px;}
.x1f{left:884.533472px;}
.x50{left:955.939981px;}
.x23{left:1031.671920px;}
.x24{left:1040.731897px;}
.x14{left:1042.156344px;}
.xc{left:1044.030611px;}
.x8{left:1048.228954px;}
.x4b{left:1052.194501px;}
.x4c{left:1054.278676px;}
.x4f{left:1056.362850px;}
.x19{left:1059.046777px;}
.xd{left:1060.546189px;}
.x42{left:1061.910656px;}
@media print{
.v4{vertical-align:-56.767274pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.345048pt;}
.v2{vertical-align:28.592633pt;}
.v1{vertical-align:34.992641pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.002906pt;}
.ls17{letter-spacing:0.002986pt;}
.ls1a{letter-spacing:0.003066pt;}
.ls1c{letter-spacing:0.003146pt;}
.ls1d{letter-spacing:0.003186pt;}
.ls6{letter-spacing:0.017468pt;}
.ls11{letter-spacing:0.049175pt;}
.ls10{letter-spacing:0.058361pt;}
.lsf{letter-spacing:0.058401pt;}
.ls1b{letter-spacing:0.446266pt;}
.ls18{letter-spacing:0.446306pt;}
.lsc{letter-spacing:95.965068pt;}
.ls8{letter-spacing:95.970153pt;}
.ls9{letter-spacing:95.972716pt;}
.ls4{letter-spacing:95.975130pt;}
.ls5{letter-spacing:95.975138pt;}
.ls16{letter-spacing:95.975178pt;}
.lse{letter-spacing:95.975194pt;}
.ls15{letter-spacing:95.977698pt;}
.lsd{letter-spacing:95.987748pt;}
.ls14{letter-spacing:95.987780pt;}
.ls2{letter-spacing:95.987788pt;}
.lsb{letter-spacing:95.993116pt;}
.lsa{letter-spacing:95.997778pt;}
.ls7{letter-spacing:96.000243pt;}
.ls13{letter-spacing:96.000315pt;}
.ls12{letter-spacing:96.000323pt;}
.ls3{letter-spacing:96.000363pt;}
.ls1{letter-spacing:96.000379pt;}
.ws8{word-spacing:-57.600002pt;}
.ws5{word-spacing:-36.640001pt;}
.ws10{word-spacing:-30.533333pt;}
.ws2{word-spacing:-24.864001pt;}
.ws0{word-spacing:-24.426667pt;}
.wsf{word-spacing:-23.482667pt;}
.ws11{word-spacing:-21.134403pt;}
.wsb{word-spacing:-20.682667pt;}
.ws3{word-spacing:-19.338667pt;}
.wsa{word-spacing:-18.592000pt;}
.ws9{word-spacing:-18.442667pt;}
.ws19{word-spacing:-17.098667pt;}
.ws18{word-spacing:-15.194667pt;}
.ws4{word-spacing:-12.213333pt;}
.wse{word-spacing:-0.090667pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:121.006509pt;}
.ws15{word-spacing:121.049403pt;}
.ws17{word-spacing:121.085647pt;}
.ws12{word-spacing:207.105434pt;}
.ws14{word-spacing:322.846529pt;}
.ws16{word-spacing:344.180970pt;}
.ws7{word-spacing:394.303636pt;}
.wsd{word-spacing:596.483776pt;}
.ws6{word-spacing:627.862564pt;}
.wsc{word-spacing:634.862703pt;}
._0{margin-left:-13.954135pt;}
._f{margin-left:-8.960280pt;}
._18{margin-left:-4.906667pt;}
._3{margin-left:-4.005046pt;}
._2{margin-left:-2.250667pt;}
._1{margin-left:-1.350400pt;}
._6{width:1.015514pt;}
._a{width:2.111686pt;}
._8{width:113.325380pt;}
._15{width:236.666563pt;}
._10{width:315.161986pt;}
._11{width:361.423440pt;}
._16{width:422.885006pt;}
._14{width:441.136048pt;}
._17{width:444.185232pt;}
._12{width:452.913466pt;}
._5{width:475.500340pt;}
._b{width:506.306475pt;}
._e{width:530.288650pt;}
._13{width:601.730668pt;}
._d{width:647.201230pt;}
._c{width:806.096339pt;}
._4{width:1684.586736pt;}
._9{width:3060.910234pt;}
._7{width:3175.659490pt;}
.fs2{font-size:42.666669pt;}
.fs6{font-size:53.333334pt;}
.fsa{font-size:58.666670pt;}
.fsc{font-size:64.000002pt;}
.fsf{font-size:69.066666pt;}
.fs9{font-size:69.333338pt;}
.fs7{font-size:74.666666pt;}
.fs14{font-size:77.333338pt;}
.fs13{font-size:78.933339pt;}
.fs8{font-size:80.000003pt;}
.fs19{font-size:81.600011pt;}
.fs5{font-size:85.333339pt;}
.fs11{font-size:88.786683pt;}
.fsd{font-size:88.799999pt;}
.fs15{font-size:90.666667pt;}
.fse{font-size:93.733339pt;}
.fs4{font-size:96.000003pt;}
.fs12{font-size:100.393343pt;}
.fs1{font-size:106.666667pt;}
.fs1b{font-size:112.000004pt;}
.fs10{font-size:128.000004pt;}
.fs18{font-size:133.333332pt;}
.fsb{font-size:144.000005pt;}
.fs17{font-size:159.999845pt;}
.fs3{font-size:160.000005pt;}
.fs16{font-size:171.851737pt;}
.fs0{font-size:225.066687pt;}
.fs1a{font-size:245.333336pt;}
.yf1{bottom:-1.003382pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:7.177085pt;}
.y176{bottom:9.244387pt;}
.y28{bottom:11.575733pt;}
.ycb{bottom:12.812252pt;}
.yb0{bottom:15.828005pt;}
.y21{bottom:16.213835pt;}
.y35{bottom:16.375733pt;}
.y112{bottom:16.961965pt;}
.y23{bottom:17.813837pt;}
.y8d{bottom:18.824553pt;}
.y179{bottom:20.444383pt;}
.yf0{bottom:21.396618pt;}
.yc7{bottom:23.828005pt;}
.y2c{bottom:24.213835pt;}
.y2d{bottom:24.375734pt;}
.y26{bottom:24.961966pt;}
.y14{bottom:24.961996pt;}
.y50{bottom:25.263824pt;}
.y3c{bottom:25.854286pt;}
.y175{bottom:26.844384pt;}
.y11a{bottom:30.811844pt;}
.y27{bottom:32.375734pt;}
.y58{bottom:36.998089pt;}
.y178{bottom:38.044384pt;}
.y135{bottom:39.153784pt;}
.y22{bottom:40.213836pt;}
.y77{bottom:41.484186pt;}
.yaa{bottom:42.426964pt;}
.yef{bottom:43.796649pt;}
.y174{bottom:44.444384pt;}
.y17f{bottom:47.296788pt;}
.ycd{bottom:49.347693pt;}
.y177{bottom:55.644385pt;}
.y114{bottom:56.942062pt;}
.ya4{bottom:59.168635pt;}
.y57{bottom:59.398095pt;}
.y173{bottom:62.044385pt;}
.ya9{bottom:64.826965pt;}
.yee{bottom:66.196680pt;}
.y119{bottom:69.211845pt;}
.y17e{bottom:69.696787pt;}
.y134{bottom:73.425785pt;}
.y99{bottom:74.531495pt;}
.y85{bottom:76.718535pt;}
.y8{bottom:77.720527pt;}
.y172{bottom:79.644385pt;}
.y111{bottom:80.554845pt;}
.yd9{bottom:81.347694pt;}
.y56{bottom:81.798089pt;}
.y76{bottom:83.079987pt;}
.y127{bottom:83.300447pt;}
.yc4{bottom:85.508225pt;}
.y159{bottom:87.568984pt;}
.yed{bottom:88.596701pt;}
.y141{bottom:89.727436pt;}
.ya3{bottom:90.528616pt;}
.y113{bottom:90.782057pt;}
.y17a{bottom:92.204408pt;}
.ybe{bottom:94.350056pt;}
.y11{bottom:96.127436pt;}
.y105{bottom:96.489438pt;}
.y32{bottom:97.511032pt;}
.y7{bottom:103.320526pt;}
.y12f{bottom:104.127436pt;}
.y55{bottom:104.198088pt;}
.y158{bottom:105.168954pt;}
.y98{bottom:105.611486pt;}
.y61{bottom:105.727491pt;}
.y133{bottom:107.697783pt;}
.yec{bottom:110.996721pt;}
.y171{bottom:113.168954pt;}
.y117{bottom:113.252256pt;}
.y118{bottom:115.611846pt;}
.y110{bottom:116.554846pt;}
.yc3{bottom:120.308227pt;}
.ya2{bottom:121.888597pt;}
.y157{bottom:122.768935pt;}
.ybd{bottom:125.134057pt;}
.y84{bottom:128.238557pt;}
.y70{bottom:128.880027pt;}
.y170{bottom:130.768935pt;}
.y140{bottom:132.927437pt;}
.yeb{bottom:133.396752pt;}
.y97{bottom:136.691477pt;}
.y1d{bottom:136.897652pt;}
.y60{bottom:137.087472pt;}
.yd8{bottom:137.347696pt;}
.y10{bottom:139.327457pt;}
.y182{bottom:139.537227pt;}
.y156{bottom:140.368905pt;}
.y132{bottom:141.969785pt;}
.y12e{bottom:147.327457pt;}
.y16f{bottom:148.368905pt;}
.ya8{bottom:149.626968pt;}
.y104{bottom:150.712530pt;}
.y10f{bottom:152.554848pt;}
.ya1{bottom:153.248598pt;}
.y83{bottom:153.998538pt;}
.y4a{bottom:154.847483pt;}
.yc2{bottom:155.108238pt;}
.y42{bottom:155.327458pt;}
.yea{bottom:155.796783pt;}
.ybc{bottom:155.918048pt;}
.ycc{bottom:157.347697pt;}
.y155{bottom:157.968886pt;}
.yb3{bottom:158.847483pt;}
.y181{bottom:161.937222pt;}
.y6f{bottom:162.000018pt;}
.y67{bottom:164.460641pt;}
.y16e{bottom:165.968886pt;}
.y122{bottom:166.847483pt;}
.y96{bottom:167.771458pt;}
.y5f{bottom:168.447443pt;}
.y53{bottom:171.647438pt;}
.y4f{bottom:171.647448pt;}
.ya7{bottom:172.026963pt;}
.y154{bottom:175.568866pt;}
.ye9{bottom:178.196803pt;}
.y82{bottom:178.638538pt;}
.yff{bottom:178.827505pt;}
.y6{bottom:179.636734pt;}
.y1c{bottom:180.097673pt;}
.yf{bottom:180.287468pt;}
.y16d{bottom:183.568867pt;}
.y180{bottom:184.337221pt;}
.ya0{bottom:184.608609pt;}
.ybb{bottom:186.702049pt;}
.y49{bottom:188.447464pt;}
.y10e{bottom:188.554859pt;}
.yd6{bottom:189.347698pt;}
.yc1{bottom:189.908233pt;}
.y12d{bottom:190.527459pt;}
.y66{bottom:191.820640pt;}
.y103{bottom:192.307293pt;}
.yb2{bottom:192.447464pt;}
.y153{bottom:193.168837pt;}
.ya6{bottom:194.426959pt;}
.y41{bottom:198.527459pt;}
.y5e{bottom:199.807444pt;}
.y121{bottom:200.447464pt;}
.ye8{bottom:200.596824pt;}
.y81{bottom:200.718539pt;}
.y16c{bottom:201.168837pt;}
.yfe{bottom:201.227536pt;}
.y13a{bottom:202.909391pt;}
.y95{bottom:202.995459pt;}
.y4e{bottom:205.247439pt;}
.yac{bottom:205.247459pt;}
.y5{bottom:207.796731pt;}
.y52{bottom:209.727439pt;}
.y13e{bottom:210.207469pt;}
.y152{bottom:210.768807pt;}
.y102{bottom:214.707292pt;}
.yba{bottom:217.486050pt;}
.ya5{bottom:218.106960pt;}
.ye{bottom:218.687460pt;}
.y16b{bottom:218.768808pt;}
.y9f{bottom:219.808610pt;}
.y80{bottom:222.798540pt;}
.ye7{bottom:222.996855pt;}
.y1b{bottom:223.297675pt;}
.yfd{bottom:223.627557pt;}
.y75{bottom:223.893652pt;}
.y4{bottom:224.436730pt;}
.y10d{bottom:224.554860pt;}
.yc0{bottom:224.708230pt;}
.y48{bottom:226.527465pt;}
.yaf{bottom:228.176580pt;}
.y151{bottom:228.368788pt;}
.yb1{bottom:230.527465pt;}
.y5d{bottom:231.167445pt;}
.y3b{bottom:233.727460pt;}
.y16a{bottom:236.368788pt;}
.y120{bottom:238.527465pt;}
.yab{bottom:238.847450pt;}
.y40{bottom:241.727460pt;}
.y94{bottom:242.955450pt;}
.y4d{bottom:243.327441pt;}
.y139{bottom:244.505193pt;}
.y7f{bottom:244.878551pt;}
.yb7{bottom:244.927456pt;}
.ye6{bottom:245.396876pt;}
.y150{bottom:245.968769pt;}
.yfc{bottom:246.027558pt;}
.yb9{bottom:248.270041pt;}
.y51{bottom:248.447441pt;}
.yd7{bottom:249.347700pt;}
.y12c{bottom:249.407486pt;}
.y13d{bottom:251.007456pt;}
.y169{bottom:253.968769pt;}
.y184{bottom:257.937215pt;}
.yd{bottom:259.327461pt;}
.ybf{bottom:259.508231pt;}
.y9e{bottom:260.128601pt;}
.y10c{bottom:260.554861pt;}
.yd1{bottom:262.347708pt;}
.y14f{bottom:263.568769pt;}
.y47{bottom:265.247446pt;}
.y74{bottom:265.489443pt;}
.y5c{bottom:266.367446pt;}
.y1a{bottom:266.497676pt;}
.yae{bottom:266.576581pt;}
.y7e{bottom:266.958551pt;}
.ye5{bottom:267.796876pt;}
.yfb{bottom:268.427548pt;}
.y101{bottom:268.930383pt;}
.y8b{bottom:270.664786pt;}
.y168{bottom:271.568769pt;}
.y65{bottom:273.727466pt;}
.y3a{bottom:276.927447pt;}
.y183{bottom:280.337214pt;}
.y14e{bottom:281.168780pt;}
.y11f{bottom:281.727467pt;}
.yb8{bottom:282.273042pt;}
.y93{bottom:282.915452pt;}
.yd0{bottom:284.347711pt;}
.y3f{bottom:284.927447pt;}
.yb6{bottom:285.887447pt;}
.y138{bottom:286.100994pt;}
.y4c{bottom:286.527442pt;}
.y167{bottom:289.168780pt;}
.y2b{bottom:290.047457pt;}
.y7d{bottom:290.158546pt;}
.ye4{bottom:290.196867pt;}
.y12b{bottom:290.207477pt;}
.yfa{bottom:290.827549pt;}
.y8f{bottom:291.647452pt;}
.y13c{bottom:291.807442pt;}
.y8a{bottom:292.744787pt;}
.y37{bottom:296.447447pt;}
.y10b{bottom:296.554862pt;}
.y46{bottom:297.727447pt;}
.y14d{bottom:298.768790pt;}
.yc{bottom:300.287452pt;}
.y9d{bottom:300.448602pt;}
.yd5{bottom:305.347711pt;}
.y3{bottom:305.490852pt;}
.y5b{bottom:306.687448pt;}
.y166{bottom:306.768791pt;}
.y73{bottom:307.084197pt;}
.y19{bottom:309.697663pt;}
.y34{bottom:312.127443pt;}
.ye3{bottom:312.596868pt;}
.yf9{bottom:313.227540pt;}
.y7c{bottom:315.918543pt;}
.y89{bottom:315.944788pt;}
.y14c{bottom:316.368791pt;}
.y64{bottom:316.927453pt;}
.y2f{bottom:320.127443pt;}
.y17d{bottom:323.268027pt;}
.y2a{bottom:323.647458pt;}
.y92{bottom:323.911453pt;}
.y165{bottom:324.368791pt;}
.y11e{bottom:324.927453pt;}
.y4b{bottom:325.247448pt;}
.yb5{bottom:326.527448pt;}
.y3e{bottom:328.127443pt;}
.yc9{bottom:329.347712pt;}
.y72{bottom:329.484195pt;}
.y36{bottom:330.047458pt;}
.y12a{bottom:331.007463pt;}
.y13b{bottom:332.607445pt;}
.y14b{bottom:333.968801pt;}
.y45{bottom:334.527448pt;}
.ye2{bottom:334.996858pt;}
.yf8{bottom:335.627530pt;}
.y10a{bottom:335.914853pt;}
.yb{bottom:338.687454pt;}
.y137{bottom:339.898112pt;}
.y9c{bottom:340.768604pt;}
.y7b{bottom:341.678534pt;}
.y88{bottom:341.704779pt;}
.y164{bottom:341.968802pt;}
.y5a{bottom:347.007449pt;}
.y14a{bottom:351.568812pt;}
.y25{bottom:352.127449pt;}
.y18{bottom:352.897659pt;}
.y33{bottom:355.327444pt;}
.yc6{bottom:355.807449pt;}
.y17c{bottom:356.868027pt;}
.y29{bottom:357.247454pt;}
.ye1{bottom:357.396849pt;}
.yf7{bottom:358.027531pt;}
.y163{bottom:359.568812pt;}
.y63{bottom:360.127449pt;}
.y2e{bottom:363.327444pt;}
.y91{bottom:365.055446pt;}
.y7a{bottom:365.198530pt;}
.y87{bottom:365.224775pt;}
.yb4{bottom:365.247454pt;}
.y20{bottom:368.127450pt;}
.y116{bottom:368.706244pt;}
.y149{bottom:369.168813pt;}
.yd4{bottom:369.347714pt;}
.y71{bottom:371.079997pt;}
.y3d{bottom:371.327445pt;}
.y129{bottom:371.807450pt;}
.y2{bottom:373.010865pt;}
.y44{bottom:373.247455pt;}
.y162{bottom:377.168813pt;}
.y109{bottom:379.114855pt;}
.ya{bottom:379.327445pt;}
.y11c{bottom:379.458052pt;}
.ye0{bottom:379.796850pt;}
.yf6{bottom:380.427522pt;}
.y9b{bottom:381.088605pt;}
.y79{bottom:385.838527pt;}
.y86{bottom:385.864772pt;}
.y148{bottom:386.768813pt;}
.y59{bottom:387.327450pt;}
.ycf{bottom:390.347712pt;}
.y115{bottom:391.106242pt;}
.y161{bottom:394.768813pt;}
.y24{bottom:395.327450pt;}
.y17{bottom:396.097661pt;}
.yc5{bottom:396.607452pt;}
.ydf{bottom:402.196841pt;}
.y136{bottom:402.603036pt;}
.yf5{bottom:402.827518pt;}
.y62{bottom:403.327451pt;}
.y147{bottom:404.368820pt;}
.y11b{bottom:405.058051pt;}
.y9a{bottom:407.384769pt;}
.y1f{bottom:411.327451pt;}
.yce{bottom:412.347715pt;}
.y160{bottom:412.368820pt;}
.y128{bottom:412.607453pt;}
.y146{bottom:421.968818pt;}
.y31{bottom:422.584243pt;}
.yde{bottom:424.596836pt;}
.y17b{bottom:424.635998pt;}
.yf4{bottom:425.227523pt;}
.y6e{bottom:426.959997pt;}
.y126{bottom:428.607453pt;}
.y15f{bottom:429.968818pt;}
.y125{bottom:430.527447pt;}
.y8c{bottom:435.494695pt;}
.y9{bottom:438.156427pt;}
.yd3{bottom:438.347714pt;}
.y145{bottom:439.568815pt;}
.y1{bottom:440.530866pt;}
.y108{bottom:445.196429pt;}
.ydd{bottom:446.996842pt;}
.y15e{bottom:447.568815pt;}
.yf3{bottom:447.627518pt;}
.y131{bottom:452.556419pt;}
.y13f{bottom:454.156429pt;}
.y69{bottom:455.773335pt;}
.y144{bottom:457.168815pt;}
.y15{bottom:458.998950pt;}
.y12{bottom:458.999789pt;}
.y124{bottom:459.327452pt;}
.yd2{bottom:460.347716pt;}
.y1e{bottom:462.156429pt;}
.y15d{bottom:465.168816pt;}
.y16{bottom:467.374277pt;}
.ydc{bottom:469.396837pt;}
.yf2{bottom:470.027517pt;}
.y38{bottom:470.156429pt;}
.y30{bottom:470.584245pt;}
.y90{bottom:471.384773pt;}
.y143{bottom:474.768816pt;}
.y6d{bottom:474.999791pt;}
.y39{bottom:478.156429pt;}
.yc8{bottom:481.347717pt;}
.y13{bottom:481.511059pt;}
.y106{bottom:482.206109pt;}
.y15c{bottom:482.768816pt;}
.yda{bottom:483.347717pt;}
.y6b{bottom:483.933332pt;}
.y78{bottom:486.156429pt;}
.y107{bottom:488.396425pt;}
.y100{bottom:490.206109pt;}
.ydb{bottom:491.796835pt;}
.y6a{bottom:491.933332pt;}
.y54{bottom:492.187926pt;}
.y142{bottom:492.368816pt;}
.y130{bottom:492.556423pt;}
.y123{bottom:494.156431pt;}
.y8e{bottom:497.705406pt;}
.y68{bottom:498.973334pt;}
.y6c{bottom:499.933333pt;}
.y15b{bottom:500.368817pt;}
.yad{bottom:501.428135pt;}
.y11d{bottom:502.156415pt;}
.y15a{bottom:513.028555pt;}
.yca{bottom:519.080002pt;}
.h3{height:35.968002pt;}
.h12{height:39.040000pt;}
.ha{height:44.960000pt;}
.h15{height:50.416667pt;}
.h1a{height:52.845442pt;}
.h22{height:54.359375pt;}
.h11{height:55.458336pt;}
.h21{height:56.765625pt;}
.h13{height:57.130208pt;}
.h16{height:60.500002pt;}
.h29{height:62.944000pt;}
.h1b{height:65.289583pt;}
.h6{height:65.291671pt;}
.he{height:65.541671pt;}
.h24{height:69.890627pt;}
.hc{height:70.583333pt;}
.h1f{height:73.104172pt;}
.h5{height:73.453127pt;}
.hf{height:73.546877pt;}
.hd{height:73.552633pt;}
.h1e{height:74.616672pt;}
.h25{height:75.625002pt;}
.h28{height:77.137510pt;}
.h17{height:78.816003pt;}
.h10{height:79.304929pt;}
.hb{height:79.952641pt;}
.h7{height:80.666672pt;}
.h18{height:83.943749pt;}
.h20{height:85.708334pt;}
.h19{height:88.607297pt;}
.h2{height:89.920001pt;}
.h8{height:90.750003pt;}
.h1d{height:94.903082pt;}
.h2b{height:105.875003pt;}
.h27{height:112.399999pt;}
.h1c{height:121.000004pt;}
.h14{height:121.392004pt;}
.h4{height:129.140629pt;}
.h26{height:134.879869pt;}
.h9{height:134.880004pt;}
.h23{height:144.871015pt;}
.h1{height:189.731217pt;}
.h2a{height:206.816002pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x44{left:14.102003pt;}
.x16{left:20.654231pt;}
.x33{left:23.055120pt;}
.x46{left:25.724411pt;}
.x51{left:29.408385pt;}
.x1a{left:33.724411pt;}
.x1d{left:35.228317pt;}
.x59{left:36.779529pt;}
.x2{left:41.724411pt;}
.x17{left:43.228317pt;}
.x25{left:45.253373pt;}
.xa{left:46.854550pt;}
.x6{left:47.997062pt;}
.x3{left:51.228318pt;}
.x34{left:52.323075pt;}
.x2c{left:54.455964pt;}
.x28{left:61.000002pt;}
.x1{left:63.015749pt;}
.x52{left:65.724411pt;}
.x3d{left:66.826597pt;}
.x3e{left:68.110979pt;}
.x1e{left:73.724412pt;}
.x21{left:74.931028pt;}
.x12{left:78.868395pt;}
.x38{left:80.309640pt;}
.x1b{left:81.724413pt;}
.xe{left:89.724413pt;}
.x57{left:92.039953pt;}
.x48{left:93.000003pt;}
.x18{left:94.455963pt;}
.xb{left:98.082198pt;}
.x5{left:99.228323pt;}
.x4{left:100.842133pt;}
.x13{left:102.455963pt;}
.x2d{left:104.060353pt;}
.x22{left:110.199478pt;}
.x61{left:116.640414pt;}
.x53{left:117.883350pt;}
.x58{left:129.724414pt;}
.x20{left:137.724414pt;}
.x4a{left:149.644335pt;}
.x35{left:161.724415pt;}
.x5e{left:175.940508pt;}
.x62{left:192.026066pt;}
.x11{left:196.324026pt;}
.x39{left:222.559640pt;}
.x43{left:225.084707pt;}
.x3c{left:226.523067pt;}
.x5b{left:248.547628pt;}
.x60{left:255.817174pt;}
.x5c{left:259.144532pt;}
.x5d{left:268.441403pt;}
.x2a{left:320.281510pt;}
.x1c{left:373.335982pt;}
.x9{left:389.338482pt;}
.x4d{left:393.724413pt;}
.x41{left:402.523053pt;}
.x26{left:429.253374pt;}
.x47{left:435.424574pt;}
.x5f{left:440.079520pt;}
.x49{left:476.727035pt;}
.x27{left:479.013935pt;}
.x2b{left:481.027135pt;}
.x55{left:483.136763pt;}
.x3f{left:490.523056pt;}
.x29{left:492.628086pt;}
.x56{left:494.141036pt;}
.x36{left:504.133866pt;}
.x2e{left:516.338617pt;}
.x30{left:529.070169pt;}
.x4e{left:529.968517pt;}
.x2f{left:564.338618pt;}
.x45{left:565.610678pt;}
.x37{left:570.585318pt;}
.x31{left:578.674559pt;}
.x54{left:584.761034pt;}
.x5a{left:591.333319pt;}
.x3b{left:598.241749pt;}
.x10{left:652.799922pt;}
.x7{left:688.763342pt;}
.x3a{left:695.960652pt;}
.xf{left:704.619343pt;}
.x32{left:718.690323pt;}
.x40{left:730.523123pt;}
.x15{left:736.499899pt;}
.x1f{left:786.251975pt;}
.x50{left:849.724427pt;}
.x23{left:917.041706pt;}
.x24{left:925.095020pt;}
.x14{left:926.361195pt;}
.xc{left:928.027210pt;}
.x8{left:931.759070pt;}
.x4b{left:935.284001pt;}
.x4c{left:937.136601pt;}
.x4f{left:938.989200pt;}
.x19{left:941.374913pt;}
.xd{left:942.707723pt;}
.x42{left:943.920583pt;}
}




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