
    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_01705a7c61a75c6116b0df79.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.143000;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_2bca12c22d761c8bdad799c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_98df0825bf4ad2aba7d2353d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.673828;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_da139f1824d11b2b80997ac8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.059082;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_d64d96e916aec59505322bd9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.913086;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_25a067a5a890882be654c5dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909668;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_4b8f6d3713ab4a85844514c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:942.000000;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_9ea12afefcf4d8cedf2f0ea9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_c7594c27f259139148a30dd8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_21c785b49fda555788226dc3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_b907747589b47abbd4096695.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715332;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);}
.v2{vertical-align:-239.974200px;}
.v3{vertical-align:-21.977340px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.953880px;}
.ls4{letter-spacing:-3.240000px;}
.lsb{letter-spacing:-2.160000px;}
.ls11{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.330000px;}
.ls12{letter-spacing:-0.132000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003180px;}
.ls1{letter-spacing:0.066000px;}
.lsd{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.198000px;}
.lsf{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.462000px;}
.ls6{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.594000px;}
.lse{letter-spacing:0.660000px;}
.ls13{letter-spacing:0.726000px;}
.ls5{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.858000px;}
.ls15{letter-spacing:0.924000px;}
.ls0{letter-spacing:1.122000px;}
.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;}
}
.ws5{word-spacing:-65.670000px;}
.wsb{word-spacing:-48.000000px;}
.ws6{word-spacing:-33.000000px;}
.ws9{word-spacing:-16.500000px;}
.ws7{word-spacing:-16.170000px;}
.wsa{word-spacing:-12.144000px;}
.wsd{word-spacing:-12.000000px;}
.ws8{word-spacing:-9.619500px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:1.650000px;}
.ws3{word-spacing:1.800000px;}
.ws2{word-spacing:2.352000px;}
.ws1{word-spacing:4.536000px;}
.ws4{word-spacing:2251.872000px;}
._1b{margin-left:-2551.805029px;}
._15{margin-left:-2550.523814px;}
._4{margin-left:-19.457723px;}
._1d{margin-left:-15.869370px;}
._3{margin-left:-12.959806px;}
._0{margin-left:-4.860567px;}
._19{margin-left:-3.576971px;}
._2{margin-left:-2.429093px;}
._6{margin-left:-1.352251px;}
._5{width:1.619125px;}
._1{width:3.240972px;}
._a{width:5.029688px;}
._16{width:6.277986px;}
._8{width:7.544526px;}
._f{width:9.445326px;}
._d{width:11.357808px;}
._9{width:12.651540px;}
._e{width:13.952400px;}
._c{width:15.107796px;}
._1f{width:16.221150px;}
._b{width:18.203922px;}
._12{width:19.701594px;}
._13{width:21.304602px;}
._11{width:23.041392px;}
._10{width:24.742608px;}
._1e{width:27.476394px;}
._17{width:28.926744px;}
._18{width:30.279486px;}
._20{width:32.176512px;}
._21{width:33.969738px;}
._7{width:40.272882px;}
._1c{width:42.046896px;}
._14{width:64.247040px;}
._1a{width:66.047040px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.478000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs1{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.519750px;}
.y92{bottom:42.520500px;}
.y200{bottom:85.263300px;}
.yea{bottom:89.090100px;}
.y246{bottom:91.534500px;}
.y3a{bottom:94.097700px;}
.y91{bottom:98.444655px;}
.y1ff{bottom:98.763300px;}
.ye9{bottom:102.590100px;}
.y1a3{bottom:104.609700px;}
.y245{bottom:105.034500px;}
.y15d{bottom:108.223800px;}
.y90{bottom:111.944655px;}
.ye8{bottom:116.090100px;}
.y1a2{bottom:118.109700px;}
.y244{bottom:118.534500px;}
.y129{bottom:120.555000px;}
.y15c{bottom:121.723800px;}
.y8f{bottom:125.444655px;}
.ye7{bottom:129.590100px;}
.y1f{bottom:131.360850px;}
.y39{bottom:131.736000px;}
.y243{bottom:132.034500px;}
.y128{bottom:134.055000px;}
.y15b{bottom:135.223800px;}
.y1fe{bottom:135.916785px;}
.y1d0{bottom:136.735200px;}
.y8e{bottom:138.944655px;}
.y242{bottom:145.534500px;}
.y127{bottom:147.555000px;}
.y15a{bottom:148.723800px;}
.y1e{bottom:150.105000px;}
.y38{bottom:150.942450px;}
.y8d{bottom:152.444655px;}
.y1fd{bottom:154.957995px;}
.y1cf{bottom:155.544900px;}
.y189{bottom:155.557500px;}
.y1a5{bottom:158.256000px;}
.y126{bottom:161.055000px;}
.y8c{bottom:165.944655px;}
.ybb{bottom:166.417950px;}
.ye6{bottom:166.705815px;}
.y37{bottom:170.148300px;}
.y1fc{bottom:173.932995px;}
.y1ce{bottom:174.354600px;}
.y188{bottom:174.400050px;}
.y1d{bottom:177.360000px;}
.y8b{bottom:179.444655px;}
.yba{bottom:185.261100px;}
.ye5{bottom:185.861865px;}
.y36{bottom:189.354150px;}
.y1fb{bottom:192.907995px;}
.y8a{bottom:192.944655px;}
.y1cd{bottom:193.164300px;}
.y187{bottom:193.242600px;}
.yb9{bottom:204.103650px;}
.ye4{bottom:205.017915px;}
.y89{bottom:206.444655px;}
.y35{bottom:208.560000px;}
.y110{bottom:210.407100px;}
.y1fa{bottom:211.882995px;}
.y1cc{bottom:211.974600px;}
.y186{bottom:212.085150px;}
.y15f{bottom:212.466000px;}
.y1c{bottom:212.524470px;}
.y88{bottom:219.944655px;}
.yb8{bottom:222.946800px;}
.ye3{bottom:224.173965px;}
.y10f{bottom:230.207100px;}
.y1b{bottom:230.674470px;}
.y1cb{bottom:230.784300px;}
.y1f9{bottom:230.857395px;}
.y185{bottom:230.928300px;}
.y12c{bottom:231.603000px;}
.y34{bottom:236.263650px;}
.yb7{bottom:241.789950px;}
.ye2{bottom:243.330015px;}
.y1a{bottom:248.824470px;}
.y1ca{bottom:249.594000px;}
.y184{bottom:249.770850px;}
.y10e{bottom:250.007100px;}
.y33{bottom:255.469500px;}
.y87{bottom:257.362005px;}
.y62{bottom:257.935530px;}
.y1f8{bottom:258.330195px;}
.yb6{bottom:260.633100px;}
.ye1{bottom:262.486065px;}
.y19{bottom:266.974470px;}
.y1c9{bottom:268.404300px;}
.y183{bottom:268.613400px;}
.y86{bottom:276.716655px;}
.y1f7{bottom:276.991095px;}
.y61{bottom:277.125030px;}
.y10d{bottom:278.304300px;}
.ye0{bottom:281.582865px;}
.y18{bottom:285.124470px;}
.y1c8{bottom:287.214000px;}
.y182{bottom:287.456550px;}
.yb5{bottom:287.973600px;}
.y32{bottom:291.619650px;}
.y1f6{bottom:295.651995px;}
.y10c{bottom:298.104300px;}
.ydf{bottom:300.739515px;}
.y85{bottom:304.568655px;}
.y60{bottom:304.812330px;}
.y1c7{bottom:306.023700px;}
.y181{bottom:306.299100px;}
.yb4{bottom:306.816750px;}
.y31{bottom:310.826100px;}
.y17{bottom:311.772270px;}
.y1f5{bottom:314.313495px;}
.y10b{bottom:317.904300px;}
.yde{bottom:319.895565px;}
.y84{bottom:323.923305px;}
.y1c6{bottom:324.834000px;}
.y180{bottom:325.141650px;}
.yb3{bottom:325.659900px;}
.y16{bottom:329.922270px;}
.y30{bottom:330.032550px;}
.y1f4{bottom:332.974395px;}
.ydd{bottom:339.051615px;}
.y5f{bottom:340.640130px;}
.y17f{bottom:343.984200px;}
.yb2{bottom:344.503050px;}
.y10a{bottom:346.202100px;}
.y15{bottom:348.072270px;}
.y2f{bottom:349.238400px;}
.y1f3{bottom:351.635295px;}
.y83{bottom:351.775305px;}
.y1c5{bottom:352.158000px;}
.ydc{bottom:358.207665px;}
.y5e{bottom:359.367930px;}
.y17e{bottom:362.826750px;}
.yb1{bottom:363.346200px;}
.y109{bottom:366.001500px;}
.y14{bottom:366.222270px;}
.y2e{bottom:368.444850px;}
.y1f2{bottom:370.296795px;}
.ydb{bottom:377.363715px;}
.y5d{bottom:378.095130px;}
.y220{bottom:379.422270px;}
.y241{bottom:379.470180px;}
.y82{bottom:379.627305px;}
.y17d{bottom:381.669300px;}
.yb0{bottom:382.189350px;}
.y13{bottom:384.372270px;}
.y108{bottom:385.801500px;}
.y2d{bottom:387.651300px;}
.y1c4{bottom:387.979350px;}
.y1f1{bottom:388.957695px;}
.yda{bottom:396.519765px;}
.y5c{bottom:396.822330px;}
.y240{bottom:398.494980px;}
.y21f{bottom:398.710770px;}
.y81{bottom:398.981955px;}
.y17c{bottom:400.512450px;}
.yaf{bottom:401.032500px;}
.y12{bottom:402.522270px;}
.y1c3{bottom:406.789050px;}
.y2c{bottom:406.857750px;}
.y1f0{bottom:407.618595px;}
.y107{bottom:414.098700px;}
.y5b{bottom:415.549530px;}
.yd9{bottom:415.675815px;}
.y23f{bottom:417.519180px;}
.y21e{bottom:417.999270px;}
.y80{bottom:418.336605px;}
.yae{bottom:419.875650px;}
.y11{bottom:420.672270px;}
.y1c2{bottom:425.598750px;}
.y2b{bottom:426.064200px;}
.y1ef{bottom:426.279495px;}
.y17b{bottom:427.869300px;}
.y106{bottom:433.898700px;}
.y5a{bottom:434.277330px;}
.yd8{bottom:434.832465px;}
.y23e{bottom:436.543380px;}
.y21d{bottom:437.287770px;}
.y7f{bottom:437.691255px;}
.yad{bottom:438.718200px;}
.y10{bottom:438.822270px;}
.y1c1{bottom:444.408450px;}
.y1ee{bottom:444.940395px;}
.y2a{bottom:445.270650px;}
.y59{bottom:453.004530px;}
.y105{bottom:453.698700px;}
.y23d{bottom:455.567580px;}
.y21c{bottom:456.576270px;}
.yf{bottom:456.972270px;}
.y7e{bottom:457.045905px;}
.yac{bottom:457.561350px;}
.yd7{bottom:462.486315px;}
.y1c0{bottom:463.218750px;}
.y1ed{bottom:463.601295px;}
.y29{bottom:464.477100px;}
.y17a{bottom:467.980800px;}
.y58{bottom:471.731730px;}
.y104{bottom:473.443035px;}
.y23c{bottom:474.496290px;}
.ye{bottom:475.122270px;}
.y21b{bottom:475.864770px;}
.y7d{bottom:476.399955px;}
.yab{bottom:476.404500px;}
.yd6{bottom:481.642365px;}
.y1bf{bottom:482.028450px;}
.y1ec{bottom:482.262795px;}
.y28{bottom:483.683550px;}
.y179{bottom:489.678600px;}
.y57{bottom:490.458930px;}
.y103{bottom:493.243035px;}
.yd{bottom:493.272270px;}
.y23b{bottom:493.520490px;}
.y21a{bottom:495.153270px;}
.yaa{bottom:495.247650px;}
.y7c{bottom:495.754605px;}
.yd5{bottom:500.798415px;}
.y1be{bottom:500.838150px;}
.y1eb{bottom:500.923695px;}
.y27{bottom:502.890000px;}
.y1a4{bottom:504.921000px;}
.y178{bottom:508.521750px;}
.y56{bottom:509.186130px;}
.y23a{bottom:512.544690px;}
.y102{bottom:513.043035px;}
.ya9{bottom:514.090800px;}
.y219{bottom:514.441770px;}
.y7b{bottom:515.109255px;}
.y1ea{bottom:519.584595px;}
.y1bd{bottom:519.647850px;}
.yc{bottom:519.931800px;}
.yd4{bottom:519.954465px;}
.y26{bottom:522.096450px;}
.y177{bottom:527.364900px;}
.y55{bottom:527.913330px;}
.y239{bottom:531.568890px;}
.y101{bottom:532.843035px;}
.ya8{bottom:532.933950px;}
.y218{bottom:533.730270px;}
.y15e{bottom:534.261000px;}
.y7a{bottom:534.463905px;}
.y1e9{bottom:538.245495px;}
.y1bc{bottom:538.457550px;}
.yd3{bottom:539.110515px;}
.y25{bottom:541.302900px;}
.y176{bottom:546.208050px;}
.y12b{bottom:546.378000px;}
.yb{bottom:546.579000px;}
.y54{bottom:546.640530px;}
.y238{bottom:550.593090px;}
.ya7{bottom:551.777100px;}
.y100{bottom:552.643035px;}
.y217{bottom:553.018770px;}
.y1a1{bottom:553.242375px;}
.y1e8{bottom:556.906395px;}
.y1bb{bottom:557.267250px;}
.yd2{bottom:558.249000px;}
.y24{bottom:560.509350px;}
.y79{bottom:562.321755px;}
.ya{bottom:564.729000px;}
.y175{bottom:565.051200px;}
.y12a{bottom:565.128000px;}
.y53{bottom:565.367730px;}
.y237{bottom:569.617290px;}
.ya6{bottom:570.620250px;}
.y1a0{bottom:572.151225px;}
.y216{bottom:572.307270px;}
.yff{bottom:572.443035px;}
.y159{bottom:574.534335px;}
.y142{bottom:574.761015px;}
.y1e7{bottom:575.567895px;}
.yd1{bottom:577.405650px;}
.y23{bottom:579.715200px;}
.y9{bottom:582.879000px;}
.y174{bottom:583.894350px;}
.y52{bottom:584.094930px;}
.y1ba{bottom:584.591250px;}
.y236{bottom:588.641490px;}
.ya5{bottom:589.463400px;}
.y19f{bottom:591.060075px;}
.y215{bottom:591.595770px;}
.yfe{bottom:592.243035px;}
.y158{bottom:593.603715px;}
.y141{bottom:594.445515px;}
.yd0{bottom:596.562300px;}
.y78{bottom:598.681500px;}
.y125{bottom:598.767300px;}
.y22{bottom:598.921050px;}
.y8{bottom:601.029000px;}
.y173{bottom:602.737500px;}
.y51{bottom:602.822130px;}
.y1e6{bottom:602.848500px;}
.y1b9{bottom:603.400950px;}
.y235{bottom:607.666290px;}
.ya4{bottom:608.306550px;}
.y19e{bottom:609.968925px;}
.y214{bottom:610.884270px;}
.yfd{bottom:612.043035px;}
.y157{bottom:612.793215px;}
.y140{bottom:614.130015px;}
.ycf{bottom:615.718350px;}
.y77{bottom:618.036150px;}
.y21{bottom:618.127500px;}
.y124{bottom:618.633450px;}
.y7{bottom:619.179000px;}
.y1e5{bottom:621.509400px;}
.y50{bottom:621.549930px;}
.y172{bottom:621.580650px;}
.y1b8{bottom:622.210650px;}
.y234{bottom:626.690490px;}
.y19d{bottom:628.877775px;}
.y213{bottom:630.172770px;}
.yfc{bottom:631.843035px;}
.y156{bottom:631.982715px;}
.yce{bottom:634.875000px;}
.ya3{bottom:635.647050px;}
.y6{bottom:637.329000px;}
.y20{bottom:637.333350px;}
.y76{bottom:637.390800px;}
.y123{bottom:638.499600px;}
.y1e4{bottom:640.170300px;}
.y4f{bottom:640.277130px;}
.y171{bottom:640.423800px;}
.y1b7{bottom:641.020350px;}
.y13f{bottom:642.311865px;}
.y233{bottom:645.714690px;}
.y19c{bottom:647.774910px;}
.y212{bottom:649.461270px;}
.y155{bottom:651.172215px;}
.ya2{bottom:654.490200px;}
.y75{bottom:656.745450px;}
.y122{bottom:657.919950px;}
.y1e3{bottom:658.831200px;}
.y4e{bottom:659.004330px;}
.y170{bottom:659.266950px;}
.y1b6{bottom:659.830050px;}
.yfb{bottom:660.026700px;}
.y13e{bottom:661.996365px;}
.ycd{bottom:662.532000px;}
.y232{bottom:664.738890px;}
.y19b{bottom:666.683760px;}
.y211{bottom:668.749770px;}
.y154{bottom:670.361715px;}
.ya1{bottom:673.333350px;}
.y5{bottom:675.937650px;}
.y74{bottom:676.100100px;}
.y121{bottom:677.340300px;}
.y1e2{bottom:677.492100px;}
.y4d{bottom:677.731530px;}
.y16f{bottom:678.110100px;}
.y1b5{bottom:678.639750px;}
.yfa{bottom:679.826700px;}
.y13d{bottom:681.680865px;}
.ycc{bottom:681.684000px;}
.y231{bottom:683.763690px;}
.y19a{bottom:685.592610px;}
.y210{bottom:688.038270px;}
.y153{bottom:689.551215px;}
.ya0{bottom:692.176500px;}
.y73{bottom:695.454750px;}
.y1e1{bottom:696.153600px;}
.y4c{bottom:696.510300px;}
.y120{bottom:696.760650px;}
.y16e{bottom:696.953250px;}
.y1b4{bottom:697.449450px;}
.yf9{bottom:699.626700px;}
.y13c{bottom:701.365365px;}
.y4{bottom:702.442500px;}
.y230{bottom:702.787890px;}
.y199{bottom:704.501460px;}
.y20f{bottom:707.326770px;}
.y152{bottom:708.740715px;}
.y72{bottom:714.809400px;}
.y1e0{bottom:714.814500px;}
.y4b{bottom:715.237500px;}
.y16d{bottom:715.796400px;}
.y11f{bottom:716.181000px;}
.y1b3{bottom:716.259150px;}
.ycb{bottom:717.698400px;}
.yf8{bottom:719.426700px;}
.y9f{bottom:719.521200px;}
.y13b{bottom:721.049865px;}
.y198{bottom:723.410310px;}
.y20e{bottom:726.615270px;}
.y22f{bottom:730.309890px;}
.y1df{bottom:733.475400px;}
.y4a{bottom:733.964700px;}
.y71{bottom:734.164050px;}
.y16c{bottom:734.638950px;}
.y1b2{bottom:735.068850px;}
.y11e{bottom:735.601350px;}
.y151{bottom:736.428015px;}
.yca{bottom:736.855050px;}
.yf7{bottom:739.226700px;}
.y13a{bottom:740.734365px;}
.y197{bottom:742.319610px;}
.y20d{bottom:745.903770px;}
.y22e{bottom:749.334090px;}
.y1de{bottom:752.136300px;}
.y49{bottom:752.692500px;}
.y16b{bottom:753.482100px;}
.y70{bottom:753.518700px;}
.y1b1{bottom:753.878550px;}
.y11d{bottom:755.021700px;}
.y9e{bottom:755.365350px;}
.y150{bottom:755.617515px;}
.yc9{bottom:756.011700px;}
.yf6{bottom:759.026700px;}
.y20c{bottom:765.192270px;}
.y22d{bottom:768.358290px;}
.y139{bottom:768.916815px;}
.y196{bottom:769.725660px;}
.y1dd{bottom:770.797200px;}
.y48{bottom:771.420300px;}
.y16a{bottom:772.325250px;}
.y1b0{bottom:772.688250px;}
.y6f{bottom:772.873350px;}
.y9d{bottom:774.207900px;}
.y11c{bottom:774.442050px;}
.y14f{bottom:774.807015px;}
.yc8{bottom:775.168350px;}
.yf5{bottom:778.826700px;}
.y20b{bottom:784.480770px;}
.y22c{bottom:787.382490px;}
.y138{bottom:788.601315px;}
.y195{bottom:788.634510px;}
.y1dc{bottom:789.458100px;}
.y47{bottom:790.147500px;}
.y169{bottom:791.168400px;}
.y1af{bottom:791.497950px;}
.y6e{bottom:792.228000px;}
.y11b{bottom:793.862400px;}
.y14e{bottom:793.996515px;}
.yc7{bottom:794.325000px;}
.yf4{bottom:798.626700px;}
.y9c{bottom:801.548400px;}
.y22b{bottom:806.406690px;}
.y194{bottom:807.543360px;}
.y1db{bottom:808.119000px;}
.y137{bottom:808.285815px;}
.y46{bottom:808.875300px;}
.y168{bottom:810.011550px;}
.y1ae{bottom:810.307650px;}
.y6d{bottom:811.582650px;}
.y20a{bottom:812.239500px;}
.y14d{bottom:813.186015px;}
.y11a{bottom:813.283350px;}
.yc6{bottom:813.481650px;}
.yf3{bottom:818.426700px;}
.y22a{bottom:825.430890px;}
.y193{bottom:826.452210px;}
.y1da{bottom:826.780500px;}
.y45{bottom:827.602500px;}
.y136{bottom:827.970315px;}
.y167{bottom:828.854700px;}
.y9b{bottom:828.889350px;}
.y1ad{bottom:829.117350px;}
.y6c{bottom:830.937300px;}
.y209{bottom:831.528000px;}
.y14c{bottom:832.375515px;}
.yc5{bottom:832.637700px;}
.y119{bottom:832.703700px;}
.yf2{bottom:838.226700px;}
.y229{bottom:844.455090px;}
.y192{bottom:845.361060px;}
.y1d9{bottom:845.441400px;}
.y44{bottom:846.330300px;}
.y135{bottom:847.654815px;}
.y166{bottom:847.697850px;}
.y9a{bottom:847.731900px;}
.y1ac{bottom:847.927650px;}
.y6b{bottom:850.291950px;}
.y208{bottom:850.816500px;}
.y14b{bottom:851.565015px;}
.yc4{bottom:851.794350px;}
.y118{bottom:852.124050px;}
.yf1{bottom:858.026700px;}
.y228{bottom:863.479290px;}
.y1d8{bottom:864.102300px;}
.y191{bottom:864.269910px;}
.y165{bottom:866.541000px;}
.y134{bottom:867.339315px;}
.y6a{bottom:869.638980px;}
.y207{bottom:870.105000px;}
.y14a{bottom:870.754515px;}
.yc3{bottom:870.951000px;}
.y117{bottom:871.545000px;}
.y43{bottom:873.571650px;}
.y99{bottom:875.072400px;}
.y1ab{bottom:875.251650px;}
.yf0{bottom:877.826700px;}
.y227{bottom:882.409170px;}
.y1d7{bottom:882.763800px;}
.y190{bottom:883.355700px;}
.y164{bottom:885.383550px;}
.y133{bottom:887.023815px;}
.y69{bottom:888.993630px;}
.y206{bottom:889.393500px;}
.y149{bottom:889.944015px;}
.yc2{bottom:890.107650px;}
.y42{bottom:892.298850px;}
.y98{bottom:893.915550px;}
.yef{bottom:897.626700px;}
.y116{bottom:899.463450px;}
.y1d6{bottom:901.424700px;}
.y226{bottom:901.433370px;}
.y18f{bottom:902.264550px;}
.y163{bottom:904.226700px;}
.y132{bottom:906.708315px;}
.y68{bottom:908.348280px;}
.y205{bottom:908.682000px;}
.y148{bottom:909.133515px;}
.yc1{bottom:909.264300px;}
.y41{bottom:911.026050px;}
.y1aa{bottom:911.073000px;}
.yee{bottom:917.426700px;}
.y115{bottom:918.883800px;}
.y1d5{bottom:920.085600px;}
.y225{bottom:920.457570px;}
.y18e{bottom:921.173850px;}
.y97{bottom:921.256050px;}
.y162{bottom:923.069850px;}
.y131{bottom:926.392365px;}
.y67{bottom:927.702930px;}
.y204{bottom:927.970500px;}
.y147{bottom:928.323015px;}
.yc0{bottom:928.420950px;}
.y40{bottom:929.753250px;}
.y1a9{bottom:929.883300px;}
.yed{bottom:937.226700px;}
.y114{bottom:938.304150px;}
.y1d4{bottom:938.746500px;}
.y224{bottom:939.481770px;}
.y18d{bottom:940.082700px;}
.y96{bottom:940.099200px;}
.y3{bottom:944.899200px;}
.y130{bottom:946.076865px;}
.y66{bottom:947.057580px;}
.y203{bottom:947.259000px;}
.y146{bottom:947.512515px;}
.ybf{bottom:947.577600px;}
.y3f{bottom:948.480450px;}
.y1a8{bottom:948.693600px;}
.y161{bottom:950.426700px;}
.y1d3{bottom:957.408000px;}
.y223{bottom:958.506570px;}
.yec{bottom:965.524500px;}
.y12f{bottom:965.755500px;}
.y113{bottom:966.222300px;}
.y65{bottom:966.412230px;}
.y202{bottom:966.547500px;}
.y145{bottom:966.702015px;}
.ybe{bottom:966.734250px;}
.y3e{bottom:967.207650px;}
.y95{bottom:967.439700px;}
.y18c{bottom:967.489350px;}
.y1a7{bottom:967.503900px;}
.y1d2{bottom:984.580800px;}
.yeb{bottom:985.324500px;}
.y12e{bottom:985.440000px;}
.y112{bottom:985.642650px;}
.y64{bottom:985.766880px;}
.y201{bottom:985.836000px;}
.ybd{bottom:985.890300px;}
.y144{bottom:985.891515px;}
.y3d{bottom:985.934850px;}
.y222{bottom:986.028570px;}
.y160{bottom:986.281350px;}
.y94{bottom:986.282850px;}
.y1a6{bottom:986.314200px;}
.y18b{bottom:986.398200px;}
.y2{bottom:991.392750px;}
.y1d1{bottom:1003.246500px;}
.ybc{bottom:1005.046950px;}
.y221{bottom:1005.052770px;}
.y111{bottom:1005.063600px;}
.y143{bottom:1005.081015px;}
.y63{bottom:1005.121530px;}
.y12d{bottom:1005.124500px;}
.y93{bottom:1005.126000px;}
.y18a{bottom:1005.307500px;}
.y3c{bottom:1065.118500px;}
.y3b{bottom:1067.272500px;}
.ha{height:40.335938px;}
.h14{height:46.116211px;}
.h10{height:49.716797px;}
.h9{height:49.746094px;}
.h8{height:49.992188px;}
.h11{height:50.419922px;}
.h5{height:52.202637px;}
.h6{height:54.688477px;}
.h2{height:54.900000px;}
.h7{height:55.461914px;}
.h12{height:55.485374px;}
.hd{height:55.492394px;}
.h15{height:55.508774px;}
.he{height:55.534574px;}
.hf{height:55.684574px;}
.h16{height:55.846274px;}
.h13{height:55.942394px;}
.h4{height:76.860000px;}
.hb{height:87.840000px;}
.h3{height:148.230000px;}
.h1{height:1126.500000px;}
.h0{height:1126.770000px;}
.hc{height:55380.000000px;}
.w1{width:807.750000px;}
.w0{width:807.870000px;}
.x0{left:0.000000px;}
.x7{left:82.287300px;}
.x2{left:83.539500px;}
.x1{left:85.039500px;}
.x3{left:102.047400px;}
.xa{left:110.550742px;}
.x4{left:304.205400px;}
.xc{left:412.932660px;}
.x5{left:414.557400px;}
.xb{left:429.944250px;}
.x6{left:431.575650px;}
.x9{left:585.240000px;}
.x8{left:706.155000px;}
@media print{
.v2{vertical-align:-213.310400pt;}
.v3{vertical-align:-19.535413pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.514560pt;}
.ls4{letter-spacing:-2.880000pt;}
.lsb{letter-spacing:-1.920000pt;}
.ls11{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls12{letter-spacing:-0.117333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002827pt;}
.ls1{letter-spacing:0.058667pt;}
.lsd{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.176000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.410667pt;}
.ls6{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.586667pt;}
.ls13{letter-spacing:0.645333pt;}
.ls5{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.762667pt;}
.ls15{letter-spacing:0.821333pt;}
.ls0{letter-spacing:0.997333pt;}
.ws5{word-spacing:-58.373333pt;}
.wsb{word-spacing:-42.666667pt;}
.ws6{word-spacing:-29.333333pt;}
.ws9{word-spacing:-14.666667pt;}
.ws7{word-spacing:-14.373333pt;}
.wsa{word-spacing:-10.794667pt;}
.wsd{word-spacing:-10.666667pt;}
.ws8{word-spacing:-8.550667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:1.466667pt;}
.ws3{word-spacing:1.600000pt;}
.ws2{word-spacing:2.090667pt;}
.ws1{word-spacing:4.032000pt;}
.ws4{word-spacing:2001.664000pt;}
._1b{margin-left:-2268.271137pt;}
._15{margin-left:-2267.132279pt;}
._4{margin-left:-17.295754pt;}
._1d{margin-left:-14.106107pt;}
._3{margin-left:-11.519827pt;}
._0{margin-left:-4.320504pt;}
._19{margin-left:-3.179530pt;}
._2{margin-left:-2.159194pt;}
._6{margin-left:-1.202001pt;}
._5{width:1.439222pt;}
._1{width:2.880864pt;}
._a{width:4.470834pt;}
._16{width:5.580432pt;}
._8{width:6.706245pt;}
._f{width:8.395845pt;}
._d{width:10.095829pt;}
._9{width:11.245813pt;}
._e{width:12.402133pt;}
._c{width:13.429152pt;}
._1f{width:14.418800pt;}
._b{width:16.181264pt;}
._12{width:17.512528pt;}
._13{width:18.937424pt;}
._11{width:20.481237pt;}
._10{width:21.993429pt;}
._1e{width:24.423461pt;}
._17{width:25.712661pt;}
._18{width:26.915099pt;}
._20{width:28.601344pt;}
._21{width:30.195323pt;}
._7{width:35.798117pt;}
._1c{width:37.375019pt;}
._14{width:57.108480pt;}
._1a{width:58.708480pt;}
.fs5{font-size:34.202667pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs1{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.795333pt;}
.y92{bottom:37.796000pt;}
.y200{bottom:75.789600pt;}
.yea{bottom:79.191200pt;}
.y246{bottom:81.364000pt;}
.y3a{bottom:83.642400pt;}
.y91{bottom:87.506360pt;}
.y1ff{bottom:87.789600pt;}
.ye9{bottom:91.191200pt;}
.y1a3{bottom:92.986400pt;}
.y245{bottom:93.364000pt;}
.y15d{bottom:96.198933pt;}
.y90{bottom:99.506360pt;}
.ye8{bottom:103.191200pt;}
.y1a2{bottom:104.986400pt;}
.y244{bottom:105.364000pt;}
.y129{bottom:107.160000pt;}
.y15c{bottom:108.198933pt;}
.y8f{bottom:111.506360pt;}
.ye7{bottom:115.191200pt;}
.y1f{bottom:116.765200pt;}
.y39{bottom:117.098667pt;}
.y243{bottom:117.364000pt;}
.y128{bottom:119.160000pt;}
.y15b{bottom:120.198933pt;}
.y1fe{bottom:120.814920pt;}
.y1d0{bottom:121.542400pt;}
.y8e{bottom:123.506360pt;}
.y242{bottom:129.364000pt;}
.y127{bottom:131.160000pt;}
.y15a{bottom:132.198933pt;}
.y1e{bottom:133.426667pt;}
.y38{bottom:134.171067pt;}
.y8d{bottom:135.506360pt;}
.y1fd{bottom:137.740440pt;}
.y1cf{bottom:138.262133pt;}
.y189{bottom:138.273333pt;}
.y1a5{bottom:140.672000pt;}
.y126{bottom:143.160000pt;}
.y8c{bottom:147.506360pt;}
.ybb{bottom:147.927067pt;}
.ye6{bottom:148.182947pt;}
.y37{bottom:151.242933pt;}
.y1fc{bottom:154.607107pt;}
.y1ce{bottom:154.981867pt;}
.y188{bottom:155.022267pt;}
.y1d{bottom:157.653333pt;}
.y8b{bottom:159.506360pt;}
.yba{bottom:164.676533pt;}
.ye5{bottom:165.210547pt;}
.y36{bottom:168.314800pt;}
.y1fb{bottom:171.473773pt;}
.y8a{bottom:171.506360pt;}
.y1cd{bottom:171.701600pt;}
.y187{bottom:171.771200pt;}
.yb9{bottom:181.425467pt;}
.ye4{bottom:182.238147pt;}
.y89{bottom:183.506360pt;}
.y35{bottom:185.386667pt;}
.y110{bottom:187.028533pt;}
.y1fa{bottom:188.340440pt;}
.y1cc{bottom:188.421867pt;}
.y186{bottom:188.520133pt;}
.y15f{bottom:188.858667pt;}
.y1c{bottom:188.910640pt;}
.y88{bottom:195.506360pt;}
.yb8{bottom:198.174933pt;}
.ye3{bottom:199.265747pt;}
.y10f{bottom:204.628533pt;}
.y1b{bottom:205.043973pt;}
.y1cb{bottom:205.141600pt;}
.y1f9{bottom:205.206573pt;}
.y185{bottom:205.269600pt;}
.y12c{bottom:205.869333pt;}
.y34{bottom:210.012133pt;}
.yb7{bottom:214.924400pt;}
.ye2{bottom:216.293347pt;}
.y1a{bottom:221.177307pt;}
.y1ca{bottom:221.861333pt;}
.y184{bottom:222.018533pt;}
.y10e{bottom:222.228533pt;}
.y33{bottom:227.084000pt;}
.y87{bottom:228.766227pt;}
.y62{bottom:229.276027pt;}
.y1f8{bottom:229.626840pt;}
.yb6{bottom:231.673867pt;}
.ye1{bottom:233.320947pt;}
.y19{bottom:237.310640pt;}
.y1c9{bottom:238.581600pt;}
.y183{bottom:238.767467pt;}
.y86{bottom:245.970360pt;}
.y1f7{bottom:246.214307pt;}
.y61{bottom:246.333360pt;}
.y10d{bottom:247.381600pt;}
.ye0{bottom:250.295880pt;}
.y18{bottom:253.443973pt;}
.y1c8{bottom:255.301333pt;}
.y182{bottom:255.516933pt;}
.yb5{bottom:255.976533pt;}
.y32{bottom:259.217467pt;}
.y1f6{bottom:262.801773pt;}
.y10c{bottom:264.981600pt;}
.ydf{bottom:267.324013pt;}
.y85{bottom:270.727693pt;}
.y60{bottom:270.944293pt;}
.y1c7{bottom:272.021067pt;}
.y181{bottom:272.265867pt;}
.yb4{bottom:272.726000pt;}
.y31{bottom:276.289867pt;}
.y17{bottom:277.130907pt;}
.y1f5{bottom:279.389773pt;}
.y10b{bottom:282.581600pt;}
.yde{bottom:284.351613pt;}
.y84{bottom:287.931827pt;}
.y1c6{bottom:288.741333pt;}
.y180{bottom:289.014800pt;}
.yb3{bottom:289.475467pt;}
.y16{bottom:293.264240pt;}
.y30{bottom:293.362267pt;}
.y1f4{bottom:295.977240pt;}
.ydd{bottom:301.379213pt;}
.y5f{bottom:302.791227pt;}
.y17f{bottom:305.763733pt;}
.yb2{bottom:306.224933pt;}
.y10a{bottom:307.735200pt;}
.y15{bottom:309.397573pt;}
.y2f{bottom:310.434133pt;}
.y1f3{bottom:312.564707pt;}
.y83{bottom:312.689160pt;}
.y1c5{bottom:313.029333pt;}
.ydc{bottom:318.406813pt;}
.y5e{bottom:319.438160pt;}
.y17e{bottom:322.512667pt;}
.yb1{bottom:322.974400pt;}
.y109{bottom:325.334667pt;}
.y14{bottom:325.530907pt;}
.y2e{bottom:327.506533pt;}
.y1f2{bottom:329.152707pt;}
.ydb{bottom:335.434413pt;}
.y5d{bottom:336.084560pt;}
.y220{bottom:337.264240pt;}
.y241{bottom:337.306827pt;}
.y82{bottom:337.446493pt;}
.y17d{bottom:339.261600pt;}
.yb0{bottom:339.723867pt;}
.y13{bottom:341.664240pt;}
.y108{bottom:342.934667pt;}
.y2d{bottom:344.578933pt;}
.y1c4{bottom:344.870533pt;}
.y1f1{bottom:345.740173pt;}
.yda{bottom:352.462013pt;}
.y5c{bottom:352.730960pt;}
.y240{bottom:354.217760pt;}
.y21f{bottom:354.409573pt;}
.y81{bottom:354.650627pt;}
.y17c{bottom:356.011067pt;}
.yaf{bottom:356.473333pt;}
.y12{bottom:357.797573pt;}
.y1c3{bottom:361.590267pt;}
.y2c{bottom:361.651333pt;}
.y1f0{bottom:362.327640pt;}
.y107{bottom:368.087733pt;}
.y5b{bottom:369.377360pt;}
.yd9{bottom:369.489613pt;}
.y23f{bottom:371.128160pt;}
.y21e{bottom:371.554907pt;}
.y80{bottom:371.854760pt;}
.yae{bottom:373.222800pt;}
.y11{bottom:373.930907pt;}
.y1c2{bottom:378.310000pt;}
.y2b{bottom:378.723733pt;}
.y1ef{bottom:378.915107pt;}
.y17b{bottom:380.328267pt;}
.y106{bottom:385.687733pt;}
.y5a{bottom:386.024293pt;}
.yd8{bottom:386.517747pt;}
.y23e{bottom:388.038560pt;}
.y21d{bottom:388.700240pt;}
.y7f{bottom:389.058893pt;}
.yad{bottom:389.971733pt;}
.y10{bottom:390.064240pt;}
.y1c1{bottom:395.029733pt;}
.y1ee{bottom:395.502573pt;}
.y2a{bottom:395.796133pt;}
.y59{bottom:402.670693pt;}
.y105{bottom:403.287733pt;}
.y23d{bottom:404.948960pt;}
.y21c{bottom:405.845573pt;}
.yf{bottom:406.197573pt;}
.y7e{bottom:406.263027pt;}
.yac{bottom:406.721200pt;}
.yd7{bottom:411.098947pt;}
.y1c0{bottom:411.750000pt;}
.y1ed{bottom:412.090040pt;}
.y29{bottom:412.868533pt;}
.y17a{bottom:415.982933pt;}
.y58{bottom:419.317093pt;}
.y104{bottom:420.838253pt;}
.y23c{bottom:421.774480pt;}
.ye{bottom:422.330907pt;}
.y21b{bottom:422.990907pt;}
.y7d{bottom:423.466627pt;}
.yab{bottom:423.470667pt;}
.yd6{bottom:428.126547pt;}
.y1bf{bottom:428.469733pt;}
.y1ec{bottom:428.678040pt;}
.y28{bottom:429.940933pt;}
.y179{bottom:435.269867pt;}
.y57{bottom:435.963493pt;}
.y103{bottom:438.438253pt;}
.yd{bottom:438.464240pt;}
.y23b{bottom:438.684880pt;}
.y21a{bottom:440.136240pt;}
.yaa{bottom:440.220133pt;}
.y7c{bottom:440.670760pt;}
.yd5{bottom:445.154147pt;}
.y1be{bottom:445.189467pt;}
.y1eb{bottom:445.265507pt;}
.y27{bottom:447.013333pt;}
.y1a4{bottom:448.818667pt;}
.y178{bottom:452.019333pt;}
.y56{bottom:452.609893pt;}
.y23a{bottom:455.595280pt;}
.y102{bottom:456.038253pt;}
.ya9{bottom:456.969600pt;}
.y219{bottom:457.281573pt;}
.y7b{bottom:457.874893pt;}
.y1ea{bottom:461.852973pt;}
.y1bd{bottom:461.909200pt;}
.yc{bottom:462.161600pt;}
.yd4{bottom:462.181747pt;}
.y26{bottom:464.085733pt;}
.y177{bottom:468.768800pt;}
.y55{bottom:469.256293pt;}
.y239{bottom:472.505680pt;}
.y101{bottom:473.638253pt;}
.ya8{bottom:473.719067pt;}
.y218{bottom:474.426907pt;}
.y15e{bottom:474.898667pt;}
.y7a{bottom:475.079027pt;}
.y1e9{bottom:478.440440pt;}
.y1bc{bottom:478.628933pt;}
.yd3{bottom:479.209347pt;}
.y25{bottom:481.158133pt;}
.y176{bottom:485.518267pt;}
.y12b{bottom:485.669333pt;}
.yb{bottom:485.848000pt;}
.y54{bottom:485.902693pt;}
.y238{bottom:489.416080pt;}
.ya7{bottom:490.468533pt;}
.y100{bottom:491.238253pt;}
.y217{bottom:491.572240pt;}
.y1a1{bottom:491.771000pt;}
.y1e8{bottom:495.027907pt;}
.y1bb{bottom:495.348667pt;}
.yd2{bottom:496.221333pt;}
.y24{bottom:498.230533pt;}
.y79{bottom:499.841560pt;}
.ya{bottom:501.981333pt;}
.y175{bottom:502.267733pt;}
.y12a{bottom:502.336000pt;}
.y53{bottom:502.549093pt;}
.y237{bottom:506.326480pt;}
.ya6{bottom:507.218000pt;}
.y1a0{bottom:508.578867pt;}
.y216{bottom:508.717573pt;}
.yff{bottom:508.838253pt;}
.y159{bottom:510.697187pt;}
.y142{bottom:510.898680pt;}
.y1e7{bottom:511.615907pt;}
.yd1{bottom:513.249467pt;}
.y23{bottom:515.302400pt;}
.y9{bottom:518.114667pt;}
.y174{bottom:519.017200pt;}
.y52{bottom:519.195493pt;}
.y1ba{bottom:519.636667pt;}
.y236{bottom:523.236880pt;}
.ya5{bottom:523.967467pt;}
.y19f{bottom:525.386733pt;}
.y215{bottom:525.862907pt;}
.yfe{bottom:526.438253pt;}
.y158{bottom:527.647747pt;}
.y141{bottom:528.396013pt;}
.yd0{bottom:530.277600pt;}
.y78{bottom:532.161333pt;}
.y125{bottom:532.237600pt;}
.y22{bottom:532.374267pt;}
.y8{bottom:534.248000pt;}
.y173{bottom:535.766667pt;}
.y51{bottom:535.841893pt;}
.y1e6{bottom:535.865333pt;}
.y1b9{bottom:536.356400pt;}
.y235{bottom:540.147813pt;}
.ya4{bottom:540.716933pt;}
.y19e{bottom:542.194600pt;}
.y214{bottom:543.008240pt;}
.yfd{bottom:544.038253pt;}
.y157{bottom:544.705080pt;}
.y140{bottom:545.893347pt;}
.ycf{bottom:547.305200pt;}
.y77{bottom:549.365467pt;}
.y21{bottom:549.446667pt;}
.y124{bottom:549.896400pt;}
.y7{bottom:550.381333pt;}
.y1e5{bottom:552.452800pt;}
.y50{bottom:552.488827pt;}
.y172{bottom:552.516133pt;}
.y1b8{bottom:553.076133pt;}
.y234{bottom:557.058213pt;}
.y19d{bottom:559.002467pt;}
.y213{bottom:560.153573pt;}
.yfc{bottom:561.638253pt;}
.y156{bottom:561.762413pt;}
.yce{bottom:564.333333pt;}
.ya3{bottom:565.019600pt;}
.y6{bottom:566.514667pt;}
.y20{bottom:566.518533pt;}
.y76{bottom:566.569600pt;}
.y123{bottom:567.555200pt;}
.y1e4{bottom:569.040267pt;}
.y4f{bottom:569.135227pt;}
.y171{bottom:569.265600pt;}
.y1b7{bottom:569.795867pt;}
.y13f{bottom:570.943880pt;}
.y233{bottom:573.968613pt;}
.y19c{bottom:575.799920pt;}
.y212{bottom:577.298907pt;}
.y155{bottom:578.819747pt;}
.ya2{bottom:581.769067pt;}
.y75{bottom:583.773733pt;}
.y122{bottom:584.817733pt;}
.y1e3{bottom:585.627733pt;}
.y4e{bottom:585.781627pt;}
.y170{bottom:586.015067pt;}
.y1b6{bottom:586.515600pt;}
.yfb{bottom:586.690400pt;}
.y13e{bottom:588.441213pt;}
.ycd{bottom:588.917333pt;}
.y232{bottom:590.879013pt;}
.y19b{bottom:592.607787pt;}
.y211{bottom:594.444240pt;}
.y154{bottom:595.877080pt;}
.ya1{bottom:598.518533pt;}
.y5{bottom:600.833467pt;}
.y74{bottom:600.977867pt;}
.y121{bottom:602.080267pt;}
.y1e2{bottom:602.215200pt;}
.y4d{bottom:602.428027pt;}
.y16f{bottom:602.764533pt;}
.y1b5{bottom:603.235333pt;}
.yfa{bottom:604.290400pt;}
.y13d{bottom:605.938547pt;}
.ycc{bottom:605.941333pt;}
.y231{bottom:607.789947pt;}
.y19a{bottom:609.415653pt;}
.y210{bottom:611.589573pt;}
.y153{bottom:612.934413pt;}
.ya0{bottom:615.268000pt;}
.y73{bottom:618.182000pt;}
.y1e1{bottom:618.803200pt;}
.y4c{bottom:619.120267pt;}
.y120{bottom:619.342800pt;}
.y16e{bottom:619.514000pt;}
.y1b4{bottom:619.955067pt;}
.yf9{bottom:621.890400pt;}
.y13c{bottom:623.435880pt;}
.y4{bottom:624.393333pt;}
.y230{bottom:624.700347pt;}
.y199{bottom:626.223520pt;}
.y20f{bottom:628.734907pt;}
.y152{bottom:629.991747pt;}
.y72{bottom:635.386133pt;}
.y1e0{bottom:635.390667pt;}
.y4b{bottom:635.766667pt;}
.y16d{bottom:636.263467pt;}
.y11f{bottom:636.605333pt;}
.y1b3{bottom:636.674800pt;}
.ycb{bottom:637.954133pt;}
.yf8{bottom:639.490400pt;}
.y9f{bottom:639.574400pt;}
.y13b{bottom:640.933213pt;}
.y198{bottom:643.031387pt;}
.y20e{bottom:645.880240pt;}
.y22f{bottom:649.164347pt;}
.y1df{bottom:651.978133pt;}
.y4a{bottom:652.413067pt;}
.y71{bottom:652.590267pt;}
.y16c{bottom:653.012400pt;}
.y1b2{bottom:653.394533pt;}
.y11e{bottom:653.867867pt;}
.y151{bottom:654.602680pt;}
.yca{bottom:654.982267pt;}
.yf7{bottom:657.090400pt;}
.y13a{bottom:658.430547pt;}
.y197{bottom:659.839653pt;}
.y20d{bottom:663.025573pt;}
.y22e{bottom:666.074747pt;}
.y1de{bottom:668.565600pt;}
.y49{bottom:669.060000pt;}
.y16b{bottom:669.761867pt;}
.y70{bottom:669.794400pt;}
.y1b1{bottom:670.114267pt;}
.y11d{bottom:671.130400pt;}
.y9e{bottom:671.435867pt;}
.y150{bottom:671.660013pt;}
.yc9{bottom:672.010400pt;}
.yf6{bottom:674.690400pt;}
.y20c{bottom:680.170907pt;}
.y22d{bottom:682.985147pt;}
.y139{bottom:683.481613pt;}
.y196{bottom:684.200587pt;}
.y1dd{bottom:685.153067pt;}
.y48{bottom:685.706933pt;}
.y16a{bottom:686.511333pt;}
.y1b0{bottom:686.834000pt;}
.y6f{bottom:686.998533pt;}
.y9d{bottom:688.184800pt;}
.y11c{bottom:688.392933pt;}
.y14f{bottom:688.717347pt;}
.yc8{bottom:689.038533pt;}
.yf5{bottom:692.290400pt;}
.y20b{bottom:697.316240pt;}
.y22c{bottom:699.895547pt;}
.y138{bottom:700.978947pt;}
.y195{bottom:701.008453pt;}
.y1dc{bottom:701.740533pt;}
.y47{bottom:702.353333pt;}
.y169{bottom:703.260800pt;}
.y1af{bottom:703.553733pt;}
.y6e{bottom:704.202667pt;}
.y11b{bottom:705.655467pt;}
.y14e{bottom:705.774680pt;}
.yc7{bottom:706.066667pt;}
.yf4{bottom:709.890400pt;}
.y9c{bottom:712.487467pt;}
.y22b{bottom:716.805947pt;}
.y194{bottom:717.816320pt;}
.y1db{bottom:718.328000pt;}
.y137{bottom:718.476280pt;}
.y46{bottom:719.000267pt;}
.y168{bottom:720.010267pt;}
.y1ae{bottom:720.273467pt;}
.y6d{bottom:721.406800pt;}
.y20a{bottom:721.990667pt;}
.y14d{bottom:722.832013pt;}
.y11a{bottom:722.918533pt;}
.yc6{bottom:723.094800pt;}
.yf3{bottom:727.490400pt;}
.y22a{bottom:733.716347pt;}
.y193{bottom:734.624187pt;}
.y1da{bottom:734.916000pt;}
.y45{bottom:735.646667pt;}
.y136{bottom:735.973613pt;}
.y167{bottom:736.759733pt;}
.y9b{bottom:736.790533pt;}
.y1ad{bottom:736.993200pt;}
.y6c{bottom:738.610933pt;}
.y209{bottom:739.136000pt;}
.y14c{bottom:739.889347pt;}
.yc5{bottom:740.122400pt;}
.y119{bottom:740.181067pt;}
.yf2{bottom:745.090400pt;}
.y229{bottom:750.626747pt;}
.y192{bottom:751.432053pt;}
.y1d9{bottom:751.503467pt;}
.y44{bottom:752.293600pt;}
.y135{bottom:753.470947pt;}
.y166{bottom:753.509200pt;}
.y9a{bottom:753.539467pt;}
.y1ac{bottom:753.713467pt;}
.y6b{bottom:755.815067pt;}
.y208{bottom:756.281333pt;}
.y14b{bottom:756.946680pt;}
.yc4{bottom:757.150533pt;}
.y118{bottom:757.443600pt;}
.yf1{bottom:762.690400pt;}
.y228{bottom:767.537147pt;}
.y1d8{bottom:768.090933pt;}
.y191{bottom:768.239920pt;}
.y165{bottom:770.258667pt;}
.y134{bottom:770.968280pt;}
.y6a{bottom:773.012427pt;}
.y207{bottom:773.426667pt;}
.y14a{bottom:774.004013pt;}
.yc3{bottom:774.178667pt;}
.y117{bottom:774.706667pt;}
.y43{bottom:776.508133pt;}
.y99{bottom:777.842133pt;}
.y1ab{bottom:778.001467pt;}
.yf0{bottom:780.290400pt;}
.y227{bottom:784.363707pt;}
.y1d7{bottom:784.678933pt;}
.y190{bottom:785.205067pt;}
.y164{bottom:787.007600pt;}
.y133{bottom:788.465613pt;}
.y69{bottom:790.216560pt;}
.y206{bottom:790.572000pt;}
.y149{bottom:791.061347pt;}
.yc2{bottom:791.206800pt;}
.y42{bottom:793.154533pt;}
.y98{bottom:794.591600pt;}
.yef{bottom:797.890400pt;}
.y116{bottom:799.523067pt;}
.y1d6{bottom:801.266400pt;}
.y226{bottom:801.274107pt;}
.y18f{bottom:802.012933pt;}
.y163{bottom:803.757067pt;}
.y132{bottom:805.962947pt;}
.y68{bottom:807.420693pt;}
.y205{bottom:807.717333pt;}
.y148{bottom:808.118680pt;}
.yc1{bottom:808.234933pt;}
.y41{bottom:809.800933pt;}
.y1aa{bottom:809.842667pt;}
.yee{bottom:815.490400pt;}
.y115{bottom:816.785600pt;}
.y1d5{bottom:817.853867pt;}
.y225{bottom:818.184507pt;}
.y18e{bottom:818.821200pt;}
.y97{bottom:818.894267pt;}
.y162{bottom:820.506533pt;}
.y131{bottom:823.459880pt;}
.y67{bottom:824.624827pt;}
.y204{bottom:824.862667pt;}
.y147{bottom:825.176013pt;}
.yc0{bottom:825.263067pt;}
.y40{bottom:826.447333pt;}
.y1a9{bottom:826.562933pt;}
.yed{bottom:833.090400pt;}
.y114{bottom:834.048133pt;}
.y1d4{bottom:834.441333pt;}
.y224{bottom:835.094907pt;}
.y18d{bottom:835.629067pt;}
.y96{bottom:835.643733pt;}
.y3{bottom:839.910400pt;}
.y130{bottom:840.957213pt;}
.y66{bottom:841.828960pt;}
.y203{bottom:842.008000pt;}
.y146{bottom:842.233347pt;}
.ybf{bottom:842.291200pt;}
.y3f{bottom:843.093733pt;}
.y1a8{bottom:843.283200pt;}
.y161{bottom:844.823733pt;}
.y1d3{bottom:851.029333pt;}
.y223{bottom:852.005840pt;}
.yec{bottom:858.244000pt;}
.y12f{bottom:858.449333pt;}
.y113{bottom:858.864267pt;}
.y65{bottom:859.033093pt;}
.y202{bottom:859.153333pt;}
.y145{bottom:859.290680pt;}
.ybe{bottom:859.319333pt;}
.y3e{bottom:859.740133pt;}
.y95{bottom:859.946400pt;}
.y18c{bottom:859.990533pt;}
.y1a7{bottom:860.003467pt;}
.y1d2{bottom:875.182933pt;}
.yeb{bottom:875.844000pt;}
.y12e{bottom:875.946667pt;}
.y112{bottom:876.126800pt;}
.y64{bottom:876.237227pt;}
.y201{bottom:876.298667pt;}
.ybd{bottom:876.346933pt;}
.y144{bottom:876.348013pt;}
.y3d{bottom:876.386533pt;}
.y222{bottom:876.469840pt;}
.y160{bottom:876.694533pt;}
.y94{bottom:876.695867pt;}
.y1a6{bottom:876.723733pt;}
.y18b{bottom:876.798400pt;}
.y2{bottom:881.238000pt;}
.y1d1{bottom:891.774667pt;}
.ybc{bottom:893.375067pt;}
.y221{bottom:893.380240pt;}
.y111{bottom:893.389867pt;}
.y143{bottom:893.405347pt;}
.y63{bottom:893.441360pt;}
.y12d{bottom:893.444000pt;}
.y93{bottom:893.445333pt;}
.y18a{bottom:893.606667pt;}
.y3c{bottom:946.772000pt;}
.y3b{bottom:948.686667pt;}
.ha{height:35.854167pt;}
.h14{height:40.992188pt;}
.h10{height:44.192708pt;}
.h9{height:44.218750pt;}
.h8{height:44.437500pt;}
.h11{height:44.817708pt;}
.h5{height:46.402344pt;}
.h6{height:48.611979pt;}
.h2{height:48.800000pt;}
.h7{height:49.299479pt;}
.h12{height:49.320332pt;}
.hd{height:49.326572pt;}
.h15{height:49.341132pt;}
.he{height:49.364066pt;}
.hf{height:49.497399pt;}
.h16{height:49.641133pt;}
.h13{height:49.726573pt;}
.h4{height:68.320000pt;}
.hb{height:78.080000pt;}
.h3{height:131.760000pt;}
.h1{height:1001.333333pt;}
.h0{height:1001.573333pt;}
.hc{height:49226.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.106667pt;}
.x0{left:0.000000pt;}
.x7{left:73.144267pt;}
.x2{left:74.257333pt;}
.x1{left:75.590667pt;}
.x3{left:90.708800pt;}
.xa{left:98.267327pt;}
.x4{left:270.404800pt;}
.xc{left:367.051253pt;}
.x5{left:368.495467pt;}
.xb{left:382.172667pt;}
.x6{left:383.622800pt;}
.x9{left:520.213333pt;}
.x8{left:627.693333pt;}
}




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