
    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_0a15442266a536526afe082d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.051000;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_a965a32a6def3c01feb6c205.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_49a22bd3bb873b7711208baa.woff')format("woff");}.ff3{font-family:ff3;line-height:0.834473;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_96c56c9f571d2cb699af54fe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.051000;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_4ce0a83851bc026aab750f3c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032000;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_537d36a81ce971d512c239bd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.032000;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_611d853df8635e9f024fc5ce.woff')format("woff");}.ff8{font-family:ff8;line-height:1.055000;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_11cae250027a04043c8a1d28.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970703;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_d128cb800cf8ddc14bde878f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.970703;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_c6a49f3a305803174d0868fb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_efe0dd49f5db6fd795424e4a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.772949;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:-65.250000px;}
.v3{vertical-align:-42.750000px;}
.v2{vertical-align:-36.120000px;}
.v5{vertical-align:-7.350000px;}
.v6{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.120000px;}
.ls2e{letter-spacing:-2.838000px;}
.ls2f{letter-spacing:-2.244000px;}
.ls1{letter-spacing:-2.172000px;}
.ls30{letter-spacing:-1.614000px;}
.ls17{letter-spacing:-1.116000px;}
.ls32{letter-spacing:-0.642000px;}
.ls8{letter-spacing:-0.171600px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.465600px;}
.ls25{letter-spacing:0.636000px;}
.ls18{letter-spacing:0.684000px;}
.ls9{letter-spacing:32.197500px;}
.lsa{letter-spacing:32.250000px;}
.lsc{letter-spacing:32.317500px;}
.lsd{letter-spacing:32.370000px;}
.lsb{letter-spacing:32.377500px;}
.ls20{letter-spacing:32.833650px;}
.ls21{letter-spacing:32.965500px;}
.ls2b{letter-spacing:43.353150px;}
.ls2c{letter-spacing:44.071650px;}
.ls1a{letter-spacing:51.022500px;}
.ls19{letter-spacing:51.075000px;}
.ls7{letter-spacing:51.114150px;}
.ls1c{letter-spacing:51.202500px;}
.ls1b{letter-spacing:51.255000px;}
.ls31{letter-spacing:51.264150px;}
.ls1e{letter-spacing:51.982650px;}
.lsf{letter-spacing:59.025150px;}
.ls33{letter-spacing:59.043300px;}
.lse{letter-spacing:59.145150px;}
.ls1d{letter-spacing:59.175150px;}
.ls10{letter-spacing:59.205150px;}
.ls23{letter-spacing:59.713650px;}
.ls22{letter-spacing:59.845500px;}
.ls1f{letter-spacing:71.041650px;}
.ls24{letter-spacing:71.071650px;}
.ls26{letter-spacing:71.203500px;}
.ls28{letter-spacing:71.730150px;}
.ls29{letter-spacing:71.862000px;}
.ls4{letter-spacing:78.922650px;}
.ls3{letter-spacing:78.952650px;}
.ls2d{letter-spacing:79.054500px;}
.ls2{letter-spacing:79.084500px;}
.ls6{letter-spacing:86.863650px;}
.ls27{letter-spacing:90.819150px;}
.ls2a{letter-spacing:90.951000px;}
.ls12{letter-spacing:110.566650px;}
.ls14{letter-spacing:110.596650px;}
.ls16{letter-spacing:110.626650px;}
.ls11{letter-spacing:110.698500px;}
.ls13{letter-spacing:110.728500px;}
.ls15{letter-spacing:110.758500px;}
.ls34{letter-spacing:114.552150px;}
.ls35{letter-spacing:114.684000px;}
.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;}
}
.ws1e{word-spacing:-58.983600px;}
.ws11{word-spacing:-53.426100px;}
.ws15{word-spacing:-42.662400px;}
.ws19{word-spacing:-40.358400px;}
.ws6{word-spacing:-38.308950px;}
.ws10{word-spacing:-36.940800px;}
.wsa{word-spacing:-36.902400px;}
.ws1a{word-spacing:-35.605050px;}
.ws16{word-spacing:-33.484800px;}
.ws12{word-spacing:-33.446400px;}
.ws0{word-spacing:-31.142400px;}
.ws1{word-spacing:-27.875550px;}
.ws4{word-spacing:-27.686400px;}
.ws1c{word-spacing:-26.280450px;}
.ws13{word-spacing:-23.078400px;}
.wse{word-spacing:-20.812950px;}
.wsf{word-spacing:-20.776500px;}
.ws9{word-spacing:-19.719450px;}
.wsc{word-spacing:-18.470400px;}
.wsb{word-spacing:-18.432000px;}
.wsd{word-spacing:-17.316000px;}
.ws7{word-spacing:-16.166400px;}
.ws8{word-spacing:-16.128000px;}
.ws14{word-spacing:-15.540450px;}
.ws18{word-spacing:-13.296450px;}
.ws5{word-spacing:-12.710400px;}
.ws17{word-spacing:-12.702450px;}
.ws3{word-spacing:-12.672000px;}
.ws2{word-spacing:0.000000px;}
.ws1d{word-spacing:1734.018150px;}
.ws1b{word-spacing:1760.526750px;}
._a{margin-left:-7.617150px;}
._5{margin-left:-5.618250px;}
._6{margin-left:-4.553850px;}
._0{margin-left:-3.527850px;}
._2{margin-left:-2.015250px;}
._7{margin-left:-1.008300px;}
._1{width:1.216500px;}
._3{width:2.517900px;}
._4{width:3.876150px;}
._9{width:5.007900px;}
._c{width:169.265100px;}
._8{width:806.020500px;}
._b{width:1006.253550px;}
._d{width:1031.609100px;}
._e{width:1764.838050px;}
.fcc{color:rgb(255,158,24);}
.fcb{color:rgb(89,155,160);}
.fca{color:rgb(181,87,134);}
.fc6{color:rgb(189,218,223);}
.fc9{color:rgb(255,255,255);}
.fc8{color:rgb(34,34,34);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(1,30,65);}
.fc3{color:rgb(61,124,201);}
.fc7{color:rgb(153,51,102);}
.fc2{color:rgb(3,80,174);}
.fc1{color:rgb(0,33,105);}
.fc0{color:rgb(34,47,93);}
.fs8{font-size:49.500000px;}
.fsb{font-size:49.650000px;}
.fs26{font-size:54.000000px;}
.fs25{font-size:54.150000px;}
.fs14{font-size:58.500000px;}
.fs16{font-size:58.650000px;}
.fs10{font-size:63.000000px;}
.fsf{font-size:63.150000px;}
.fs27{font-size:67.500000px;}
.fs24{font-size:67.650000px;}
.fs15{font-size:72.000000px;}
.fs17{font-size:72.150000px;}
.fs21{font-size:81.000000px;}
.fs4{font-size:81.150000px;}
.fs18{font-size:85.500000px;}
.fs9{font-size:85.650000px;}
.fs20{font-size:90.000000px;}
.fs1f{font-size:90.150000px;}
.fs6{font-size:94.500000px;}
.fs7{font-size:94.650000px;}
.fs1e{font-size:103.500000px;}
.fs1a{font-size:103.650000px;}
.fsa{font-size:108.150000px;}
.fs12{font-size:117.150000px;}
.fs23{font-size:117.300000px;}
.fs0{font-size:121.650000px;}
.fs3{font-size:121.800000px;}
.fsc{font-size:126.150000px;}
.fs1b{font-size:130.650000px;}
.fs1d{font-size:130.800000px;}
.fs22{font-size:135.150000px;}
.fs13{font-size:144.150000px;}
.fs1c{font-size:144.300000px;}
.fsd{font-size:157.650000px;}
.fse{font-size:157.800000px;}
.fs1{font-size:166.650000px;}
.fs2{font-size:166.800000px;}
.fs11{font-size:216.300000px;}
.fs5{font-size:238.800000px;}
.fs19{font-size:238.950000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:11.100000px;}
.y74{bottom:12.900000px;}
.yf9{bottom:16.200000px;}
.y136{bottom:22.237500px;}
.y108{bottom:30.037500px;}
.ye8{bottom:32.212500px;}
.yf4{bottom:35.775000px;}
.yaf{bottom:38.662500px;}
.y73{bottom:38.812500px;}
.ybc{bottom:39.750000px;}
.y120{bottom:40.650000px;}
.y11e{bottom:41.100000px;}
.yce{bottom:41.662500px;}
.y11f{bottom:42.037500px;}
.ye7{bottom:53.625000px;}
.y135{bottom:57.187500px;}
.y1{bottom:60.075000px;}
.y5b{bottom:60.112500px;}
.y13b{bottom:60.637500px;}
.ycd{bottom:61.950000px;}
.y72{bottom:64.725000px;}
.y23{bottom:64.837500px;}
.y12f{bottom:68.737500px;}
.y107{bottom:73.950000px;}
.yf3{bottom:77.362500px;}
.ya0{bottom:79.312500px;}
.ydd{bottom:80.962500px;}
.y7{bottom:85.950000px;}
.y137{bottom:86.475000px;}
.y3c{bottom:89.137500px;}
.y12e{bottom:90.150000px;}
.y71{bottom:90.637500px;}
.y134{bottom:92.100000px;}
.ycc{bottom:93.487500px;}
.y22{bottom:94.125000px;}
.yae{bottom:98.775000px;}
.y109{bottom:99.450000px;}
.y8c{bottom:102.937500px;}
.ybb{bottom:105.750000px;}
.y92{bottom:109.387500px;}
.y4b{bottom:111.262500px;}
.y44{bottom:113.512500px;}
.y32{bottom:113.850000px;}
.y11{bottom:115.312500px;}
.y70{bottom:116.550000px;}
.y5a{bottom:118.687500px;}
.ye6{bottom:120.600000px;}
.y6{bottom:121.987500px;}
.y21{bottom:122.287500px;}
.y8b{bottom:124.350000px;}
.ycb{bottom:125.025000px;}
.y9f{bottom:126.637500px;}
.y133{bottom:127.012500px;}
.yf2{bottom:128.062500px;}
.y106{bottom:131.400000px;}
.yad{bottom:131.437500px;}
.y4a{bottom:133.800000px;}
.y43{bottom:136.050000px;}
.y3b{bottom:136.462500px;}
.y115{bottom:142.162500px;}
.y6f{bottom:142.462500px;}
.yba{bottom:145.200000px;}
.y31{bottom:146.550000px;}
.y20{bottom:151.575000px;}
.y91{bottom:152.220000px;}
.y12d{bottom:153.525000px;}
.y122{bottom:155.925000px;}
.y49{bottom:156.300000px;}
.y5{bottom:158.025000px;}
.y42{bottom:158.550000px;}
.y132{bottom:161.970000px;}
.y10{bottom:162.000000px;}
.ye5{bottom:165.675000px;}
.y8a{bottom:166.050000px;}
.ydc{bottom:166.620000px;}
.y6e{bottom:168.375000px;}
.yca{bottom:171.225000px;}
.y90{bottom:172.500000px;}
.y13d{bottom:174.900000px;}
.y9e{bottom:175.050000px;}
.y105{bottom:175.350000px;}
.y59{bottom:176.130000px;}
.yac{bottom:178.755000px;}
.y48{bottom:178.845000px;}
.y114{bottom:179.355000px;}
.y1f{bottom:180.855000px;}
.y41{bottom:181.080000px;}
.yb9{bottom:183.495000px;}
.y89{bottom:187.425000px;}
.y30{bottom:193.845000px;}
.y4{bottom:194.100000px;}
.y6d{bottom:194.280000px;}
.y3a{bottom:198.420000px;}
.y47{bottom:201.375000px;}
.y40{bottom:203.625000px;}
.ydb{bottom:203.775000px;}
.yc9{bottom:203.895000px;}
.y88{bottom:208.845000px;}
.yab{bottom:211.425000px;}
.ye4{bottom:211.875000px;}
.y12c{bottom:212.100000px;}
.y8f{bottom:215.295000px;}
.y131{bottom:216.030000px;}
.y113{bottom:216.525000px;}
.y104{bottom:218.130000px;}
.y6c{bottom:220.200000px;}
.y9d{bottom:222.375000px;}
.y46{bottom:223.920000px;}
.yf{bottom:223.950000px;}
.y1e{bottom:224.820000px;}
.y3f{bottom:226.155000px;}
.y2f{bottom:226.530000px;}
.yf1{bottom:229.470000px;}
.yda{bottom:229.695000px;}
.yc8{bottom:235.425000px;}
.y93{bottom:235.575000px;}
.yb8{bottom:237.570000px;}
.y5c{bottom:241.020000px;}
.yaa{bottom:244.095000px;}
.y39{bottom:244.620000px;}
.y6b{bottom:246.120000px;}
.y45{bottom:246.450000px;}
.y3e{bottom:248.700000px;}
.y87{bottom:250.545000px;}
.y130{bottom:250.950000px;}
.y1d{bottom:252.975000px;}
.y12b{bottom:254.925000px;}
.ye3{bottom:256.905000px;}
.y8e{bottom:256.980000px;}
.y2e{bottom:258.075000px;}
.yf0{bottom:265.500000px;}
.y13a{bottom:266.880000px;}
.yc7{bottom:266.970000px;}
.y3{bottom:268.650000px;}
.y112{bottom:269.475000px;}
.y9c{bottom:269.700000px;}
.yd9{bottom:270.225000px;}
.ye{bottom:271.275000px;}
.y6a{bottom:272.025000px;}
.y103{bottom:276.750000px;}
.yb7{bottom:277.005000px;}
.y1c{bottom:282.255000px;}
.y53{bottom:283.755000px;}
.ya9{bottom:291.420000px;}
.yd8{bottom:291.645000px;}
.y86{bottom:292.200000px;}
.y124{bottom:296.820000px;}
.y69{bottom:297.945000px;}
.yc6{bottom:298.500000px;}
.y8d{bottom:298.650000px;}
.y11d{bottom:300.195000px;}
.y2d{bottom:305.370000px;}
.y9b{bottom:305.730000px;}
.y38{bottom:306.570000px;}
.y111{bottom:306.645000px;}
.y1b{bottom:310.425000px;}
.y52{bottom:311.925000px;}
.y12a{bottom:313.500000px;}
.y3d{bottom:314.970000px;}
.yef{bottom:316.200000px;}
.yd{bottom:317.475000px;}
.y2{bottom:319.320000px;}
.y68{bottom:323.850000px;}
.yd7{bottom:328.845000px;}
.yb6{bottom:331.095000px;}
.y102{bottom:335.325000px;}
.y2c{bottom:338.070000px;}
.y1a{bottom:339.705000px;}
.y11c{bottom:340.725000px;}
.ya8{bottom:342.120000px;}
.yc5{bottom:345.825000px;}
.y67{bottom:349.755000px;}
.yee{bottom:351.120000px;}
.y37{bottom:353.895000px;}
.y139{bottom:356.250000px;}
.y129{bottom:356.280000px;}
.y9a{bottom:357.570000px;}
.y110{bottom:359.595000px;}
.yd6{bottom:368.250000px;}
.y19{bottom:369.000000px;}
.yb5{bottom:369.375000px;}
.y2b{bottom:370.725000px;}
.y66{bottom:375.675000px;}
.yc4{bottom:377.370000px;}
.ye2{bottom:377.475000px;}
.y101{bottom:378.120000px;}
.yc{bottom:379.425000px;}
.y11b{bottom:382.425000px;}
.ya7{bottom:389.445000px;}
.yd5{bottom:389.655000px;}
.y10f{bottom:396.780000px;}
.y84{bottom:398.280000px;}
.y36{bottom:400.095000px;}
.y65{bottom:401.595000px;}
.yed{bottom:401.820000px;}
.yb4{bottom:408.825000px;}
.yc3{bottom:408.900000px;}
.y99{bottom:411.630000px;}
.y18{bottom:411.825000px;}
.y128{bottom:414.870000px;}
.y2a{bottom:418.050000px;}
.y83{bottom:418.575000px;}
.ya6{bottom:422.100000px;}
.y7c{bottom:422.175000px;}
.ye1{bottom:423.645000px;}
.yd4{bottom:425.700000px;}
.yb{bottom:426.750000px;}
.y64{bottom:427.500000px;}
.y11a{bottom:434.250000px;}
.y100{bottom:436.725000px;}
.y7b{bottom:443.550000px;}
.yb3{bottom:447.120000px;}
.y10e{bottom:449.745000px;}
.y29{bottom:450.705000px;}
.y51{bottom:452.445000px;}
.yec{bottom:452.505000px;}
.y63{bottom:454.545000px;}
.y138{bottom:454.995000px;}
.yc2{bottom:455.100000px;}
.y17{bottom:455.745000px;}
.y127{bottom:457.695000px;}
.y82{bottom:461.370000px;}
.y35{bottom:462.045000px;}
.yd3{bottom:462.900000px;}
.y98{bottom:463.455000px;}
.y7a{bottom:464.970000px;}
.ye0{bottom:468.720000px;}
.yf8{bottom:468.825000px;}
.ya5{bottom:469.380000px;}
.y119{bottom:470.280000px;}
.y50{bottom:474.975000px;}
.yff{bottom:479.505000px;}
.y62{bottom:480.450000px;}
.y81{bottom:481.650000px;}
.y28{bottom:483.375000px;}
.yfc{bottom:483.450000px;}
.y16{bottom:485.070000px;}
.y79{bottom:485.250000px;}
.y10d{bottom:486.900000px;}
.yc1{bottom:487.755000px;}
.yeb{bottom:488.550000px;}
.ya{bottom:488.700000px;}
.y4f{bottom:497.505000px;}
.y97{bottom:499.500000px;}
.yb2{bottom:501.195000px;}
.y126{bottom:501.630000px;}
.ya4{bottom:502.095000px;}
.yd2{bottom:502.320000px;}
.y80{bottom:503.070000px;}
.y61{bottom:506.370000px;}
.y34{bottom:509.370000px;}
.ydf{bottom:513.780000px;}
.y27{bottom:516.045000px;}
.yc0{bottom:519.345000px;}
.yf7{bottom:519.525000px;}
.y4e{bottom:520.050000px;}
.y85{bottom:524.475000px;}
.yd1{bottom:527.100000px;}
.y78{bottom:528.075000px;}
.y15{bottom:528.975000px;}
.y60{bottom:532.245000px;}
.y118{bottom:534.495000px;}
.yfb{bottom:535.275000px;}
.yfe{bottom:538.095000px;}
.y10c{bottom:539.850000px;}
.yea{bottom:540.375000px;}
.yb1{bottom:540.600000px;}
.y4d{bottom:542.595000px;}
.y7f{bottom:544.755000px;}
.y77{bottom:548.325000px;}
.ya3{bottom:549.375000px;}
.y96{bottom:550.200000px;}
.y13c{bottom:550.380000px;}
.y9{bottom:550.650000px;}
.ybf{bottom:550.875000px;}
.yf6{bottom:555.570000px;}
.y5f{bottom:558.150000px;}
.y14{bottom:558.255000px;}
.y125{bottom:559.095000px;}
.yde{bottom:559.950000px;}
.y121{bottom:561.570000px;}
.y26{bottom:563.370000px;}
.y4c{bottom:565.125000px;}
.y7e{bottom:566.130000px;}
.yd0{bottom:566.505000px;}
.y33{bottom:571.320000px;}
.yfa{bottom:571.350000px;}
.y117{bottom:575.070000px;}
.y10b{bottom:577.005000px;}
.ye9{bottom:578.670000px;}
.yb0{bottom:578.925000px;}
.yfd{bottom:580.905000px;}
.ybe{bottom:582.405000px;}
.y123{bottom:583.995000px;}
.y5e{bottom:584.070000px;}
.y76{bottom:591.150000px;}
.ycf{bottom:591.300000px;}
.y57{bottom:595.350000px;}
.y25{bottom:596.025000px;}
.y55{bottom:597.525000px;}
.ya2{bottom:597.825000px;}
.y13{bottom:601.080000px;}
.y95{bottom:602.025000px;}
.yf5{bottom:607.380000px;}
.y7d{bottom:607.830000px;}
.y75{bottom:611.445000px;}
.y10a{bottom:614.205000px;}
.y116{bottom:616.725000px;}
.y56{bottom:623.505000px;}
.y54{bottom:625.695000px;}
.y24{bottom:627.570000px;}
.y12{bottom:630.375000px;}
.y5d{bottom:631.695000px;}
.ybd{bottom:659.370000px;}
.y94{bottom:718.155000px;}
.y8{bottom:719.070000px;}
.y58{bottom:724.695000px;}
.h23{height:37.940552px;}
.h8{height:42.867000px;}
.he{height:42.996900px;}
.h10{height:54.558000px;}
.hf{height:54.687900px;}
.h2d{height:58.455000px;}
.h2c{height:58.584900px;}
.h15{height:62.352000px;}
.h16{height:62.481900px;}
.h29{height:62.883325px;}
.h11{height:68.368875px;}
.h18{height:72.033750px;}
.h17{height:72.160125px;}
.h1a{height:74.727000px;}
.h19{height:74.858100px;}
.h21{height:77.940000px;}
.h20{height:78.069900px;}
.h22{height:89.631000px;}
.h1f{height:89.760900px;}
.h2a{height:90.023100px;}
.h6{height:93.078882px;}
.h4{height:93.193652px;}
.ha{height:93.657900px;}
.h2b{height:94.523100px;}
.h5{height:98.210845px;}
.h26{height:102.490125px;}
.h14{height:102.616500px;}
.h1{height:105.348900px;}
.h9{height:105.478800px;}
.h2e{height:110.153687px;}
.h27{height:110.294458px;}
.h28{height:110.409229px;}
.h1c{height:113.142900px;}
.h1e{height:113.272800px;}
.h13{height:124.833900px;}
.h1d{height:124.963800px;}
.h2{height:127.510034px;}
.h3{height:127.624805px;}
.hd{height:132.820125px;}
.hb{height:136.524900px;}
.hc{height:136.654800px;}
.h24{height:144.318900px;}
.h25{height:144.448800px;}
.h12{height:165.499072px;}
.h7{height:182.714648px;}
.h1b{height:182.829419px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5b{left:40.162479px;}
.x5f{left:56.024979px;}
.x16{left:66.337479px;}
.x1{left:68.737479px;}
.x37{left:70.312479px;}
.x17{left:79.912479px;}
.x2d{left:81.224979px;}
.x9{left:86.924979px;}
.x13{left:89.287479px;}
.x10{left:90.862479px;}
.x4a{left:94.274979px;}
.x2e{left:101.474979px;}
.x41{left:110.587479px;}
.x38{left:124.349979px;}
.xa{left:127.462479px;}
.x14{left:129.787479px;}
.x11{left:131.399979px;}
.x67{left:132.899979px;}
.x4b{left:134.812479px;}
.x65{left:140.587479px;}
.x39{left:158.144979px;}
.x3a{left:178.394979px;}
.x3f{left:196.769979px;}
.x46{left:216.719979px;}
.x51{left:225.269979px;}
.x4{left:242.624979px;}
.x61{left:246.524979px;}
.x2{left:267.344979px;}
.x59{left:274.154979px;}
.x56{left:282.944979px;}
.x43{left:308.894979px;}
.x62{left:311.444979px;}
.x21{left:320.024979px;}
.x35{left:323.969979px;}
.x58{left:346.799979px;}
.x36{left:356.894979px;}
.x12{left:379.694979px;}
.x1a{left:382.874979px;}
.x1f{left:384.254979px;}
.x5e{left:392.549979px;}
.x1b{left:396.449979px;}
.x29{left:419.549979px;}
.x40{left:424.469979px;}
.x3c{left:428.099979px;}
.x23{left:435.524979px;}
.x22{left:440.774979px;}
.x27{left:442.379979px;}
.x52{left:453.899979px;}
.x5c{left:456.599979px;}
.x2a{left:460.094979px;}
.x3{left:477.194979px;}
.x53{left:493.124979px;}
.x8{left:495.569979px;}
.x4d{left:500.174979px;}
.x47{left:502.124979px;}
.x49{left:505.499979px;}
.x64{left:508.874979px;}
.xf{left:526.244979px;}
.x32{left:528.524979px;}
.x6{left:531.224979px;}
.x2f{left:537.794979px;}
.x7{left:544.844979px;}
.x33{left:548.774979px;}
.x30{left:558.044979px;}
.x24{left:580.379979px;}
.xd{left:587.624979px;}
.x5{left:600.749979px;}
.xc{left:623.069979px;}
.xe{left:628.154979px;}
.x26{left:631.499979px;}
.x3d{left:653.654979px;}
.x5a{left:671.174979px;}
.x66{left:685.049979px;}
.x15{left:686.399979px;}
.x44{left:689.594979px;}
.x18{left:697.454979px;}
.x1e{left:701.594979px;}
.x28{left:704.999979px;}
.x3e{left:707.729979px;}
.x19{left:711.074979px;}
.x4c{left:715.649979px;}
.x25{left:727.049979px;}
.x4e{left:731.354979px;}
.x54{left:735.674979px;}
.x57{left:739.649979px;}
.xb{left:742.019979px;}
.x45{left:767.594979px;}
.x4f{left:771.899979px;}
.x63{left:774.404979px;}
.x55{left:776.204979px;}
.x48{left:785.819979px;}
.x50{left:819.194979px;}
.x42{left:821.654979px;}
.x3b{left:824.129979px;}
.x5d{left:865.169979px;}
.x2b{left:965.399979px;}
.x31{left:987.254979px;}
.x2c{left:1005.944979px;}
.x34{left:1007.549979px;}
.x1c{left:1016.744979px;}
.x20{left:1018.904979px;}
.x1d{left:1030.349979px;}
.x60{left:1316.294979px;}
@media print{
.v4{vertical-align:-58.000000pt;}
.v3{vertical-align:-38.000000pt;}
.v2{vertical-align:-32.106667pt;}
.v5{vertical-align:-6.533333pt;}
.v6{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.106667pt;}
.ls2e{letter-spacing:-2.522667pt;}
.ls2f{letter-spacing:-1.994667pt;}
.ls1{letter-spacing:-1.930667pt;}
.ls30{letter-spacing:-1.434667pt;}
.ls17{letter-spacing:-0.992000pt;}
.ls32{letter-spacing:-0.570667pt;}
.ls8{letter-spacing:-0.152533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.413867pt;}
.ls25{letter-spacing:0.565333pt;}
.ls18{letter-spacing:0.608000pt;}
.ls9{letter-spacing:28.620000pt;}
.lsa{letter-spacing:28.666667pt;}
.lsc{letter-spacing:28.726667pt;}
.lsd{letter-spacing:28.773333pt;}
.lsb{letter-spacing:28.780000pt;}
.ls20{letter-spacing:29.185467pt;}
.ls21{letter-spacing:29.302667pt;}
.ls2b{letter-spacing:38.536133pt;}
.ls2c{letter-spacing:39.174800pt;}
.ls1a{letter-spacing:45.353333pt;}
.ls19{letter-spacing:45.400000pt;}
.ls7{letter-spacing:45.434800pt;}
.ls1c{letter-spacing:45.513333pt;}
.ls1b{letter-spacing:45.560000pt;}
.ls31{letter-spacing:45.568133pt;}
.ls1e{letter-spacing:46.206800pt;}
.lsf{letter-spacing:52.466800pt;}
.ls33{letter-spacing:52.482933pt;}
.lse{letter-spacing:52.573467pt;}
.ls1d{letter-spacing:52.600133pt;}
.ls10{letter-spacing:52.626800pt;}
.ls23{letter-spacing:53.078800pt;}
.ls22{letter-spacing:53.196000pt;}
.ls1f{letter-spacing:63.148133pt;}
.ls24{letter-spacing:63.174800pt;}
.ls26{letter-spacing:63.292000pt;}
.ls28{letter-spacing:63.760133pt;}
.ls29{letter-spacing:63.877333pt;}
.ls4{letter-spacing:70.153467pt;}
.ls3{letter-spacing:70.180133pt;}
.ls2d{letter-spacing:70.270667pt;}
.ls2{letter-spacing:70.297333pt;}
.ls6{letter-spacing:77.212133pt;}
.ls27{letter-spacing:80.728133pt;}
.ls2a{letter-spacing:80.845333pt;}
.ls12{letter-spacing:98.281467pt;}
.ls14{letter-spacing:98.308133pt;}
.ls16{letter-spacing:98.334800pt;}
.ls11{letter-spacing:98.398667pt;}
.ls13{letter-spacing:98.425333pt;}
.ls15{letter-spacing:98.452000pt;}
.ls34{letter-spacing:101.824133pt;}
.ls35{letter-spacing:101.941333pt;}
.ws1e{word-spacing:-52.429867pt;}
.ws11{word-spacing:-47.489867pt;}
.ws15{word-spacing:-37.922133pt;}
.ws19{word-spacing:-35.874133pt;}
.ws6{word-spacing:-34.052400pt;}
.ws10{word-spacing:-32.836267pt;}
.wsa{word-spacing:-32.802133pt;}
.ws1a{word-spacing:-31.648933pt;}
.ws16{word-spacing:-29.764267pt;}
.ws12{word-spacing:-29.730133pt;}
.ws0{word-spacing:-27.682133pt;}
.ws1{word-spacing:-24.778267pt;}
.ws4{word-spacing:-24.610133pt;}
.ws1c{word-spacing:-23.360400pt;}
.ws13{word-spacing:-20.514133pt;}
.wse{word-spacing:-18.500400pt;}
.wsf{word-spacing:-18.468000pt;}
.ws9{word-spacing:-17.528400pt;}
.wsc{word-spacing:-16.418133pt;}
.wsb{word-spacing:-16.384000pt;}
.wsd{word-spacing:-15.392000pt;}
.ws7{word-spacing:-14.370133pt;}
.ws8{word-spacing:-14.336000pt;}
.ws14{word-spacing:-13.813733pt;}
.ws18{word-spacing:-11.819067pt;}
.ws5{word-spacing:-11.298133pt;}
.ws17{word-spacing:-11.291067pt;}
.ws3{word-spacing:-11.264000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1d{word-spacing:1541.349467pt;}
.ws1b{word-spacing:1564.912667pt;}
._a{margin-left:-6.770800pt;}
._5{margin-left:-4.994000pt;}
._6{margin-left:-4.047867pt;}
._0{margin-left:-3.135867pt;}
._2{margin-left:-1.791333pt;}
._7{margin-left:-0.896267pt;}
._1{width:1.081333pt;}
._3{width:2.238133pt;}
._4{width:3.445467pt;}
._9{width:4.451467pt;}
._c{width:150.457867pt;}
._8{width:716.462667pt;}
._b{width:894.447600pt;}
._d{width:916.985867pt;}
._e{width:1568.744933pt;}
.fs8{font-size:44.000000pt;}
.fsb{font-size:44.133333pt;}
.fs26{font-size:48.000000pt;}
.fs25{font-size:48.133333pt;}
.fs14{font-size:52.000000pt;}
.fs16{font-size:52.133333pt;}
.fs10{font-size:56.000000pt;}
.fsf{font-size:56.133333pt;}
.fs27{font-size:60.000000pt;}
.fs24{font-size:60.133333pt;}
.fs15{font-size:64.000000pt;}
.fs17{font-size:64.133333pt;}
.fs21{font-size:72.000000pt;}
.fs4{font-size:72.133333pt;}
.fs18{font-size:76.000000pt;}
.fs9{font-size:76.133333pt;}
.fs20{font-size:80.000000pt;}
.fs1f{font-size:80.133333pt;}
.fs6{font-size:84.000000pt;}
.fs7{font-size:84.133333pt;}
.fs1e{font-size:92.000000pt;}
.fs1a{font-size:92.133333pt;}
.fsa{font-size:96.133333pt;}
.fs12{font-size:104.133333pt;}
.fs23{font-size:104.266667pt;}
.fs0{font-size:108.133333pt;}
.fs3{font-size:108.266667pt;}
.fsc{font-size:112.133333pt;}
.fs1b{font-size:116.133333pt;}
.fs1d{font-size:116.266667pt;}
.fs22{font-size:120.133333pt;}
.fs13{font-size:128.133333pt;}
.fs1c{font-size:128.266667pt;}
.fsd{font-size:140.133333pt;}
.fse{font-size:140.266667pt;}
.fs1{font-size:148.133333pt;}
.fs2{font-size:148.266667pt;}
.fs11{font-size:192.266667pt;}
.fs5{font-size:212.266667pt;}
.fs19{font-size:212.400000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:9.866667pt;}
.y74{bottom:11.466667pt;}
.yf9{bottom:14.400000pt;}
.y136{bottom:19.766667pt;}
.y108{bottom:26.700000pt;}
.ye8{bottom:28.633333pt;}
.yf4{bottom:31.800000pt;}
.yaf{bottom:34.366667pt;}
.y73{bottom:34.500000pt;}
.ybc{bottom:35.333333pt;}
.y120{bottom:36.133333pt;}
.y11e{bottom:36.533333pt;}
.yce{bottom:37.033333pt;}
.y11f{bottom:37.366667pt;}
.ye7{bottom:47.666667pt;}
.y135{bottom:50.833333pt;}
.y1{bottom:53.400000pt;}
.y5b{bottom:53.433333pt;}
.y13b{bottom:53.900000pt;}
.ycd{bottom:55.066667pt;}
.y72{bottom:57.533333pt;}
.y23{bottom:57.633333pt;}
.y12f{bottom:61.100000pt;}
.y107{bottom:65.733333pt;}
.yf3{bottom:68.766667pt;}
.ya0{bottom:70.500000pt;}
.ydd{bottom:71.966667pt;}
.y7{bottom:76.400000pt;}
.y137{bottom:76.866667pt;}
.y3c{bottom:79.233333pt;}
.y12e{bottom:80.133333pt;}
.y71{bottom:80.566667pt;}
.y134{bottom:81.866667pt;}
.ycc{bottom:83.100000pt;}
.y22{bottom:83.666667pt;}
.yae{bottom:87.800000pt;}
.y109{bottom:88.400000pt;}
.y8c{bottom:91.500000pt;}
.ybb{bottom:94.000000pt;}
.y92{bottom:97.233333pt;}
.y4b{bottom:98.900000pt;}
.y44{bottom:100.900000pt;}
.y32{bottom:101.200000pt;}
.y11{bottom:102.500000pt;}
.y70{bottom:103.600000pt;}
.y5a{bottom:105.500000pt;}
.ye6{bottom:107.200000pt;}
.y6{bottom:108.433333pt;}
.y21{bottom:108.700000pt;}
.y8b{bottom:110.533333pt;}
.ycb{bottom:111.133333pt;}
.y9f{bottom:112.566667pt;}
.y133{bottom:112.900000pt;}
.yf2{bottom:113.833333pt;}
.y106{bottom:116.800000pt;}
.yad{bottom:116.833333pt;}
.y4a{bottom:118.933333pt;}
.y43{bottom:120.933333pt;}
.y3b{bottom:121.300000pt;}
.y115{bottom:126.366667pt;}
.y6f{bottom:126.633333pt;}
.yba{bottom:129.066667pt;}
.y31{bottom:130.266667pt;}
.y20{bottom:134.733333pt;}
.y91{bottom:135.306667pt;}
.y12d{bottom:136.466667pt;}
.y122{bottom:138.600000pt;}
.y49{bottom:138.933333pt;}
.y5{bottom:140.466667pt;}
.y42{bottom:140.933333pt;}
.y132{bottom:143.973333pt;}
.y10{bottom:144.000000pt;}
.ye5{bottom:147.266667pt;}
.y8a{bottom:147.600000pt;}
.ydc{bottom:148.106667pt;}
.y6e{bottom:149.666667pt;}
.yca{bottom:152.200000pt;}
.y90{bottom:153.333333pt;}
.y13d{bottom:155.466667pt;}
.y9e{bottom:155.600000pt;}
.y105{bottom:155.866667pt;}
.y59{bottom:156.560000pt;}
.yac{bottom:158.893333pt;}
.y48{bottom:158.973333pt;}
.y114{bottom:159.426667pt;}
.y1f{bottom:160.760000pt;}
.y41{bottom:160.960000pt;}
.yb9{bottom:163.106667pt;}
.y89{bottom:166.600000pt;}
.y30{bottom:172.306667pt;}
.y4{bottom:172.533333pt;}
.y6d{bottom:172.693333pt;}
.y3a{bottom:176.373333pt;}
.y47{bottom:179.000000pt;}
.y40{bottom:181.000000pt;}
.ydb{bottom:181.133333pt;}
.yc9{bottom:181.240000pt;}
.y88{bottom:185.640000pt;}
.yab{bottom:187.933333pt;}
.ye4{bottom:188.333333pt;}
.y12c{bottom:188.533333pt;}
.y8f{bottom:191.373333pt;}
.y131{bottom:192.026667pt;}
.y113{bottom:192.466667pt;}
.y104{bottom:193.893333pt;}
.y6c{bottom:195.733333pt;}
.y9d{bottom:197.666667pt;}
.y46{bottom:199.040000pt;}
.yf{bottom:199.066667pt;}
.y1e{bottom:199.840000pt;}
.y3f{bottom:201.026667pt;}
.y2f{bottom:201.360000pt;}
.yf1{bottom:203.973333pt;}
.yda{bottom:204.173333pt;}
.yc8{bottom:209.266667pt;}
.y93{bottom:209.400000pt;}
.yb8{bottom:211.173333pt;}
.y5c{bottom:214.240000pt;}
.yaa{bottom:216.973333pt;}
.y39{bottom:217.440000pt;}
.y6b{bottom:218.773333pt;}
.y45{bottom:219.066667pt;}
.y3e{bottom:221.066667pt;}
.y87{bottom:222.706667pt;}
.y130{bottom:223.066667pt;}
.y1d{bottom:224.866667pt;}
.y12b{bottom:226.600000pt;}
.ye3{bottom:228.360000pt;}
.y8e{bottom:228.426667pt;}
.y2e{bottom:229.400000pt;}
.yf0{bottom:236.000000pt;}
.y13a{bottom:237.226667pt;}
.yc7{bottom:237.306667pt;}
.y3{bottom:238.800000pt;}
.y112{bottom:239.533333pt;}
.y9c{bottom:239.733333pt;}
.yd9{bottom:240.200000pt;}
.ye{bottom:241.133333pt;}
.y6a{bottom:241.800000pt;}
.y103{bottom:246.000000pt;}
.yb7{bottom:246.226667pt;}
.y1c{bottom:250.893333pt;}
.y53{bottom:252.226667pt;}
.ya9{bottom:259.040000pt;}
.yd8{bottom:259.240000pt;}
.y86{bottom:259.733333pt;}
.y124{bottom:263.840000pt;}
.y69{bottom:264.840000pt;}
.yc6{bottom:265.333333pt;}
.y8d{bottom:265.466667pt;}
.y11d{bottom:266.840000pt;}
.y2d{bottom:271.440000pt;}
.y9b{bottom:271.760000pt;}
.y38{bottom:272.506667pt;}
.y111{bottom:272.573333pt;}
.y1b{bottom:275.933333pt;}
.y52{bottom:277.266667pt;}
.y12a{bottom:278.666667pt;}
.y3d{bottom:279.973333pt;}
.yef{bottom:281.066667pt;}
.yd{bottom:282.200000pt;}
.y2{bottom:283.840000pt;}
.y68{bottom:287.866667pt;}
.yd7{bottom:292.306667pt;}
.yb6{bottom:294.306667pt;}
.y102{bottom:298.066667pt;}
.y2c{bottom:300.506667pt;}
.y1a{bottom:301.960000pt;}
.y11c{bottom:302.866667pt;}
.ya8{bottom:304.106667pt;}
.yc5{bottom:307.400000pt;}
.y67{bottom:310.893333pt;}
.yee{bottom:312.106667pt;}
.y37{bottom:314.573333pt;}
.y139{bottom:316.666667pt;}
.y129{bottom:316.693333pt;}
.y9a{bottom:317.840000pt;}
.y110{bottom:319.640000pt;}
.yd6{bottom:327.333333pt;}
.y19{bottom:328.000000pt;}
.yb5{bottom:328.333333pt;}
.y2b{bottom:329.533333pt;}
.y66{bottom:333.933333pt;}
.yc4{bottom:335.440000pt;}
.ye2{bottom:335.533333pt;}
.y101{bottom:336.106667pt;}
.yc{bottom:337.266667pt;}
.y11b{bottom:339.933333pt;}
.ya7{bottom:346.173333pt;}
.yd5{bottom:346.360000pt;}
.y10f{bottom:352.693333pt;}
.y84{bottom:354.026667pt;}
.y36{bottom:355.640000pt;}
.y65{bottom:356.973333pt;}
.yed{bottom:357.173333pt;}
.yb4{bottom:363.400000pt;}
.yc3{bottom:363.466667pt;}
.y99{bottom:365.893333pt;}
.y18{bottom:366.066667pt;}
.y128{bottom:368.773333pt;}
.y2a{bottom:371.600000pt;}
.y83{bottom:372.066667pt;}
.ya6{bottom:375.200000pt;}
.y7c{bottom:375.266667pt;}
.ye1{bottom:376.573333pt;}
.yd4{bottom:378.400000pt;}
.yb{bottom:379.333333pt;}
.y64{bottom:380.000000pt;}
.y11a{bottom:386.000000pt;}
.y100{bottom:388.200000pt;}
.y7b{bottom:394.266667pt;}
.yb3{bottom:397.440000pt;}
.y10e{bottom:399.773333pt;}
.y29{bottom:400.626667pt;}
.y51{bottom:402.173333pt;}
.yec{bottom:402.226667pt;}
.y63{bottom:404.040000pt;}
.y138{bottom:404.440000pt;}
.yc2{bottom:404.533333pt;}
.y17{bottom:405.106667pt;}
.y127{bottom:406.840000pt;}
.y82{bottom:410.106667pt;}
.y35{bottom:410.706667pt;}
.yd3{bottom:411.466667pt;}
.y98{bottom:411.960000pt;}
.y7a{bottom:413.306667pt;}
.ye0{bottom:416.640000pt;}
.yf8{bottom:416.733333pt;}
.ya5{bottom:417.226667pt;}
.y119{bottom:418.026667pt;}
.y50{bottom:422.200000pt;}
.yff{bottom:426.226667pt;}
.y62{bottom:427.066667pt;}
.y81{bottom:428.133333pt;}
.y28{bottom:429.666667pt;}
.yfc{bottom:429.733333pt;}
.y16{bottom:431.173333pt;}
.y79{bottom:431.333333pt;}
.y10d{bottom:432.800000pt;}
.yc1{bottom:433.560000pt;}
.yeb{bottom:434.266667pt;}
.ya{bottom:434.400000pt;}
.y4f{bottom:442.226667pt;}
.y97{bottom:444.000000pt;}
.yb2{bottom:445.506667pt;}
.y126{bottom:445.893333pt;}
.ya4{bottom:446.306667pt;}
.yd2{bottom:446.506667pt;}
.y80{bottom:447.173333pt;}
.y61{bottom:450.106667pt;}
.y34{bottom:452.773333pt;}
.ydf{bottom:456.693333pt;}
.y27{bottom:458.706667pt;}
.yc0{bottom:461.640000pt;}
.yf7{bottom:461.800000pt;}
.y4e{bottom:462.266667pt;}
.y85{bottom:466.200000pt;}
.yd1{bottom:468.533333pt;}
.y78{bottom:469.400000pt;}
.y15{bottom:470.200000pt;}
.y60{bottom:473.106667pt;}
.y118{bottom:475.106667pt;}
.yfb{bottom:475.800000pt;}
.yfe{bottom:478.306667pt;}
.y10c{bottom:479.866667pt;}
.yea{bottom:480.333333pt;}
.yb1{bottom:480.533333pt;}
.y4d{bottom:482.306667pt;}
.y7f{bottom:484.226667pt;}
.y77{bottom:487.400000pt;}
.ya3{bottom:488.333333pt;}
.y96{bottom:489.066667pt;}
.y13c{bottom:489.226667pt;}
.y9{bottom:489.466667pt;}
.ybf{bottom:489.666667pt;}
.yf6{bottom:493.840000pt;}
.y5f{bottom:496.133333pt;}
.y14{bottom:496.226667pt;}
.y125{bottom:496.973333pt;}
.yde{bottom:497.733333pt;}
.y121{bottom:499.173333pt;}
.y26{bottom:500.773333pt;}
.y4c{bottom:502.333333pt;}
.y7e{bottom:503.226667pt;}
.yd0{bottom:503.560000pt;}
.y33{bottom:507.840000pt;}
.yfa{bottom:507.866667pt;}
.y117{bottom:511.173333pt;}
.y10b{bottom:512.893333pt;}
.ye9{bottom:514.373333pt;}
.yb0{bottom:514.600000pt;}
.yfd{bottom:516.360000pt;}
.ybe{bottom:517.693333pt;}
.y123{bottom:519.106667pt;}
.y5e{bottom:519.173333pt;}
.y76{bottom:525.466667pt;}
.ycf{bottom:525.600000pt;}
.y57{bottom:529.200000pt;}
.y25{bottom:529.800000pt;}
.y55{bottom:531.133333pt;}
.ya2{bottom:531.400000pt;}
.y13{bottom:534.293333pt;}
.y95{bottom:535.133333pt;}
.yf5{bottom:539.893333pt;}
.y7d{bottom:540.293333pt;}
.y75{bottom:543.506667pt;}
.y10a{bottom:545.960000pt;}
.y116{bottom:548.200000pt;}
.y56{bottom:554.226667pt;}
.y54{bottom:556.173333pt;}
.y24{bottom:557.840000pt;}
.y12{bottom:560.333333pt;}
.y5d{bottom:561.506667pt;}
.ybd{bottom:586.106667pt;}
.y94{bottom:638.360000pt;}
.y8{bottom:639.173333pt;}
.y58{bottom:644.173333pt;}
.h23{height:33.724935pt;}
.h8{height:38.104000pt;}
.he{height:38.219467pt;}
.h10{height:48.496000pt;}
.hf{height:48.611467pt;}
.h2d{height:51.960000pt;}
.h2c{height:52.075467pt;}
.h15{height:55.424000pt;}
.h16{height:55.539467pt;}
.h29{height:55.896289pt;}
.h11{height:60.772333pt;}
.h18{height:64.030000pt;}
.h17{height:64.142333pt;}
.h1a{height:66.424000pt;}
.h19{height:66.540533pt;}
.h21{height:69.280000pt;}
.h20{height:69.395467pt;}
.h22{height:79.672000pt;}
.h1f{height:79.787467pt;}
.h2a{height:80.020533pt;}
.h6{height:82.736784pt;}
.h4{height:82.838802pt;}
.ha{height:83.251467pt;}
.h2b{height:84.020533pt;}
.h5{height:87.298529pt;}
.h26{height:91.102333pt;}
.h14{height:91.214667pt;}
.h1{height:93.643467pt;}
.h9{height:93.758933pt;}
.h2e{height:97.914388pt;}
.h27{height:98.039518pt;}
.h28{height:98.141536pt;}
.h1c{height:100.571467pt;}
.h1e{height:100.686933pt;}
.h13{height:110.963467pt;}
.h1d{height:111.078933pt;}
.h2{height:113.342253pt;}
.h3{height:113.444271pt;}
.hd{height:118.062333pt;}
.hb{height:121.355467pt;}
.hc{height:121.470933pt;}
.h24{height:128.283467pt;}
.h25{height:128.398933pt;}
.h12{height:147.110286pt;}
.h7{height:162.413021pt;}
.h1b{height:162.515039pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5b{left:35.699981pt;}
.x5f{left:49.799981pt;}
.x16{left:58.966648pt;}
.x1{left:61.099981pt;}
.x37{left:62.499981pt;}
.x17{left:71.033314pt;}
.x2d{left:72.199981pt;}
.x9{left:77.266648pt;}
.x13{left:79.366648pt;}
.x10{left:80.766648pt;}
.x4a{left:83.799981pt;}
.x2e{left:90.199981pt;}
.x41{left:98.299981pt;}
.x38{left:110.533314pt;}
.xa{left:113.299981pt;}
.x14{left:115.366648pt;}
.x11{left:116.799981pt;}
.x67{left:118.133314pt;}
.x4b{left:119.833314pt;}
.x65{left:124.966648pt;}
.x39{left:140.573314pt;}
.x3a{left:158.573314pt;}
.x3f{left:174.906648pt;}
.x46{left:192.639981pt;}
.x51{left:200.239981pt;}
.x4{left:215.666648pt;}
.x61{left:219.133314pt;}
.x2{left:237.639981pt;}
.x59{left:243.693314pt;}
.x56{left:251.506648pt;}
.x43{left:274.573314pt;}
.x62{left:276.839981pt;}
.x21{left:284.466648pt;}
.x35{left:287.973314pt;}
.x58{left:308.266648pt;}
.x36{left:317.239981pt;}
.x12{left:337.506648pt;}
.x1a{left:340.333314pt;}
.x1f{left:341.559981pt;}
.x5e{left:348.933314pt;}
.x1b{left:352.399981pt;}
.x29{left:372.933314pt;}
.x40{left:377.306648pt;}
.x3c{left:380.533314pt;}
.x23{left:387.133314pt;}
.x22{left:391.799981pt;}
.x27{left:393.226648pt;}
.x52{left:403.466648pt;}
.x5c{left:405.866648pt;}
.x2a{left:408.973314pt;}
.x3{left:424.173314pt;}
.x53{left:438.333314pt;}
.x8{left:440.506648pt;}
.x4d{left:444.599981pt;}
.x47{left:446.333314pt;}
.x49{left:449.333314pt;}
.x64{left:452.333314pt;}
.xf{left:467.773314pt;}
.x32{left:469.799981pt;}
.x6{left:472.199981pt;}
.x2f{left:478.039981pt;}
.x7{left:484.306648pt;}
.x33{left:487.799981pt;}
.x30{left:496.039981pt;}
.x24{left:515.893314pt;}
.xd{left:522.333314pt;}
.x5{left:533.999981pt;}
.xc{left:553.839981pt;}
.xe{left:558.359981pt;}
.x26{left:561.333314pt;}
.x3d{left:581.026648pt;}
.x5a{left:596.599981pt;}
.x66{left:608.933314pt;}
.x15{left:610.133314pt;}
.x44{left:612.973314pt;}
.x18{left:619.959981pt;}
.x1e{left:623.639981pt;}
.x28{left:626.666648pt;}
.x3e{left:629.093314pt;}
.x19{left:632.066648pt;}
.x4c{left:636.133314pt;}
.x25{left:646.266648pt;}
.x4e{left:650.093314pt;}
.x54{left:653.933314pt;}
.x57{left:657.466648pt;}
.xb{left:659.573314pt;}
.x45{left:682.306648pt;}
.x4f{left:686.133314pt;}
.x63{left:688.359981pt;}
.x55{left:689.959981pt;}
.x48{left:698.506648pt;}
.x50{left:728.173314pt;}
.x42{left:730.359981pt;}
.x3b{left:732.559981pt;}
.x5d{left:769.039981pt;}
.x2b{left:858.133314pt;}
.x31{left:877.559981pt;}
.x2c{left:894.173314pt;}
.x34{left:895.599981pt;}
.x1c{left:903.773314pt;}
.x20{left:905.693314pt;}
.x1d{left:915.866648pt;}
.x60{left:1170.039981pt;}
}




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