
    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_a39cfa328de675bf820e9d7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_bd9248a60d16d1274e390473.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_3f9627dc0ac9fed84891a4de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_c7963990d5af69449ad7fcd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_83966b7b7c92d94e89b1b51e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_a8b5db688e01b165af43d6e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_29ff32842ad02cefe3af4883.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_adde3178d78da87b516fb4ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_e6db1bdae58bd53a090973f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.055664;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_7292ebe179cdea7cb54dd2ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_f0ceb9f599ca03f9a6874a20.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9982f1bd1a97189f4692b618.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.055664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9d408aec16a2e64a57eda010.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_111b792b43d0f6adc405b4f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.080000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.940000px;}
.v4{vertical-align:27.780000px;}
.v2{vertical-align:36.000000px;}
.v1{vertical-align:37.440000px;}
.ls2b{letter-spacing:-0.402600px;}
.ls4{letter-spacing:-0.348600px;}
.ls33{letter-spacing:-0.345600px;}
.ls38{letter-spacing:-0.322800px;}
.ls2f{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.286200px;}
.ls1c{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.142800px;}
.ls13{letter-spacing:-0.139800px;}
.ls6{letter-spacing:-0.134400px;}
.ls35{letter-spacing:-0.112200px;}
.ls10{letter-spacing:-0.108000px;}
.ls2e{letter-spacing:-0.103800px;}
.ls9{letter-spacing:-0.092400px;}
.ls16{letter-spacing:-0.089400px;}
.ls1d{letter-spacing:-0.061200px;}
.ls8{letter-spacing:-0.057600px;}
.ls1b{letter-spacing:-0.045360px;}
.ls37{letter-spacing:-0.034560px;}
.ls11{letter-spacing:-0.000003px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.035700px;}
.ls19{letter-spacing:0.043920px;}
.ls32{letter-spacing:0.057600px;}
.ls17{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.077760px;}
.ls1e{letter-spacing:0.125400px;}
.lsd{letter-spacing:0.142560px;}
.ls18{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.145200px;}
.ls7{letter-spacing:0.210000px;}
.ls15{letter-spacing:0.265200px;}
.lsb{letter-spacing:0.269400px;}
.ls36{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.339600px;}
.ls2{letter-spacing:0.345600px;}
.ls1{letter-spacing:12.355200px;}
.ls34{letter-spacing:13.605120px;}
.ls29{letter-spacing:17.075520px;}
.ls23{letter-spacing:19.379520px;}
.ls28{letter-spacing:20.649600px;}
.ls24{letter-spacing:21.255840px;}
.ls26{letter-spacing:21.369600px;}
.ls2a{letter-spacing:21.395520px;}
.ls27{letter-spacing:21.484800px;}
.ls21{letter-spacing:31.272768px;}
.ls20{letter-spacing:31.470480px;}
.ls0{letter-spacing:55.555200px;}
.ls30{letter-spacing:58.169760px;}
.ls31{letter-spacing:58.308000px;}
.ls2d{letter-spacing:94.449024px;}
.ls2c{letter-spacing:94.536000px;}
.lsc{letter-spacing:95.135040px;}
.ls22{letter-spacing:96.801024px;}
.ls1f{letter-spacing:96.888000px;}
.lse{letter-spacing:266.910480px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(69,84,107),0 0.015em rgb(69,84,107),0.015em 0 rgb(69,84,107),0 -0.015em  rgb(69,84,107);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(69,84,107);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-55.751760px;}
.ws0{word-spacing:-55.713600px;}
.ws28{word-spacing:-38.198160px;}
.ws35{word-spacing:-33.390000px;}
.ws15{word-spacing:-31.901760px;}
.ws14{word-spacing:-31.863600px;}
.ws1f{word-spacing:-31.723800px;}
.ws2e{word-spacing:-31.639800px;}
.ws2c{word-spacing:-31.615560px;}
.ws23{word-spacing:-28.658160px;}
.ws1b{word-spacing:-28.620000px;}
.ws24{word-spacing:-27.396960px;}
.ws25{word-spacing:-27.131760px;}
.ws27{word-spacing:-27.093600px;}
.ws26{word-spacing:-27.004200px;}
.ws36{word-spacing:-25.630128px;}
.ws3d{word-spacing:-23.850000px;}
.ws5{word-spacing:-22.323600px;}
.ws33{word-spacing:-20.644560px;}
.ws34{word-spacing:-20.606400px;}
.ws32{word-spacing:-20.241960px;}
.ws42{word-spacing:-19.118160px;}
.ws3b{word-spacing:-15.836400px;}
.ws41{word-spacing:-15.724200px;}
.ws3a{word-spacing:-15.536400px;}
.ws3c{word-spacing:-15.490800px;}
.ws3e{word-spacing:-14.348160px;}
.ws40{word-spacing:-14.310000px;}
.ws17{word-spacing:-13.410720px;}
.ws10{word-spacing:-12.783600px;}
.ws3f{word-spacing:-11.066400px;}
.ws29{word-spacing:-10.008000px;}
.ws1e{word-spacing:-3.096720px;}
.ws1c{word-spacing:-2.076000px;}
.ws30{word-spacing:-1.791120px;}
.ws7{word-spacing:-1.527840px;}
.ws49{word-spacing:-1.336320px;}
.ws1{word-spacing:-1.308480px;}
.ws6{word-spacing:-1.264320px;}
.ws44{word-spacing:-1.206000px;}
.ws20{word-spacing:-1.195200px;}
.ws43{word-spacing:-1.116000px;}
.ws2a{word-spacing:-0.936000px;}
.ws12{word-spacing:-0.928476px;}
.ws18{word-spacing:-0.864000px;}
.ws45{word-spacing:-0.851328px;}
.ws11{word-spacing:-0.784512px;}
.ws3{word-spacing:-0.708480px;}
.ws47{word-spacing:-0.702000px;}
.wsc{word-spacing:-0.559440px;}
.ws2b{word-spacing:-0.468000px;}
.ws9{word-spacing:-0.375120px;}
.ws48{word-spacing:-0.367200px;}
.wsb{word-spacing:-0.075600px;}
.ws1a{word-spacing:-0.036000px;}
.ws1d{word-spacing:-0.015840px;}
.ws13{word-spacing:0.000000px;}
.wsd{word-spacing:0.019920px;}
.wsf{word-spacing:0.041040px;}
.wse{word-spacing:0.105840px;}
.wsa{word-spacing:0.131040px;}
.ws46{word-spacing:0.199920px;}
.ws31{word-spacing:0.211440px;}
.ws37{word-spacing:0.288000px;}
.ws8{word-spacing:0.739920px;}
.ws19{word-spacing:1.296000px;}
.ws4a{word-spacing:1.334160px;}
.ws2{word-spacing:1.361160px;}
.ws22{word-spacing:1.740000px;}
.ws16{word-spacing:1.776960px;}
.ws2d{word-spacing:10.476000px;}
.ws2f{word-spacing:10.636560px;}
.ws21{word-spacing:212.666640px;}
.ws38{word-spacing:1583.376000px;}
.ws39{word-spacing:1654.836000px;}
._c{margin-left:-534.712320px;}
._4{margin-left:-2.985072px;}
._0{margin-left:-1.893456px;}
._1{width:1.192512px;}
._8{width:3.132000px;}
._3{width:11.486592px;}
._f{width:12.772944px;}
._d{width:13.824000px;}
._5{width:26.872944px;}
._7{width:29.264400px;}
._6{width:30.394080px;}
._b{width:35.190720px;}
._e{width:39.864720px;}
._a{width:193.504896px;}
._9{width:323.538288px;}
._2{width:1099.537248px;}
.fcc{color:rgb(122,248,66);}
.fc9{color:rgb(231,50,76);}
.fc8{color:transparent;}
.fc7{color:rgb(102,102,102);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fcb{color:rgb(47,111,167);}
.fc1{color:rgb(10,186,240);}
.fca{color:rgb(0,112,192);}
.fc2{color:rgb(138,148,156);}
.fc0{color:rgb(69,84,107);}
.fs11{font-size:36.000000px;}
.fs19{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:48.384000px;}
.fs1a{font-size:54.000000px;}
.fs18{font-size:54.144000px;}
.fs6{font-size:59.760000px;}
.fs1b{font-size:72.000000px;}
.fs1c{font-size:72.144000px;}
.fs13{font-size:77.760000px;}
.fs14{font-size:77.904000px;}
.fs12{font-size:79.920000px;}
.fs2{font-size:84.240000px;}
.fs16{font-size:90.000000px;}
.fs17{font-size:90.144000px;}
.fsf{font-size:102.240000px;}
.fs10{font-size:102.384000px;}
.fsa{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fs1e{font-size:113.904000px;}
.fs7{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsb{font-size:126.000000px;}
.fs15{font-size:126.144000px;}
.fse{font-size:138.240000px;}
.fs1d{font-size:138.384000px;}
.fsd{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs1{font-size:210.240000px;}
.fs0{font-size:210.384000px;}
.fs9{font-size:221.760000px;}
.y0{bottom:0.000000px;}
.yc{bottom:5.220000px;}
.y10{bottom:6.444000px;}
.y1d{bottom:10.980000px;}
.yb4{bottom:11.268000px;}
.y5d{bottom:16.488000px;}
.yb{bottom:19.620000px;}
.yf{bottom:20.880000px;}
.y5e{bottom:27.612000px;}
.ya{bottom:34.020000px;}
.y12{bottom:34.668000px;}
.ye{bottom:35.280000px;}
.y60{bottom:37.080000px;}
.y18{bottom:43.164000px;}
.y17{bottom:43.344000px;}
.y5f{bottom:47.772000px;}
.y9{bottom:48.420000px;}
.yd{bottom:49.680000px;}
.y98{bottom:50.724000px;}
.y5b{bottom:53.064000px;}
.yaf{bottom:58.824000px;}
.yab{bottom:66.132000px;}
.y64{bottom:67.104000px;}
.y97{bottom:68.724000px;}
.y27{bottom:81.900000px;}
.y94{bottom:88.452000px;}
.y6c{bottom:91.548000px;}
.y4a{bottom:93.924000px;}
.y53{bottom:95.940000px;}
.y50{bottom:97.092000px;}
.y7c{bottom:104.868000px;}
.yad{bottom:113.616000px;}
.y56{bottom:117.216000px;}
.yaa{bottom:117.720000px;}
.y26{bottom:119.700000px;}
.y8{bottom:122.832000px;}
.y52{bottom:126.540000px;}
.y4f{bottom:127.728000px;}
.y92{bottom:139.212000px;}
.y95{bottom:140.220000px;}
.y9f{bottom:143.784000px;}
.y7b{bottom:144.828000px;}
.y96{bottom:151.200000px;}
.y51{bottom:157.140000px;}
.y4e{bottom:158.325000px;}
.y6b{bottom:159.945000px;}
.ya3{bottom:162.690000px;}
.yb3{bottom:166.170000px;}
.y9e{bottom:170.790000px;}
.ya2{bottom:181.230000px;}
.y7{bottom:181.365000px;}
.yb2{bottom:182.415000px;}
.y91{bottom:185.865000px;}
.y89{bottom:193.140000px;}
.y25{bottom:193.935000px;}
.yb1{bottom:198.615000px;}
.yb0{bottom:214.815000px;}
.y6{bottom:216.645000px;}
.y7a{bottom:224.610000px;}
.y6a{bottom:228.390000px;}
.y82{bottom:231.450000px;}
.y39{bottom:231.915000px;}
.y90{bottom:232.485000px;}
.y43{bottom:233.715000px;}
.y30{bottom:248.835000px;}
.ya1{bottom:253.830000px;}
.ya8{bottom:254.850000px;}
.y88{bottom:255.270000px;}
.y42{bottom:262.875000px;}
.y38{bottom:264.315000px;}
.y79{bottom:264.570000px;}
.y24{bottom:265.605000px;}
.y81{bottom:271.230000px;}
.y63{bottom:278.970000px;}
.y9b{bottom:279.210000px;}
.y8f{bottom:279.285000px;}
.ya7{bottom:279.690000px;}
.y5{bottom:280.005000px;}
.y2f{bottom:281.235000px;}
.y59{bottom:286.770000px;}
.y41{bottom:292.035000px;}
.y69{bottom:296.610000px;}
.y37{bottom:296.715000px;}
.ya6{bottom:304.530000px;}
.y9a{bottom:306.210000px;}
.y72{bottom:310.830000px;}
.y2e{bottom:313.845000px;}
.y23{bottom:319.605000px;}
.y40{bottom:321.375000px;}
.y36{bottom:329.295000px;}
.ya5{bottom:329.400000px;}
.y49{bottom:329.475000px;}
.y87{bottom:330.870000px;}
.y99{bottom:333.210000px;}
.y1b{bottom:337.170000px;}
.y8e{bottom:342.330000px;}
.y78{bottom:344.340000px;}
.y2d{bottom:346.245000px;}
.y62{bottom:347.190000px;}
.y3f{bottom:350.535000px;}
.y80{bottom:351.360000px;}
.ya4{bottom:354.240000px;}
.y4{bottom:355.605000px;}
.y35{bottom:361.695000px;}
.y48{bottom:361.905000px;}
.y71{bottom:362.700000px;}
.y68{bottom:365.040000px;}
.y77{bottom:367.740000px;}
.y22{bottom:373.605000px;}
.y2c{bottom:378.825000px;}
.y3e{bottom:379.905000px;}
.y86{bottom:387.615000px;}
.y7f{bottom:391.140000px;}
.y9d{bottom:392.655000px;}
.ya9{bottom:392.910000px;}
.y34{bottom:394.305000px;}
.y93{bottom:394.410000px;}
.y47{bottom:394.485000px;}
.y8d{bottom:405.510000px;}
.y3d{bottom:409.065000px;}
.y2b{bottom:411.225000px;}
.y70{bottom:414.540000px;}
.y61{bottom:415.620000px;}
.y9c{bottom:419.655000px;}
.y33{bottom:426.705000px;}
.y46{bottom:426.885000px;}
.y21{bottom:427.650000px;}
.y7e{bottom:431.100000px;}
.y3{bottom:431.250000px;}
.y67{bottom:433.440000px;}
.y3c{bottom:438.225000px;}
.y2a{bottom:443.805000px;}
.y85{bottom:444.315000px;}
.y76{bottom:447.660000px;}
.y8c{bottom:452.130000px;}
.y45{bottom:459.465000px;}
.y6f{bottom:466.380000px;}
.y3b{bottom:467.565000px;}
.y7d{bottom:471.060000px;}
.y13{bottom:474.870000px;}
.yae{bottom:476.610000px;}
.y28{bottom:486.000000px;}
.y75{bottom:487.440000px;}
.y32{bottom:491.685000px;}
.y8b{bottom:498.960000px;}
.y66{bottom:501.660000px;}
.y16{bottom:504.465000px;}
.y2{bottom:506.850000px;}
.y29{bottom:508.650000px;}
.y74{bottom:510.870000px;}
.y58{bottom:514.800000px;}
.y84{bottom:517.395000px;}
.y20{bottom:517.830000px;}
.y6e{bottom:518.250000px;}
.y31{bottom:524.085000px;}
.y44{bottom:524.310000px;}
.y3a{bottom:525.885000px;}
.y15{bottom:540.465000px;}
.y57{bottom:550.830000px;}
.y1f{bottom:555.090000px;}
.y83{bottom:560.850000px;}
.y8a{bottom:562.140000px;}
.y1a{bottom:568.905000px;}
.y65{bottom:570.090000px;}
.y14{bottom:576.465000px;}
.y6d{bottom:580.890000px;}
.y1{bottom:582.480000px;}
.y54{bottom:583.350000px;}
.y55{bottom:587.130000px;}
.y73{bottom:590.610000px;}
.y1e{bottom:592.350000px;}
.y5c{bottom:602.100000px;}
.y19{bottom:604.905000px;}
.yac{bottom:658.365000px;}
.y1c{bottom:676.005000px;}
.y4d{bottom:676.725000px;}
.y4b{bottom:677.625000px;}
.y5a{bottom:695.880000px;}
.y11{bottom:719.175000px;}
.y4c{bottom:723.600000px;}
.ya0{bottom:724.170000px;}
.h14{height:37.546875px;}
.h1c{height:43.848000px;}
.hc{height:50.312812px;}
.h4{height:50.652000px;}
.h6{height:50.803200px;}
.h1d{height:56.700000px;}
.h1b{height:56.851200px;}
.h8{height:62.748000px;}
.h1e{height:75.600000px;}
.h1f{height:75.751200px;}
.h15{height:81.648000px;}
.h16{height:81.799200px;}
.h5{height:88.092000px;}
.h3{height:88.452000px;}
.h19{height:94.500000px;}
.h1a{height:94.651200px;}
.h12{height:107.352000px;}
.h13{height:107.503200px;}
.hd{height:113.400000px;}
.hf{height:113.551200px;}
.h21{height:119.599200px;}
.h9{height:126.252000px;}
.ha{height:126.403200px;}
.he{height:132.300000px;}
.h17{height:132.451200px;}
.h18{height:141.180000px;}
.h11{height:145.152000px;}
.h20{height:145.303200px;}
.h10{height:151.200000px;}
.h7{height:151.351200px;}
.h2{height:220.752000px;}
.h1{height:220.903200px;}
.hb{height:232.848000px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x60{left:7.127979px;}
.xb{left:17.711979px;}
.x4c{left:20.663979px;}
.x33{left:66.131979px;}
.x32{left:69.983979px;}
.x57{left:74.915979px;}
.x34{left:80.783979px;}
.x3{left:98.999979px;}
.xf{left:103.679979px;}
.x5e{left:109.799979px;}
.x49{left:112.499979px;}
.x5{left:113.939979px;}
.xd{left:115.739979px;}
.x3a{left:118.727979px;}
.x15{left:123.479979px;}
.x18{left:131.219979px;}
.x16{left:133.379979px;}
.x14{left:137.699979px;}
.x4e{left:147.347979px;}
.x4a{left:153.029979px;}
.x17{left:155.699979px;}
.xe{left:157.679979px;}
.x4d{left:164.369979px;}
.x13{left:171.569979px;}
.x19{left:184.889979px;}
.x31{left:198.254979px;}
.x10{left:219.599979px;}
.x58{left:221.549979px;}
.x42{left:305.129979px;}
.x40{left:326.774979px;}
.x35{left:331.409979px;}
.x9{left:342.284979px;}
.x50{left:364.034979px;}
.x44{left:386.309979px;}
.x46{left:388.184979px;}
.x3f{left:396.569979px;}
.x56{left:412.169979px;}
.x48{left:417.344979px;}
.x8{left:420.764979px;}
.x47{left:436.289979px;}
.x1f{left:447.269979px;}
.x1a{left:450.509979px;}
.x21{left:451.769979px;}
.x20{left:467.069979px;}
.x1d{left:468.509979px;}
.x45{left:473.189979px;}
.x1e{left:488.489979px;}
.x5c{left:495.569979px;}
.x59{left:498.269979px;}
.x41{left:499.394979px;}
.x1c{left:507.209979px;}
.x1b{left:521.609979px;}
.x53{left:531.389979px;}
.x54{left:532.829979px;}
.x22{left:548.969979px;}
.xc{left:579.704979px;}
.x36{left:594.104979px;}
.x51{left:644.939979px;}
.xa{left:646.304979px;}
.x55{left:658.589979px;}
.x3c{left:675.824979px;}
.x43{left:703.184979px;}
.x7{left:719.969979px;}
.x52{left:732.059979px;}
.x4b{left:747.329979px;}
.x39{left:754.634979px;}
.x26{left:783.074979px;}
.x1{left:788.909979px;}
.x27{left:790.094979px;}
.x25{left:793.694979px;}
.x23{left:797.114979px;}
.x2b{left:804.134979px;}
.x2a{left:816.914979px;}
.x28{left:832.574979px;}
.x29{left:841.214979px;}
.x24{left:850.214979px;}
.x37{left:879.449979px;}
.x6{left:1016.024979px;}
.x11{left:1018.514979px;}
.x5d{left:1022.144979px;}
.x3d{left:1052.849979px;}
.x5f{left:1073.414979px;}
.x2c{left:1091.849979px;}
.x2f{left:1108.409979px;}
.x38{left:1110.524979px;}
.x2d{left:1111.649979px;}
.x4f{left:1119.134979px;}
.x2{left:1120.529979px;}
.x2e{left:1123.709979px;}
.x5a{left:1139.684979px;}
.x30{left:1175.729979px;}
.x12{left:1228.244979px;}
.x5b{left:1345.754979px;}
.x3b{left:1347.194979px;}
.x3e{left:1348.994979px;}
.x4{left:1354.574979px;}
@media print{
.v3{vertical-align:-14.293333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.613333pt;}
.v4{vertical-align:24.693333pt;}
.v2{vertical-align:32.000000pt;}
.v1{vertical-align:33.280000pt;}
.ls2b{letter-spacing:-0.357867pt;}
.ls4{letter-spacing:-0.309867pt;}
.ls33{letter-spacing:-0.307200pt;}
.ls38{letter-spacing:-0.286933pt;}
.ls2f{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.254400pt;}
.ls1c{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.126933pt;}
.ls13{letter-spacing:-0.124267pt;}
.ls6{letter-spacing:-0.119467pt;}
.ls35{letter-spacing:-0.099733pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls2e{letter-spacing:-0.092267pt;}
.ls9{letter-spacing:-0.082133pt;}
.ls16{letter-spacing:-0.079467pt;}
.ls1d{letter-spacing:-0.054400pt;}
.ls8{letter-spacing:-0.051200pt;}
.ls1b{letter-spacing:-0.040320pt;}
.ls37{letter-spacing:-0.030720pt;}
.ls11{letter-spacing:-0.000003pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.031733pt;}
.ls19{letter-spacing:0.039040pt;}
.ls32{letter-spacing:0.051200pt;}
.ls17{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.069120pt;}
.ls1e{letter-spacing:0.111467pt;}
.lsd{letter-spacing:0.126720pt;}
.ls18{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.129067pt;}
.ls7{letter-spacing:0.186667pt;}
.ls15{letter-spacing:0.235733pt;}
.lsb{letter-spacing:0.239467pt;}
.ls36{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.301867pt;}
.ls2{letter-spacing:0.307200pt;}
.ls1{letter-spacing:10.982400pt;}
.ls34{letter-spacing:12.093440pt;}
.ls29{letter-spacing:15.178240pt;}
.ls23{letter-spacing:17.226240pt;}
.ls28{letter-spacing:18.355200pt;}
.ls24{letter-spacing:18.894080pt;}
.ls26{letter-spacing:18.995200pt;}
.ls2a{letter-spacing:19.018240pt;}
.ls27{letter-spacing:19.097600pt;}
.ls21{letter-spacing:27.798016pt;}
.ls20{letter-spacing:27.973760pt;}
.ls0{letter-spacing:49.382400pt;}
.ls30{letter-spacing:51.706453pt;}
.ls31{letter-spacing:51.829333pt;}
.ls2d{letter-spacing:83.954688pt;}
.ls2c{letter-spacing:84.032000pt;}
.lsc{letter-spacing:84.564480pt;}
.ls22{letter-spacing:86.045355pt;}
.ls1f{letter-spacing:86.122667pt;}
.lse{letter-spacing:237.253760pt;}
.ws4{word-spacing:-49.557120pt;}
.ws0{word-spacing:-49.523200pt;}
.ws28{word-spacing:-33.953920pt;}
.ws35{word-spacing:-29.680000pt;}
.ws15{word-spacing:-28.357120pt;}
.ws14{word-spacing:-28.323200pt;}
.ws1f{word-spacing:-28.198933pt;}
.ws2e{word-spacing:-28.124267pt;}
.ws2c{word-spacing:-28.102720pt;}
.ws23{word-spacing:-25.473920pt;}
.ws1b{word-spacing:-25.440000pt;}
.ws24{word-spacing:-24.352853pt;}
.ws25{word-spacing:-24.117120pt;}
.ws27{word-spacing:-24.083200pt;}
.ws26{word-spacing:-24.003733pt;}
.ws36{word-spacing:-22.782336pt;}
.ws3d{word-spacing:-21.200000pt;}
.ws5{word-spacing:-19.843200pt;}
.ws33{word-spacing:-18.350720pt;}
.ws34{word-spacing:-18.316800pt;}
.ws32{word-spacing:-17.992853pt;}
.ws42{word-spacing:-16.993920pt;}
.ws3b{word-spacing:-14.076800pt;}
.ws41{word-spacing:-13.977067pt;}
.ws3a{word-spacing:-13.810133pt;}
.ws3c{word-spacing:-13.769600pt;}
.ws3e{word-spacing:-12.753920pt;}
.ws40{word-spacing:-12.720000pt;}
.ws17{word-spacing:-11.920640pt;}
.ws10{word-spacing:-11.363200pt;}
.ws3f{word-spacing:-9.836800pt;}
.ws29{word-spacing:-8.896000pt;}
.ws1e{word-spacing:-2.752640pt;}
.ws1c{word-spacing:-1.845333pt;}
.ws30{word-spacing:-1.592107pt;}
.ws7{word-spacing:-1.358080pt;}
.ws49{word-spacing:-1.187840pt;}
.ws1{word-spacing:-1.163093pt;}
.ws6{word-spacing:-1.123840pt;}
.ws44{word-spacing:-1.072000pt;}
.ws20{word-spacing:-1.062400pt;}
.ws43{word-spacing:-0.992000pt;}
.ws2a{word-spacing:-0.832000pt;}
.ws12{word-spacing:-0.825312pt;}
.ws18{word-spacing:-0.768000pt;}
.ws45{word-spacing:-0.756736pt;}
.ws11{word-spacing:-0.697344pt;}
.ws3{word-spacing:-0.629760pt;}
.ws47{word-spacing:-0.624000pt;}
.wsc{word-spacing:-0.497280pt;}
.ws2b{word-spacing:-0.416000pt;}
.ws9{word-spacing:-0.333440pt;}
.ws48{word-spacing:-0.326400pt;}
.wsb{word-spacing:-0.067200pt;}
.ws1a{word-spacing:-0.032000pt;}
.ws1d{word-spacing:-0.014080pt;}
.ws13{word-spacing:0.000000pt;}
.wsd{word-spacing:0.017707pt;}
.wsf{word-spacing:0.036480pt;}
.wse{word-spacing:0.094080pt;}
.wsa{word-spacing:0.116480pt;}
.ws46{word-spacing:0.177707pt;}
.ws31{word-spacing:0.187947pt;}
.ws37{word-spacing:0.256000pt;}
.ws8{word-spacing:0.657707pt;}
.ws19{word-spacing:1.152000pt;}
.ws4a{word-spacing:1.185920pt;}
.ws2{word-spacing:1.209920pt;}
.ws22{word-spacing:1.546667pt;}
.ws16{word-spacing:1.579520pt;}
.ws2d{word-spacing:9.312000pt;}
.ws2f{word-spacing:9.454720pt;}
.ws21{word-spacing:189.037013pt;}
.ws38{word-spacing:1407.445333pt;}
.ws39{word-spacing:1470.965333pt;}
._c{margin-left:-475.299840pt;}
._4{margin-left:-2.653397pt;}
._0{margin-left:-1.683072pt;}
._1{width:1.060011pt;}
._8{width:2.784000pt;}
._3{width:10.210304pt;}
._f{width:11.353728pt;}
._d{width:12.288000pt;}
._5{width:23.887061pt;}
._7{width:26.012800pt;}
._6{width:27.016960pt;}
._b{width:31.280640pt;}
._e{width:35.435307pt;}
._a{width:172.004352pt;}
._9{width:287.589589pt;}
._2{width:977.366443pt;}
.fs11{font-size:32.000000pt;}
.fs19{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:43.008000pt;}
.fs1a{font-size:48.000000pt;}
.fs18{font-size:48.128000pt;}
.fs6{font-size:53.120000pt;}
.fs1b{font-size:64.000000pt;}
.fs1c{font-size:64.128000pt;}
.fs13{font-size:69.120000pt;}
.fs14{font-size:69.248000pt;}
.fs12{font-size:71.040000pt;}
.fs2{font-size:74.880000pt;}
.fs16{font-size:80.000000pt;}
.fs17{font-size:80.128000pt;}
.fsf{font-size:90.880000pt;}
.fs10{font-size:91.008000pt;}
.fsa{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fs1e{font-size:101.248000pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsb{font-size:112.000000pt;}
.fs15{font-size:112.128000pt;}
.fse{font-size:122.880000pt;}
.fs1d{font-size:123.008000pt;}
.fsd{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs1{font-size:186.880000pt;}
.fs0{font-size:187.008000pt;}
.fs9{font-size:197.120000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:4.640000pt;}
.y10{bottom:5.728000pt;}
.y1d{bottom:9.760000pt;}
.yb4{bottom:10.016000pt;}
.y5d{bottom:14.656000pt;}
.yb{bottom:17.440000pt;}
.yf{bottom:18.560000pt;}
.y5e{bottom:24.544000pt;}
.ya{bottom:30.240000pt;}
.y12{bottom:30.816000pt;}
.ye{bottom:31.360000pt;}
.y60{bottom:32.960000pt;}
.y18{bottom:38.368000pt;}
.y17{bottom:38.528000pt;}
.y5f{bottom:42.464000pt;}
.y9{bottom:43.040000pt;}
.yd{bottom:44.160000pt;}
.y98{bottom:45.088000pt;}
.y5b{bottom:47.168000pt;}
.yaf{bottom:52.288000pt;}
.yab{bottom:58.784000pt;}
.y64{bottom:59.648000pt;}
.y97{bottom:61.088000pt;}
.y27{bottom:72.800000pt;}
.y94{bottom:78.624000pt;}
.y6c{bottom:81.376000pt;}
.y4a{bottom:83.488000pt;}
.y53{bottom:85.280000pt;}
.y50{bottom:86.304000pt;}
.y7c{bottom:93.216000pt;}
.yad{bottom:100.992000pt;}
.y56{bottom:104.192000pt;}
.yaa{bottom:104.640000pt;}
.y26{bottom:106.400000pt;}
.y8{bottom:109.184000pt;}
.y52{bottom:112.480000pt;}
.y4f{bottom:113.536000pt;}
.y92{bottom:123.744000pt;}
.y95{bottom:124.640000pt;}
.y9f{bottom:127.808000pt;}
.y7b{bottom:128.736000pt;}
.y96{bottom:134.400000pt;}
.y51{bottom:139.680000pt;}
.y4e{bottom:140.733333pt;}
.y6b{bottom:142.173333pt;}
.ya3{bottom:144.613333pt;}
.yb3{bottom:147.706667pt;}
.y9e{bottom:151.813333pt;}
.ya2{bottom:161.093333pt;}
.y7{bottom:161.213333pt;}
.yb2{bottom:162.146667pt;}
.y91{bottom:165.213333pt;}
.y89{bottom:171.680000pt;}
.y25{bottom:172.386667pt;}
.yb1{bottom:176.546667pt;}
.yb0{bottom:190.946667pt;}
.y6{bottom:192.573333pt;}
.y7a{bottom:199.653333pt;}
.y6a{bottom:203.013333pt;}
.y82{bottom:205.733333pt;}
.y39{bottom:206.146667pt;}
.y90{bottom:206.653333pt;}
.y43{bottom:207.746667pt;}
.y30{bottom:221.186667pt;}
.ya1{bottom:225.626667pt;}
.ya8{bottom:226.533333pt;}
.y88{bottom:226.906667pt;}
.y42{bottom:233.666667pt;}
.y38{bottom:234.946667pt;}
.y79{bottom:235.173333pt;}
.y24{bottom:236.093333pt;}
.y81{bottom:241.093333pt;}
.y63{bottom:247.973333pt;}
.y9b{bottom:248.186667pt;}
.y8f{bottom:248.253333pt;}
.ya7{bottom:248.613333pt;}
.y5{bottom:248.893333pt;}
.y2f{bottom:249.986667pt;}
.y59{bottom:254.906667pt;}
.y41{bottom:259.586667pt;}
.y69{bottom:263.653333pt;}
.y37{bottom:263.746667pt;}
.ya6{bottom:270.693333pt;}
.y9a{bottom:272.186667pt;}
.y72{bottom:276.293333pt;}
.y2e{bottom:278.973333pt;}
.y23{bottom:284.093333pt;}
.y40{bottom:285.666667pt;}
.y36{bottom:292.706667pt;}
.ya5{bottom:292.800000pt;}
.y49{bottom:292.866667pt;}
.y87{bottom:294.106667pt;}
.y99{bottom:296.186667pt;}
.y1b{bottom:299.706667pt;}
.y8e{bottom:304.293333pt;}
.y78{bottom:306.080000pt;}
.y2d{bottom:307.773333pt;}
.y62{bottom:308.613333pt;}
.y3f{bottom:311.586667pt;}
.y80{bottom:312.320000pt;}
.ya4{bottom:314.880000pt;}
.y4{bottom:316.093333pt;}
.y35{bottom:321.506667pt;}
.y48{bottom:321.693333pt;}
.y71{bottom:322.400000pt;}
.y68{bottom:324.480000pt;}
.y77{bottom:326.880000pt;}
.y22{bottom:332.093333pt;}
.y2c{bottom:336.733333pt;}
.y3e{bottom:337.693333pt;}
.y86{bottom:344.546667pt;}
.y7f{bottom:347.680000pt;}
.y9d{bottom:349.026667pt;}
.ya9{bottom:349.253333pt;}
.y34{bottom:350.493333pt;}
.y93{bottom:350.586667pt;}
.y47{bottom:350.653333pt;}
.y8d{bottom:360.453333pt;}
.y3d{bottom:363.613333pt;}
.y2b{bottom:365.533333pt;}
.y70{bottom:368.480000pt;}
.y61{bottom:369.440000pt;}
.y9c{bottom:373.026667pt;}
.y33{bottom:379.293333pt;}
.y46{bottom:379.453333pt;}
.y21{bottom:380.133333pt;}
.y7e{bottom:383.200000pt;}
.y3{bottom:383.333333pt;}
.y67{bottom:385.280000pt;}
.y3c{bottom:389.533333pt;}
.y2a{bottom:394.493333pt;}
.y85{bottom:394.946667pt;}
.y76{bottom:397.920000pt;}
.y8c{bottom:401.893333pt;}
.y45{bottom:408.413333pt;}
.y6f{bottom:414.560000pt;}
.y3b{bottom:415.613333pt;}
.y7d{bottom:418.720000pt;}
.y13{bottom:422.106667pt;}
.yae{bottom:423.653333pt;}
.y28{bottom:432.000000pt;}
.y75{bottom:433.280000pt;}
.y32{bottom:437.053333pt;}
.y8b{bottom:443.520000pt;}
.y66{bottom:445.920000pt;}
.y16{bottom:448.413333pt;}
.y2{bottom:450.533333pt;}
.y29{bottom:452.133333pt;}
.y74{bottom:454.106667pt;}
.y58{bottom:457.600000pt;}
.y84{bottom:459.906667pt;}
.y20{bottom:460.293333pt;}
.y6e{bottom:460.666667pt;}
.y31{bottom:465.853333pt;}
.y44{bottom:466.053333pt;}
.y3a{bottom:467.453333pt;}
.y15{bottom:480.413333pt;}
.y57{bottom:489.626667pt;}
.y1f{bottom:493.413333pt;}
.y83{bottom:498.533333pt;}
.y8a{bottom:499.680000pt;}
.y1a{bottom:505.693333pt;}
.y65{bottom:506.746667pt;}
.y14{bottom:512.413333pt;}
.y6d{bottom:516.346667pt;}
.y1{bottom:517.760000pt;}
.y54{bottom:518.533333pt;}
.y55{bottom:521.893333pt;}
.y73{bottom:524.986667pt;}
.y1e{bottom:526.533333pt;}
.y5c{bottom:535.200000pt;}
.y19{bottom:537.693333pt;}
.yac{bottom:585.213333pt;}
.y1c{bottom:600.893333pt;}
.y4d{bottom:601.533333pt;}
.y4b{bottom:602.333333pt;}
.y5a{bottom:618.560000pt;}
.y11{bottom:639.266667pt;}
.y4c{bottom:643.200000pt;}
.ya0{bottom:643.706667pt;}
.h14{height:33.375000pt;}
.h1c{height:38.976000pt;}
.hc{height:44.722500pt;}
.h4{height:45.024000pt;}
.h6{height:45.158400pt;}
.h1d{height:50.400000pt;}
.h1b{height:50.534400pt;}
.h8{height:55.776000pt;}
.h1e{height:67.200000pt;}
.h1f{height:67.334400pt;}
.h15{height:72.576000pt;}
.h16{height:72.710400pt;}
.h5{height:78.304000pt;}
.h3{height:78.624000pt;}
.h19{height:84.000000pt;}
.h1a{height:84.134400pt;}
.h12{height:95.424000pt;}
.h13{height:95.558400pt;}
.hd{height:100.800000pt;}
.hf{height:100.934400pt;}
.h21{height:106.310400pt;}
.h9{height:112.224000pt;}
.ha{height:112.358400pt;}
.he{height:117.600000pt;}
.h17{height:117.734400pt;}
.h18{height:125.493333pt;}
.h11{height:129.024000pt;}
.h20{height:129.158400pt;}
.h10{height:134.400000pt;}
.h7{height:134.534400pt;}
.h2{height:196.224000pt;}
.h1{height:196.358400pt;}
.hb{height:206.976000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x60{left:6.335981pt;}
.xb{left:15.743981pt;}
.x4c{left:18.367981pt;}
.x33{left:58.783981pt;}
.x32{left:62.207981pt;}
.x57{left:66.591981pt;}
.x34{left:71.807981pt;}
.x3{left:87.999981pt;}
.xf{left:92.159981pt;}
.x5e{left:97.599981pt;}
.x49{left:99.999981pt;}
.x5{left:101.279981pt;}
.xd{left:102.879981pt;}
.x3a{left:105.535981pt;}
.x15{left:109.759981pt;}
.x18{left:116.639981pt;}
.x16{left:118.559981pt;}
.x14{left:122.399981pt;}
.x4e{left:130.975981pt;}
.x4a{left:136.026648pt;}
.x17{left:138.399981pt;}
.xe{left:140.159981pt;}
.x4d{left:146.106648pt;}
.x13{left:152.506648pt;}
.x19{left:164.346648pt;}
.x31{left:176.226648pt;}
.x10{left:195.199981pt;}
.x58{left:196.933314pt;}
.x42{left:271.226648pt;}
.x40{left:290.466648pt;}
.x35{left:294.586648pt;}
.x9{left:304.253314pt;}
.x50{left:323.586648pt;}
.x44{left:343.386648pt;}
.x46{left:345.053314pt;}
.x3f{left:352.506648pt;}
.x56{left:366.373314pt;}
.x48{left:370.973314pt;}
.x8{left:374.013314pt;}
.x47{left:387.813314pt;}
.x1f{left:397.573314pt;}
.x1a{left:400.453314pt;}
.x21{left:401.573314pt;}
.x20{left:415.173314pt;}
.x1d{left:416.453314pt;}
.x45{left:420.613314pt;}
.x1e{left:434.213314pt;}
.x5c{left:440.506648pt;}
.x59{left:442.906648pt;}
.x41{left:443.906648pt;}
.x1c{left:450.853314pt;}
.x1b{left:463.653314pt;}
.x53{left:472.346648pt;}
.x54{left:473.626648pt;}
.x22{left:487.973314pt;}
.xc{left:515.293314pt;}
.x36{left:528.093314pt;}
.x51{left:573.279981pt;}
.xa{left:574.493314pt;}
.x55{left:585.413314pt;}
.x3c{left:600.733314pt;}
.x43{left:625.053314pt;}
.x7{left:639.973314pt;}
.x52{left:650.719981pt;}
.x4b{left:664.293314pt;}
.x39{left:670.786648pt;}
.x26{left:696.066648pt;}
.x1{left:701.253314pt;}
.x27{left:702.306648pt;}
.x25{left:705.506648pt;}
.x23{left:708.546648pt;}
.x2b{left:714.786648pt;}
.x2a{left:726.146648pt;}
.x28{left:740.066648pt;}
.x29{left:747.746648pt;}
.x24{left:755.746648pt;}
.x37{left:781.733314pt;}
.x6{left:903.133314pt;}
.x11{left:905.346648pt;}
.x5d{left:908.573314pt;}
.x3d{left:935.866648pt;}
.x5f{left:954.146648pt;}
.x2c{left:970.533314pt;}
.x2f{left:985.253314pt;}
.x38{left:987.133314pt;}
.x2d{left:988.133314pt;}
.x4f{left:994.786648pt;}
.x2{left:996.026648pt;}
.x2e{left:998.853314pt;}
.x5a{left:1013.053314pt;}
.x30{left:1045.093314pt;}
.x12{left:1091.773314pt;}
.x5b{left:1196.226648pt;}
.x3b{left:1197.506648pt;}
.x3e{left:1199.106648pt;}
.x4{left:1204.066648pt;}
}




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