
    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_4764bcc713ef8255deccf1ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_1d2f2c82a52591225577f68c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_01c0f778b3dceb51e5295570.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051270;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_2bef45d7c84682d1ed4ad2e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5bae469372b050a6668d94c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_337ca16c15d6b00f05779a3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051270;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(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.067591px;}
.ls1a{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.ls1{letter-spacing:-0.463800px;}
.ls21{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.420905px;}
.ls1b{letter-spacing:-0.420847px;}
.ls1c{letter-spacing:-0.420583px;}
.ls5{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.320400px;}
.ls15{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.107400px;}
.ls13{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.041040px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.022320px;}
.lsc{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls6{letter-spacing:2.448000px;}
.ls7{letter-spacing:4.494240px;}
.ls16{letter-spacing:7.488000px;}
.ls17{letter-spacing:8.069760px;}
.ls11{letter-spacing:34.704000px;}
.ls19{letter-spacing:57.828100px;}
.ls18{letter-spacing:57.864282px;}
.ls1d{letter-spacing:57.872317px;}
.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:-16.632000px;}
.ws6{word-spacing:-16.488000px;}
.ws5{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.200000px;}
.wsd{word-spacing:-16.056000px;}
.ws28{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.552000px;}
.ws2{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws9{word-spacing:-13.811760px;}
.ws20{word-spacing:-13.581168px;}
.wse{word-spacing:-13.579282px;}
.ws16{word-spacing:-13.570791px;}
.ws7{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.398360px;}
.ws26{word-spacing:-10.902240px;}
.ws27{word-spacing:-10.581840px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:49.555579px;}
.ws1f{word-spacing:64.492279px;}
.ws25{word-spacing:79.193474px;}
.ws1b{word-spacing:79.541590px;}
.ws12{word-spacing:79.591358px;}
.ws22{word-spacing:79.602410px;}
.ws23{word-spacing:94.154303px;}
.ws1e{word-spacing:94.207194px;}
.ws15{word-spacing:94.266138px;}
.ws1a{word-spacing:94.516154px;}
.ws19{word-spacing:109.156592px;}
.ws11{word-spacing:109.224889px;}
.ws21{word-spacing:109.240056px;}
.ws18{word-spacing:109.615297px;}
.ws10{word-spacing:109.683881px;}
.ws1c{word-spacing:116.940624px;}
.ws1d{word-spacing:118.008527px;}
.ws14{word-spacing:118.082363px;}
.ws17{word-spacing:124.106239px;}
.wsf{word-spacing:124.183890px;}
.ws13{word-spacing:132.097450px;}
._16{margin-left:-4.021440px;}
._15{margin-left:-2.494080px;}
._0{margin-left:-1.192320px;}
._d{width:1.000320px;}
._4{width:2.080320px;}
._13{width:3.895680px;}
._a{width:5.104320px;}
._28{width:6.185280px;}
._9{width:7.200000px;}
._18{width:8.856000px;}
._c{width:10.224000px;}
._b{width:11.808000px;}
._23{width:12.888000px;}
._14{width:13.968000px;}
._26{width:15.271680px;}
._2d{width:16.553520px;}
._1e{width:18.112320px;}
._1d{width:19.296000px;}
._20{width:20.520000px;}
._11{width:21.960000px;}
._19{width:23.184000px;}
._12{width:24.192000px;}
._21{width:25.704000px;}
._f{width:27.144000px;}
._e{width:28.560000px;}
._8{width:30.072000px;}
._6{width:31.968000px;}
._5{width:33.480000px;}
._29{width:34.784640px;}
._1b{width:35.856000px;}
._1a{width:37.584000px;}
._2c{width:39.142800px;}
._2b{width:40.338000px;}
._34{width:41.760000px;}
._27{width:43.416000px;}
._22{width:44.568000px;}
._3a{width:45.832320px;}
._25{width:47.160000px;}
._24{width:48.384000px;}
._2e{width:49.392000px;}
._2f{width:51.199680px;}
._35{width:52.728000px;}
._31{width:53.760000px;}
._30{width:55.152000px;}
._1f{width:57.240000px;}
._39{width:58.464000px;}
._3{width:59.832000px;}
._41{width:61.320000px;}
._1c{width:62.496000px;}
._47{width:64.008000px;}
._7{width:66.240000px;}
._46{width:67.248000px;}
._3d{width:73.368000px;}
._17{width:74.952000px;}
._32{width:76.680000px;}
._2a{width:78.120000px;}
._3b{width:79.848000px;}
._10{width:81.648000px;}
._3c{width:83.160000px;}
._3e{width:84.324000px;}
._38{width:92.888472px;}
._45{width:94.536000px;}
._43{width:101.160000px;}
._42{width:102.312000px;}
._36{width:107.904845px;}
._37{width:123.108771px;}
._33{width:133.704000px;}
._40{width:193.680000px;}
._3f{width:195.192000px;}
._44{width:261.264000px;}
._1{width:365.752080px;}
._2{width:1430.369760px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.236110px;}
.fs6{font-size:41.261910px;}
.fsa{font-size:41.267640px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:60.047749px;}
.fs5{font-size:60.085320px;}
.fs9{font-size:60.093663px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:3.737412px;}
.y124{bottom:3.740270px;}
.y105{bottom:4.657360px;}
.y116{bottom:4.659307px;}
.y12e{bottom:4.662869px;}
.y119{bottom:4.696681px;}
.yfb{bottom:4.699619px;}
.y131{bottom:4.700272px;}
.y108{bottom:4.712085px;}
.y117{bottom:15.946290px;}
.y12f{bottom:15.958483px;}
.y106{bottom:15.981199px;}
.y115{bottom:24.374154px;}
.y104{bottom:24.384418px;}
.y12d{bottom:24.392791px;}
.y114{bottom:44.057856px;}
.y103{bottom:44.080435px;}
.y12c{bottom:44.091544px;}
.y2{bottom:58.536000px;}
.y113{bottom:63.772703px;}
.y102{bottom:63.807618px;}
.y12b{bottom:63.821465px;}
.y112{bottom:83.456405px;}
.y101{bottom:83.503635px;}
.y12a{bottom:83.520218px;}
.y111{bottom:103.171252px;}
.y100{bottom:103.230817px;}
.y129{bottom:103.250140px;}
.y6e{bottom:117.756000px;}
.yb5{bottom:119.016000px;}
.y27{bottom:121.176000px;}
.y110{bottom:122.854954px;}
.yff{bottom:122.926835px;}
.y128{bottom:122.948892px;}
.y4e{bottom:127.836000px;}
.ye4{bottom:128.376000px;}
.yc7{bottom:130.536000px;}
.y79{bottom:131.076000px;}
.y120{bottom:131.796000px;}
.yf7{bottom:132.696000px;}
.yc9{bottom:134.676000px;}
.y134{bottom:137.196000px;}
.y10f{bottom:142.569801px;}
.yfe{bottom:142.659004px;}
.y127{bottom:142.678814px;}
.y6d{bottom:143.136000px;}
.yb4{bottom:144.216000px;}
.y9f{bottom:144.576000px;}
.y26{bottom:146.556000px;}
.y4d{bottom:153.030000px;}
.ye3{bottom:153.570000px;}
.y78{bottom:154.830000px;}
.yc6{bottom:155.370000px;}
.yc8{bottom:156.270000px;}
.y11f{bottom:156.990000px;}
.yf6{bottom:157.890000px;}
.y10e{bottom:162.253503px;}
.yfd{bottom:162.355021px;}
.y126{bottom:162.377567px;}
.y133{bottom:162.390000px;}
.y6c{bottom:168.330000px;}
.yb3{bottom:169.410000px;}
.y9e{bottom:169.770000px;}
.y25{bottom:171.750000px;}
.y4c{bottom:178.410000px;}
.yc5{bottom:178.590000px;}
.ye2{bottom:178.770000px;}
.y10d{bottom:181.974579px;}
.yfc{bottom:182.075971px;}
.y125{bottom:182.113722px;}
.y11e{bottom:182.190000px;}
.yf5{bottom:183.090000px;}
.y132{bottom:185.790000px;}
.y6b{bottom:193.530000px;}
.yb2{bottom:194.790000px;}
.y9d{bottom:195.150000px;}
.y24{bottom:197.130000px;}
.yc4{bottom:201.810000px;}
.y77{bottom:202.170000px;}
.y10a{bottom:203.526987px;}
.y4b{bottom:203.610000px;}
.yf9{bottom:203.641863px;}
.y122{bottom:203.682609px;}
.ye1{bottom:204.150000px;}
.y11d{bottom:207.570000px;}
.yf4{bottom:208.470000px;}
.y6a{bottom:218.910000px;}
.yb1{bottom:219.990000px;}
.y9c{bottom:220.350000px;}
.y23{bottom:222.330000px;}
.yc3{bottom:224.850000px;}
.y76{bottom:227.190000px;}
.y4a{bottom:228.810000px;}
.ye0{bottom:229.350000px;}
.y11c{bottom:232.410000px;}
.yf3{bottom:233.670000px;}
.y69{bottom:244.110000px;}
.yb0{bottom:245.190000px;}
.y9b{bottom:245.730000px;}
.yc2{bottom:246.630000px;}
.y22{bottom:247.530000px;}
.y11b{bottom:250.950000px;}
.y49{bottom:254.190000px;}
.ydf{bottom:254.550000px;}
.y75{bottom:257.970000px;}
.yf2{bottom:259.050000px;}
.y68{bottom:269.310000px;}
.yaf{bottom:270.570000px;}
.y9a{bottom:270.930000px;}
.y21{bottom:272.910000px;}
.y48{bottom:279.390000px;}
.yde{bottom:279.930000px;}
.yf1{bottom:284.250000px;}
.y67{bottom:294.735000px;}
.yae{bottom:295.815000px;}
.y99{bottom:296.175000px;}
.y20{bottom:298.155000px;}
.y74{bottom:300.495000px;}
.y47{bottom:304.815000px;}
.ydd{bottom:305.175000px;}
.yf0{bottom:309.495000px;}
.y66{bottom:319.935000px;}
.yad{bottom:321.195000px;}
.y73{bottom:321.555000px;}
.y1f{bottom:323.535000px;}
.y46{bottom:330.015000px;}
.ydc{bottom:330.555000px;}
.yef{bottom:334.875000px;}
.y72{bottom:342.615000px;}
.y65{bottom:345.315000px;}
.yac{bottom:346.395000px;}
.y98{bottom:346.755000px;}
.y1e{bottom:348.735000px;}
.y45{bottom:355.215000px;}
.ydb{bottom:355.755000px;}
.yee{bottom:360.075000px;}
.y71{bottom:363.675000px;}
.yab{bottom:370.335000px;}
.y64{bottom:370.515000px;}
.y97{bottom:371.955000px;}
.y1d{bottom:373.935000px;}
.y44{bottom:380.595000px;}
.yda{bottom:380.955000px;}
.y70{bottom:384.735000px;}
.yed{bottom:385.275000px;}
.y63{bottom:395.715000px;}
.y96{bottom:397.335000px;}
.y1c{bottom:399.315000px;}
.yaa{bottom:400.755000px;}
.yc1{bottom:401.295000px;}
.y43{bottom:405.795000px;}
.yd9{bottom:406.335000px;}
.yec{bottom:410.655000px;}
.y62{bottom:421.095000px;}
.ya9{bottom:422.175000px;}
.y95{bottom:422.535000px;}
.y1b{bottom:424.515000px;}
.y6f{bottom:426.675000px;}
.yeb{bottom:430.815000px;}
.y42{bottom:430.995000px;}
.y109{bottom:431.460000px;}
.yd8{bottom:431.535000px;}
.ya8{bottom:443.235000px;}
.yc0{bottom:443.595000px;}
.y61{bottom:446.295000px;}
.y94{bottom:446.475000px;}
.y1a{bottom:449.715000px;}
.y41{bottom:456.375000px;}
.yd7{bottom:456.735000px;}
.ya7{bottom:460.335000px;}
.ybf{bottom:464.655000px;}
.y93{bottom:470.235000px;}
.y60{bottom:471.495000px;}
.y19{bottom:475.095000px;}
.y40{bottom:481.575000px;}
.yd6{bottom:482.115000px;}
.ybe{bottom:485.715000px;}
.y92{bottom:493.815000px;}
.y5f{bottom:496.875000px;}
.y18{bottom:500.295000px;}
.ybd{bottom:506.775000px;}
.y3f{bottom:506.955000px;}
.yd5{bottom:507.315000px;}
.y91{bottom:517.575000px;}
.y5e{bottom:522.075000px;}
.y17{bottom:525.675000px;}
.ybc{bottom:527.835000px;}
.y3e{bottom:532.155000px;}
.yd4{bottom:532.695000px;}
.y90{bottom:541.335000px;}
.y5d{bottom:547.455000px;}
.ybb{bottom:548.925000px;}
.y16{bottom:550.905000px;}
.y3d{bottom:557.385000px;}
.yd3{bottom:557.925000px;}
.y8f{bottom:565.125000px;}
.yba{bottom:569.985000px;}
.y5c{bottom:572.685000px;}
.y15{bottom:576.105000px;}
.y3c{bottom:582.765000px;}
.y8e{bottom:588.705000px;}
.yb9{bottom:591.045000px;}
.y5b{bottom:597.885000px;}
.y14{bottom:601.485000px;}
.yd2{bottom:604.545000px;}
.y3b{bottom:607.965000px;}
.yb8{bottom:612.105000px;}
.y8d{bottom:612.465000px;}
.y5a{bottom:623.265000px;}
.y13{bottom:626.685000px;}
.y10b{bottom:629.380869px;}
.yb7{bottom:633.165000px;}
.y3a{bottom:633.345000px;}
.y8c{bottom:636.225000px;}
.y59{bottom:648.465000px;}
.y118{bottom:651.867630px;}
.y12{bottom:651.885000px;}
.yb6{bottom:654.225000px;}
.y39{bottom:658.545000px;}
.y8b{bottom:659.985000px;}
.y58{bottom:673.845000px;}
.y11{bottom:677.265000px;}
.yea{bottom:679.245000px;}
.y8a{bottom:683.565000px;}
.y38{bottom:683.745000px;}
.y57{bottom:699.045000px;}
.y10{bottom:702.465000px;}
.y89{bottom:707.325000px;}
.y37{bottom:709.125000px;}
.y56{bottom:724.245000px;}
.ye9{bottom:725.505000px;}
.yf{bottom:727.845000px;}
.y88{bottom:731.085000px;}
.y36{bottom:734.325000px;}
.ye8{bottom:749.265000px;}
.y55{bottom:749.625000px;}
.ye{bottom:753.045000px;}
.y87{bottom:754.665000px;}
.y35{bottom:759.525000px;}
.yf8{bottom:769.320000px;}
.ye7{bottom:769.425000px;}
.y11a{bottom:769.785000px;}
.y121{bottom:770.220000px;}
.yd{bottom:778.245000px;}
.y86{bottom:778.425000px;}
.y54{bottom:780.225000px;}
.y34{bottom:784.905000px;}
.y53{bottom:801.645000px;}
.y85{bottom:802.185000px;}
.yc{bottom:803.625000px;}
.y33{bottom:810.150000px;}
.y52{bottom:822.750000px;}
.y84{bottom:825.990000px;}
.yb{bottom:828.870000px;}
.y32{bottom:835.530000px;}
.y51{bottom:843.810000px;}
.y83{bottom:849.570000px;}
.ya{bottom:854.250000px;}
.y31{bottom:860.730000px;}
.y50{bottom:864.870000px;}
.y82{bottom:873.330000px;}
.y9{bottom:878.910000px;}
.y30{bottom:885.930000px;}
.yd1{bottom:888.090000px;}
.y81{bottom:897.090000px;}
.y8{bottom:902.130000px;}
.y4f{bottom:906.990000px;}
.y2f{bottom:911.310000px;}
.yd0{bottom:913.290000px;}
.y80{bottom:920.850000px;}
.y7{bottom:925.710000px;}
.ya6{bottom:932.370000px;}
.y2e{bottom:936.510000px;}
.ycf{bottom:938.670000px;}
.y7f{bottom:944.430000px;}
.y6{bottom:951.090000px;}
.ya5{bottom:953.250000px;}
.y2d{bottom:961.710000px;}
.yce{bottom:963.870000px;}
.yfa{bottom:967.327306px;}
.y7e{bottom:968.190000px;}
.y123{bottom:968.292205px;}
.ya4{bottom:974.310000px;}
.y5{bottom:980.250000px;}
.y2c{bottom:987.090000px;}
.ycd{bottom:989.250000px;}
.y107{bottom:990.788006px;}
.y130{bottom:990.796160px;}
.y7d{bottom:991.950000px;}
.ya3{bottom:995.370000px;}
.y2b{bottom:1012.290000px;}
.y4{bottom:1014.270000px;}
.ycc{bottom:1014.450000px;}
.y7c{bottom:1015.710000px;}
.ya2{bottom:1016.430000px;}
.ye6{bottom:1018.230000px;}
.ya1{bottom:1037.490000px;}
.y2a{bottom:1037.670000px;}
.y7b{bottom:1039.290000px;}
.y3{bottom:1039.470000px;}
.ycb{bottom:1039.650000px;}
.ye5{bottom:1041.270000px;}
.y1{bottom:1056.570000px;}
.ya0{bottom:1058.550000px;}
.y29{bottom:1062.900000px;}
.y7a{bottom:1063.080000px;}
.yca{bottom:1064.520000px;}
.y28{bottom:1118.340000px;}
.h16{height:18.780494px;}
.hf{height:18.792245px;}
.h1e{height:18.794854px;}
.h12{height:21.552408px;}
.h1a{height:21.568887px;}
.hb{height:22.531995px;}
.h15{height:41.267255px;}
.h1d{height:41.298809px;}
.he{height:42.259177px;}
.h5{height:50.294531px;}
.h6{height:52.260820px;}
.h11{height:52.424500px;}
.ha{height:52.457301px;}
.h19{height:52.464585px;}
.h14{height:52.512460px;}
.hd{height:52.545316px;}
.h1c{height:52.552613px;}
.h17{height:57.830625px;}
.h1{height:57.927656px;}
.h2{height:62.859375px;}
.h4{height:62.964844px;}
.h8{height:65.946445px;}
.h13{height:66.000015px;}
.h1b{height:66.050481px;}
.hc{height:66.091173px;}
.h7{height:74.004654px;}
.h3{height:94.289062px;}
.h10{height:239.181940px;}
.h18{height:239.364825px;}
.h9{height:240.267899px;}
.h0{height:1188.000000px;}
.w5{width:56.257556px;}
.wa{width:56.286999px;}
.w4{width:56.288741px;}
.w9{width:56.318200px;}
.w2{width:62.868755px;}
.w7{width:62.901657px;}
.w3{width:170.743554px;}
.w8{width:170.832913px;}
.w1{width:349.882083px;}
.w6{width:350.065194px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:4.677735px;}
.x1c{left:7.484376px;}
.x17{left:14.999936px;}
.x16{left:18.773309px;}
.x1a{left:62.831333px;}
.x2{left:81.000000px;}
.x10{left:102.240000px;}
.x7{left:108.036000px;}
.xf{left:113.076000px;}
.x15{left:127.571181px;}
.x12{left:186.330000px;}
.x14{left:196.230000px;}
.x5{left:308.910000px;}
.x6{left:371.775000px;}
.x4{left:394.095000px;}
.x3{left:459.075000px;}
.x8{left:486.075000px;}
.xd{left:507.315000px;}
.x9{left:513.075000px;}
.xc{left:518.145000px;}
.x19{left:550.739848px;}
.x13{left:593.745000px;}
.xa{left:669.885000px;}
.x1b{left:722.418950px;}
.x1d{left:779.637001px;}
.xe{left:832.470000px;}
.x11{left:835.890000px;}
.xb{left:837.150000px;}
.x1{left:918.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.726748pt;}
.ls1a{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:-0.412267pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.374138pt;}
.ls1b{letter-spacing:-0.374086pt;}
.ls1c{letter-spacing:-0.373852pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.284800pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.095467pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.036480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.019840pt;}
.lsc{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls6{letter-spacing:2.176000pt;}
.ls7{letter-spacing:3.994880pt;}
.ls16{letter-spacing:6.656000pt;}
.ls17{letter-spacing:7.173120pt;}
.ls11{letter-spacing:30.848000pt;}
.ls19{letter-spacing:51.402756pt;}
.ls18{letter-spacing:51.434917pt;}
.ls1d{letter-spacing:51.442060pt;}
.ws8{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws5{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.400000pt;}
.wsd{word-spacing:-14.272000pt;}
.ws28{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.824000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws9{word-spacing:-12.277120pt;}
.ws20{word-spacing:-12.072149pt;}
.wse{word-spacing:-12.070473pt;}
.ws16{word-spacing:-12.062926pt;}
.ws7{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.909653pt;}
.ws26{word-spacing:-9.690880pt;}
.ws27{word-spacing:-9.406080pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:44.049403pt;}
.ws1f{word-spacing:57.326470pt;}
.ws25{word-spacing:70.394199pt;}
.ws1b{word-spacing:70.703636pt;}
.ws12{word-spacing:70.747874pt;}
.ws22{word-spacing:70.757698pt;}
.ws23{word-spacing:83.692714pt;}
.ws1e{word-spacing:83.739728pt;}
.ws15{word-spacing:83.792122pt;}
.ws1a{word-spacing:84.014359pt;}
.ws19{word-spacing:97.028082pt;}
.ws11{word-spacing:97.088790pt;}
.ws21{word-spacing:97.102272pt;}
.ws18{word-spacing:97.435820pt;}
.ws10{word-spacing:97.496783pt;}
.ws1c{word-spacing:103.947222pt;}
.ws1d{word-spacing:104.896469pt;}
.ws14{word-spacing:104.962100pt;}
.ws17{word-spacing:110.316657pt;}
.wsf{word-spacing:110.385680pt;}
.ws13{word-spacing:117.419956pt;}
._16{margin-left:-3.574613pt;}
._15{margin-left:-2.216960pt;}
._0{margin-left:-1.059840pt;}
._d{width:0.889173pt;}
._4{width:1.849173pt;}
._13{width:3.462827pt;}
._a{width:4.537173pt;}
._28{width:5.498027pt;}
._9{width:6.400000pt;}
._18{width:7.872000pt;}
._c{width:9.088000pt;}
._b{width:10.496000pt;}
._23{width:11.456000pt;}
._14{width:12.416000pt;}
._26{width:13.574827pt;}
._2d{width:14.714240pt;}
._1e{width:16.099840pt;}
._1d{width:17.152000pt;}
._20{width:18.240000pt;}
._11{width:19.520000pt;}
._19{width:20.608000pt;}
._12{width:21.504000pt;}
._21{width:22.848000pt;}
._f{width:24.128000pt;}
._e{width:25.386667pt;}
._8{width:26.730667pt;}
._6{width:28.416000pt;}
._5{width:29.760000pt;}
._29{width:30.919680pt;}
._1b{width:31.872000pt;}
._1a{width:33.408000pt;}
._2c{width:34.793600pt;}
._2b{width:35.856000pt;}
._34{width:37.120000pt;}
._27{width:38.592000pt;}
._22{width:39.616000pt;}
._3a{width:40.739840pt;}
._25{width:41.920000pt;}
._24{width:43.008000pt;}
._2e{width:43.904000pt;}
._2f{width:45.510827pt;}
._35{width:46.869333pt;}
._31{width:47.786667pt;}
._30{width:49.024000pt;}
._1f{width:50.880000pt;}
._39{width:51.968000pt;}
._3{width:53.184000pt;}
._41{width:54.506667pt;}
._1c{width:55.552000pt;}
._47{width:56.896000pt;}
._7{width:58.880000pt;}
._46{width:59.776000pt;}
._3d{width:65.216000pt;}
._17{width:66.624000pt;}
._32{width:68.160000pt;}
._2a{width:69.440000pt;}
._3b{width:70.976000pt;}
._10{width:72.576000pt;}
._3c{width:73.920000pt;}
._3e{width:74.954667pt;}
._38{width:82.567531pt;}
._45{width:84.032000pt;}
._43{width:89.920000pt;}
._42{width:90.944000pt;}
._36{width:95.915418pt;}
._37{width:109.430018pt;}
._33{width:118.848000pt;}
._40{width:172.160000pt;}
._3f{width:173.504000pt;}
._44{width:232.234667pt;}
._1{width:325.112960pt;}
._2{width:1271.439787pt;}
.fs8{font-size:36.654320pt;}
.fs6{font-size:36.677254pt;}
.fsa{font-size:36.682347pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:53.375777pt;}
.fs5{font-size:53.409173pt;}
.fs9{font-size:53.416590pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:3.322144pt;}
.y124{bottom:3.324684pt;}
.y105{bottom:4.139876pt;}
.y116{bottom:4.141606pt;}
.y12e{bottom:4.144773pt;}
.y119{bottom:4.174827pt;}
.yfb{bottom:4.177439pt;}
.y131{bottom:4.178020pt;}
.y108{bottom:4.188520pt;}
.y117{bottom:14.174480pt;}
.y12f{bottom:14.185318pt;}
.y106{bottom:14.205510pt;}
.y115{bottom:21.665914pt;}
.y104{bottom:21.675038pt;}
.y12d{bottom:21.682481pt;}
.y114{bottom:39.162538pt;}
.y103{bottom:39.182609pt;}
.y12c{bottom:39.192483pt;}
.y2{bottom:52.032000pt;}
.y113{bottom:56.686847pt;}
.y102{bottom:56.717882pt;}
.y12b{bottom:56.730191pt;}
.y112{bottom:74.183471pt;}
.y101{bottom:74.225454pt;}
.y12a{bottom:74.240194pt;}
.y111{bottom:91.707779pt;}
.y100{bottom:91.760727pt;}
.y129{bottom:91.777902pt;}
.y6e{bottom:104.672000pt;}
.yb5{bottom:105.792000pt;}
.y27{bottom:107.712000pt;}
.y110{bottom:109.204403pt;}
.yff{bottom:109.268298pt;}
.y128{bottom:109.287904pt;}
.y4e{bottom:113.632000pt;}
.ye4{bottom:114.112000pt;}
.yc7{bottom:116.032000pt;}
.y79{bottom:116.512000pt;}
.y120{bottom:117.152000pt;}
.yf7{bottom:117.952000pt;}
.yc9{bottom:119.712000pt;}
.y134{bottom:121.952000pt;}
.y10f{bottom:126.728712pt;}
.yfe{bottom:126.808003pt;}
.y127{bottom:126.825612pt;}
.y6d{bottom:127.232000pt;}
.yb4{bottom:128.192000pt;}
.y9f{bottom:128.512000pt;}
.y26{bottom:130.272000pt;}
.y4d{bottom:136.026667pt;}
.ye3{bottom:136.506667pt;}
.y78{bottom:137.626667pt;}
.yc6{bottom:138.106667pt;}
.yc8{bottom:138.906667pt;}
.y11f{bottom:139.546667pt;}
.yf6{bottom:140.346667pt;}
.y10e{bottom:144.225336pt;}
.yfd{bottom:144.315574pt;}
.y126{bottom:144.335615pt;}
.y133{bottom:144.346667pt;}
.y6c{bottom:149.626667pt;}
.yb3{bottom:150.586667pt;}
.y9e{bottom:150.906667pt;}
.y25{bottom:152.666667pt;}
.y4c{bottom:158.586667pt;}
.yc5{bottom:158.746667pt;}
.ye2{bottom:158.906667pt;}
.y10d{bottom:161.755181pt;}
.yfc{bottom:161.845307pt;}
.y125{bottom:161.878864pt;}
.y11e{bottom:161.946667pt;}
.yf5{bottom:162.746667pt;}
.y132{bottom:165.146667pt;}
.y6b{bottom:172.026667pt;}
.yb2{bottom:173.146667pt;}
.y9d{bottom:173.466667pt;}
.y24{bottom:175.226667pt;}
.yc4{bottom:179.386667pt;}
.y77{bottom:179.706667pt;}
.y10a{bottom:180.912877pt;}
.y4b{bottom:180.986667pt;}
.yf9{bottom:181.014990pt;}
.y122{bottom:181.051208pt;}
.ye1{bottom:181.466667pt;}
.y11d{bottom:184.506667pt;}
.yf4{bottom:185.306667pt;}
.y6a{bottom:194.586667pt;}
.yb1{bottom:195.546667pt;}
.y9c{bottom:195.866667pt;}
.y23{bottom:197.626667pt;}
.yc3{bottom:199.866667pt;}
.y76{bottom:201.946667pt;}
.y4a{bottom:203.386667pt;}
.ye0{bottom:203.866667pt;}
.y11c{bottom:206.586667pt;}
.yf3{bottom:207.706667pt;}
.y69{bottom:216.986667pt;}
.yb0{bottom:217.946667pt;}
.y9b{bottom:218.426667pt;}
.yc2{bottom:219.226667pt;}
.y22{bottom:220.026667pt;}
.y11b{bottom:223.066667pt;}
.y49{bottom:225.946667pt;}
.ydf{bottom:226.266667pt;}
.y75{bottom:229.306667pt;}
.yf2{bottom:230.266667pt;}
.y68{bottom:239.386667pt;}
.yaf{bottom:240.506667pt;}
.y9a{bottom:240.826667pt;}
.y21{bottom:242.586667pt;}
.y48{bottom:248.346667pt;}
.yde{bottom:248.826667pt;}
.yf1{bottom:252.666667pt;}
.y67{bottom:261.986667pt;}
.yae{bottom:262.946667pt;}
.y99{bottom:263.266667pt;}
.y20{bottom:265.026667pt;}
.y74{bottom:267.106667pt;}
.y47{bottom:270.946667pt;}
.ydd{bottom:271.266667pt;}
.yf0{bottom:275.106667pt;}
.y66{bottom:284.386667pt;}
.yad{bottom:285.506667pt;}
.y73{bottom:285.826667pt;}
.y1f{bottom:287.586667pt;}
.y46{bottom:293.346667pt;}
.ydc{bottom:293.826667pt;}
.yef{bottom:297.666667pt;}
.y72{bottom:304.546667pt;}
.y65{bottom:306.946667pt;}
.yac{bottom:307.906667pt;}
.y98{bottom:308.226667pt;}
.y1e{bottom:309.986667pt;}
.y45{bottom:315.746667pt;}
.ydb{bottom:316.226667pt;}
.yee{bottom:320.066667pt;}
.y71{bottom:323.266667pt;}
.yab{bottom:329.186667pt;}
.y64{bottom:329.346667pt;}
.y97{bottom:330.626667pt;}
.y1d{bottom:332.386667pt;}
.y44{bottom:338.306667pt;}
.yda{bottom:338.626667pt;}
.y70{bottom:341.986667pt;}
.yed{bottom:342.466667pt;}
.y63{bottom:351.746667pt;}
.y96{bottom:353.186667pt;}
.y1c{bottom:354.946667pt;}
.yaa{bottom:356.226667pt;}
.yc1{bottom:356.706667pt;}
.y43{bottom:360.706667pt;}
.yd9{bottom:361.186667pt;}
.yec{bottom:365.026667pt;}
.y62{bottom:374.306667pt;}
.ya9{bottom:375.266667pt;}
.y95{bottom:375.586667pt;}
.y1b{bottom:377.346667pt;}
.y6f{bottom:379.266667pt;}
.yeb{bottom:382.946667pt;}
.y42{bottom:383.106667pt;}
.y109{bottom:383.520000pt;}
.yd8{bottom:383.586667pt;}
.ya8{bottom:393.986667pt;}
.yc0{bottom:394.306667pt;}
.y61{bottom:396.706667pt;}
.y94{bottom:396.866667pt;}
.y1a{bottom:399.746667pt;}
.y41{bottom:405.666667pt;}
.yd7{bottom:405.986667pt;}
.ya7{bottom:409.186667pt;}
.ybf{bottom:413.026667pt;}
.y93{bottom:417.986667pt;}
.y60{bottom:419.106667pt;}
.y19{bottom:422.306667pt;}
.y40{bottom:428.066667pt;}
.yd6{bottom:428.546667pt;}
.ybe{bottom:431.746667pt;}
.y92{bottom:438.946667pt;}
.y5f{bottom:441.666667pt;}
.y18{bottom:444.706667pt;}
.ybd{bottom:450.466667pt;}
.y3f{bottom:450.626667pt;}
.yd5{bottom:450.946667pt;}
.y91{bottom:460.066667pt;}
.y5e{bottom:464.066667pt;}
.y17{bottom:467.266667pt;}
.ybc{bottom:469.186667pt;}
.y3e{bottom:473.026667pt;}
.yd4{bottom:473.506667pt;}
.y90{bottom:481.186667pt;}
.y5d{bottom:486.626667pt;}
.ybb{bottom:487.933333pt;}
.y16{bottom:489.693333pt;}
.y3d{bottom:495.453333pt;}
.yd3{bottom:495.933333pt;}
.y8f{bottom:502.333333pt;}
.yba{bottom:506.653333pt;}
.y5c{bottom:509.053333pt;}
.y15{bottom:512.093333pt;}
.y3c{bottom:518.013333pt;}
.y8e{bottom:523.293333pt;}
.yb9{bottom:525.373333pt;}
.y5b{bottom:531.453333pt;}
.y14{bottom:534.653333pt;}
.yd2{bottom:537.373333pt;}
.y3b{bottom:540.413333pt;}
.yb8{bottom:544.093333pt;}
.y8d{bottom:544.413333pt;}
.y5a{bottom:554.013333pt;}
.y13{bottom:557.053333pt;}
.y10b{bottom:559.449661pt;}
.yb7{bottom:562.813333pt;}
.y3a{bottom:562.973333pt;}
.y8c{bottom:565.533333pt;}
.y59{bottom:576.413333pt;}
.y118{bottom:579.437893pt;}
.y12{bottom:579.453333pt;}
.yb6{bottom:581.533333pt;}
.y39{bottom:585.373333pt;}
.y8b{bottom:586.653333pt;}
.y58{bottom:598.973333pt;}
.y11{bottom:602.013333pt;}
.yea{bottom:603.773333pt;}
.y8a{bottom:607.613333pt;}
.y38{bottom:607.773333pt;}
.y57{bottom:621.373333pt;}
.y10{bottom:624.413333pt;}
.y89{bottom:628.733333pt;}
.y37{bottom:630.333333pt;}
.y56{bottom:643.773333pt;}
.ye9{bottom:644.893333pt;}
.yf{bottom:646.973333pt;}
.y88{bottom:649.853333pt;}
.y36{bottom:652.733333pt;}
.ye8{bottom:666.013333pt;}
.y55{bottom:666.333333pt;}
.ye{bottom:669.373333pt;}
.y87{bottom:670.813333pt;}
.y35{bottom:675.133333pt;}
.yf8{bottom:683.840000pt;}
.ye7{bottom:683.933333pt;}
.y11a{bottom:684.253333pt;}
.y121{bottom:684.640000pt;}
.yd{bottom:691.773333pt;}
.y86{bottom:691.933333pt;}
.y54{bottom:693.533333pt;}
.y34{bottom:697.693333pt;}
.y53{bottom:712.573333pt;}
.y85{bottom:713.053333pt;}
.yc{bottom:714.333333pt;}
.y33{bottom:720.133333pt;}
.y52{bottom:731.333333pt;}
.y84{bottom:734.213333pt;}
.yb{bottom:736.773333pt;}
.y32{bottom:742.693333pt;}
.y51{bottom:750.053333pt;}
.y83{bottom:755.173333pt;}
.ya{bottom:759.333333pt;}
.y31{bottom:765.093333pt;}
.y50{bottom:768.773333pt;}
.y82{bottom:776.293333pt;}
.y9{bottom:781.253333pt;}
.y30{bottom:787.493333pt;}
.yd1{bottom:789.413333pt;}
.y81{bottom:797.413333pt;}
.y8{bottom:801.893333pt;}
.y4f{bottom:806.213333pt;}
.y2f{bottom:810.053333pt;}
.yd0{bottom:811.813333pt;}
.y80{bottom:818.533333pt;}
.y7{bottom:822.853333pt;}
.ya6{bottom:828.773333pt;}
.y2e{bottom:832.453333pt;}
.ycf{bottom:834.373333pt;}
.y7f{bottom:839.493333pt;}
.y6{bottom:845.413333pt;}
.ya5{bottom:847.333333pt;}
.y2d{bottom:854.853333pt;}
.yce{bottom:856.773333pt;}
.yfa{bottom:859.846494pt;}
.y7e{bottom:860.613333pt;}
.y123{bottom:860.704182pt;}
.ya4{bottom:866.053333pt;}
.y5{bottom:871.333333pt;}
.y2c{bottom:877.413333pt;}
.ycd{bottom:879.333333pt;}
.y107{bottom:880.700450pt;}
.y130{bottom:880.707698pt;}
.y7d{bottom:881.733333pt;}
.ya3{bottom:884.773333pt;}
.y2b{bottom:899.813333pt;}
.y4{bottom:901.573333pt;}
.ycc{bottom:901.733333pt;}
.y7c{bottom:902.853333pt;}
.ya2{bottom:903.493333pt;}
.ye6{bottom:905.093333pt;}
.ya1{bottom:922.213333pt;}
.y2a{bottom:922.373333pt;}
.y7b{bottom:923.813333pt;}
.y3{bottom:923.973333pt;}
.ycb{bottom:924.133333pt;}
.ye5{bottom:925.573333pt;}
.y1{bottom:939.173333pt;}
.ya0{bottom:940.933333pt;}
.y29{bottom:944.800000pt;}
.y7a{bottom:944.960000pt;}
.yca{bottom:946.240000pt;}
.y28{bottom:994.080000pt;}
.h16{height:16.693773pt;}
.hf{height:16.704217pt;}
.h1e{height:16.706537pt;}
.h12{height:19.157696pt;}
.h1a{height:19.172344pt;}
.hb{height:20.028440pt;}
.h15{height:36.682004pt;}
.h1d{height:36.710053pt;}
.he{height:37.563713pt;}
.h5{height:44.706250pt;}
.h6{height:46.454062pt;}
.h11{height:46.599555pt;}
.ha{height:46.628712pt;}
.h19{height:46.635187pt;}
.h14{height:46.677742pt;}
.hd{height:46.706948pt;}
.h1c{height:46.713434pt;}
.h17{height:51.405000pt;}
.h1{height:51.491250pt;}
.h2{height:55.875000pt;}
.h4{height:55.968750pt;}
.h8{height:58.619063pt;}
.h13{height:58.666680pt;}
.h1b{height:58.711538pt;}
.hc{height:58.747710pt;}
.h7{height:65.781915pt;}
.h3{height:83.812500pt;}
.h10{height:212.606169pt;}
.h18{height:212.768734pt;}
.h9{height:213.571466pt;}
.h0{height:1056.000000pt;}
.w5{width:50.006717pt;}
.wa{width:50.032888pt;}
.w4{width:50.034437pt;}
.w9{width:50.060622pt;}
.w2{width:55.883337pt;}
.w7{width:55.912584pt;}
.w3{width:151.772048pt;}
.w8{width:151.851478pt;}
.w1{width:311.006296pt;}
.w6{width:311.169061pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:4.157986pt;}
.x1c{left:6.652778pt;}
.x17{left:13.333276pt;}
.x16{left:16.687385pt;}
.x1a{left:55.850074pt;}
.x2{left:72.000000pt;}
.x10{left:90.880000pt;}
.x7{left:96.032000pt;}
.xf{left:100.512000pt;}
.x15{left:113.396606pt;}
.x12{left:165.626667pt;}
.x14{left:174.426667pt;}
.x5{left:274.586667pt;}
.x6{left:330.466667pt;}
.x4{left:350.306667pt;}
.x3{left:408.066667pt;}
.x8{left:432.066667pt;}
.xd{left:450.946667pt;}
.x9{left:456.066667pt;}
.xc{left:460.573333pt;}
.x19{left:489.546532pt;}
.x13{left:527.773333pt;}
.xa{left:595.453333pt;}
.x1b{left:642.150177pt;}
.x1d{left:693.010667pt;}
.xe{left:739.973333pt;}
.x11{left:743.013333pt;}
.xb{left:744.133333pt;}
.x1{left:816.133333pt;}
}




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