
    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_4915c4648df56e18b8813956.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_0333242507c5e903db6d56c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.865723;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_fb9f58773cd9e34ecffa545e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_83dc948db24f90b3d2158239.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.998000;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_03b96fb725fef481ddf927fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_914e0c4590f67070b88092c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_fa33b3edbce0cffc7764a23c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_e24af6c3d80e97ae6a23d8c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.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:ff9;src:url('chunks/assets/font_413b1ffcf1a4558f72fab288.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_afea6848d9db7a7f698a5b22.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_5c7805ec89b9cc5080f6954f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.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;}
.m4{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.879984px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.064944px;}
.lsa{letter-spacing:0.064988px;}
.ls2{letter-spacing:0.304290px;}
.ls3{letter-spacing:17.254013px;}
.ls4{letter-spacing:20.139532px;}
.ls5{letter-spacing:29.517528px;}
.ls0{letter-spacing:31.681667px;}
.ls8{letter-spacing:61.258535px;}
.ls7{letter-spacing:164.145339px;}
.ls6{letter-spacing:371.183109px;}
.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:-33.839986px;}
.ws0{word-spacing:-16.919993px;}
.ws4{word-spacing:-15.565794px;}
.ws1{word-spacing:-14.043594px;}
.ws2{word-spacing:-11.762462px;}
.ws3{word-spacing:0.000000px;}
._27{margin-left:-6.157824px;}
._e{margin-left:-4.715663px;}
._d{margin-left:-3.531173px;}
._9{margin-left:-2.340519px;}
._1{margin-left:-1.040562px;}
._0{width:1.094835px;}
._24{width:2.155786px;}
._25{width:4.141601px;}
._15{width:5.993099px;}
._5{width:7.596831px;}
._1d{width:8.993826px;}
._10{width:10.490665px;}
._22{width:12.123995px;}
._3{width:13.268354px;}
._4{width:14.411117px;}
._c{width:15.712381px;}
._26{width:18.341672px;}
._6{width:19.473707px;}
._1c{width:20.730447px;}
._13{width:21.953370px;}
._37{width:23.086085px;}
._29{width:24.089025px;}
._30{width:25.282505px;}
._7{width:26.346875px;}
._b{width:27.783365px;}
._17{width:30.983088px;}
._12{width:32.875515px;}
._11{width:34.051917px;}
._23{width:35.065676px;}
._8{width:38.855707px;}
._31{width:39.872068px;}
._21{width:40.915316px;}
._f{width:42.179093px;}
._1b{width:43.542880px;}
._2a{width:45.416455px;}
._1f{width:46.544568px;}
._20{width:47.571893px;}
._1e{width:48.788785px;}
._2c{width:53.378660px;}
._a{width:54.421611px;}
._16{width:58.275927px;}
._33{width:62.030051px;}
._2d{width:63.603875px;}
._34{width:64.757794px;}
._38{width:69.526597px;}
._18{width:86.975868px;}
._36{width:88.078196px;}
._35{width:89.244890px;}
._2e{width:90.626504px;}
._2b{width:93.438235px;}
._2f{width:94.763023px;}
._32{width:102.204792px;}
._14{width:116.334334px;}
._1a{width:184.864735px;}
._19{width:186.268896px;}
._2{width:311.251723px;}
._28{width:353.129619px;}
.fc7{color:rgb(96,36,35);}
.fc6{color:rgb(112,53,4);}
.fc3{color:rgb(103,32,13);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(15,36,62);}
.fc0{color:rgb(99,36,35);}
.fs6{font-size:5.414398px;}
.fs8{font-size:11.503435px;}
.fs7{font-size:33.839986px;}
.fs9{font-size:53.465739px;}
.fs1{font-size:56.174378px;}
.fs5{font-size:59.557656px;}
.fs3{font-size:62.263175px;}
.fs2{font-size:67.679973px;}
.fs0{font-size:79.183168px;}
.fs4{font-size:101.519959px;}
.y0{bottom:0.000000px;}
.y9c{bottom:3.599610px;}
.ya2{bottom:3.599634px;}
.ya8{bottom:3.599657px;}
.yac{bottom:3.599681px;}
.yb1{bottom:3.599704px;}
.y18{bottom:3.599722px;}
.ybd{bottom:3.599763px;}
.yc5{bottom:3.599787px;}
.ycc{bottom:3.599826px;}
.ycf{bottom:3.599842px;}
.yd5{bottom:3.599866px;}
.yb7{bottom:3.779728px;}
.yc9{bottom:3.779810px;}
.ydb{bottom:3.779889px;}
.ye1{bottom:3.779913px;}
.ye5{bottom:3.779937px;}
.yea{bottom:3.779952px;}
.yf0{bottom:3.779976px;}
.y4{bottom:12.419995px;}
.yef{bottom:55.980000px;}
.y40{bottom:61.019976px;}
.y13e{bottom:65.699974px;}
.y7f{bottom:66.959973px;}
.y98{bottom:67.499973px;}
.yec{bottom:69.659972px;}
.y3f{bottom:76.679969px;}
.yee{bottom:79.199968px;}
.y7e{bottom:82.799967px;}
.y13d{bottom:85.139966px;}
.y97{bottom:86.939965px;}
.yeb{bottom:89.099964px;}
.y116{bottom:91.079964px;}
.yed{bottom:98.639961px;}
.y13c{bottom:104.579958px;}
.y96{bottom:106.379957px;}
.y74{bottom:110.519956px;}
.ye9{bottom:115.020000px;}
.y73{bottom:129.959948px;}
.y13b{bottom:132.479947px;}
.y95{bottom:134.459946px;}
.ye8{bottom:138.239945px;}
.y72{bottom:149.399940px;}
.y13a{bottom:151.919939px;}
.y94{bottom:153.899938px;}
.ye4{bottom:154.620000px;}
.ye7{bottom:168.299933px;}
.y71{bottom:168.839932px;}
.y139{bottom:171.359931px;}
.y93{bottom:173.339931px;}
.y115{bottom:177.299929px;}
.ye3{bottom:177.839929px;}
.ye6{bottom:187.739925px;}
.y70{bottom:188.279925px;}
.y138{bottom:190.979924px;}
.y92{bottom:192.779923px;}
.y114{bottom:196.739921px;}
.ye2{bottom:197.279921px;}
.y6f{bottom:207.899917px;}
.ye0{bottom:213.840000px;}
.y113{bottom:216.359913px;}
.y137{bottom:218.879912px;}
.y91{bottom:220.679912px;}
.ydd{bottom:227.339909px;}
.y6e{bottom:235.799906px;}
.ydf{bottom:237.059905px;}
.y136{bottom:238.319905px;}
.y90{bottom:240.119904px;}
.ydc{bottom:246.779901px;}
.y6d{bottom:255.239898px;}
.yde{bottom:256.499897px;}
.y135{bottom:257.759897px;}
.y8f{bottom:259.559896px;}
.yda{bottom:272.880000px;}
.y6c{bottom:274.679890px;}
.y134{bottom:277.199889px;}
.y8e{bottom:278.999888px;}
.y112{bottom:283.139887px;}
.yd7{bottom:286.379885px;}
.y6b{bottom:294.119882px;}
.yd9{bottom:296.099882px;}
.y111{bottom:302.579879px;}
.y133{bottom:305.099878px;}
.yd6{bottom:305.819878px;}
.y8d{bottom:306.899877px;}
.y6a{bottom:313.559875px;}
.yd8{bottom:315.539874px;}
.y110{bottom:322.019871px;}
.y132{bottom:324.539870px;}
.y8c{bottom:326.339869px;}
.yd4{bottom:332.100000px;}
.y69{bottom:341.459863px;}
.y131{bottom:343.979862px;}
.yd1{bottom:345.419862px;}
.y8b{bottom:345.959862px;}
.yd3{bottom:355.139858px;}
.y68{bottom:360.899856px;}
.y130{bottom:363.419855px;}
.yd0{bottom:364.859854px;}
.y8a{bottom:365.399854px;}
.y10f{bottom:369.359852px;}
.yd2{bottom:374.579850px;}
.y67{bottom:380.339848px;}
.y89{bottom:384.839846px;}
.y10e{bottom:388.799844px;}
.yce{bottom:391.140000px;}
.y12f{bottom:391.319843px;}
.y66{bottom:399.779840px;}
.y10d{bottom:408.239837px;}
.y12e{bottom:410.939836px;}
.y88{bottom:412.739835px;}
.ycd{bottom:414.179834px;}
.y65{bottom:419.399832px;}
.y87{bottom:428.399829px;}
.y12d{bottom:430.379828px;}
.ycb{bottom:430.740000px;}
.y3e{bottom:435.059826px;}
.y10c{bottom:436.319825px;}
.y64{bottom:438.839824px;}
.y12c{bottom:449.819820px;}
.yca{bottom:453.779818px;}
.y3d{bottom:454.499818px;}
.y10b{bottom:455.759818px;}
.y63{bottom:466.739813px;}
.y12b{bottom:469.259812px;}
.yc8{bottom:470.160000px;}
.y3c{bottom:473.939810px;}
.y10a{bottom:475.199810px;}
.yc7{bottom:483.839806px;}
.y62{bottom:486.179806px;}
.y3b{bottom:493.379803px;}
.y109{bottom:494.639802px;}
.y12a{bottom:497.159801px;}
.yc6{bottom:503.279799px;}
.y61{bottom:505.619798px;}
.y3a{bottom:512.819795px;}
.y108{bottom:514.079794px;}
.y129{bottom:516.599793px;}
.y60{bottom:525.059790px;}
.yc4{bottom:529.380000px;}
.y39{bottom:532.259787px;}
.y7d{bottom:533.699787px;}
.y128{bottom:536.039786px;}
.y107{bottom:541.979783px;}
.yc1{bottom:542.879783px;}
.y5f{bottom:544.499782px;}
.y38{bottom:550.079780px;}
.yc3{bottom:552.419779px;}
.y7c{bottom:553.139779px;}
.y127{bottom:555.479778px;}
.y37{bottom:560.879776px;}
.y106{bottom:561.419775px;}
.yc0{bottom:562.319775px;}
.y5e{bottom:563.939774px;}
.yc2{bottom:571.859771px;}
.y7b{bottom:572.579771px;}
.y126{bottom:574.919770px;}
.y36{bottom:577.439769px;}
.y105{bottom:580.859768px;}
.ybc{bottom:588.600000px;}
.y5d{bottom:591.839763px;}
.y7a{bottom:592.019763px;}
.ybb{bottom:592.199763px;}
.y20{bottom:594.719762px;}
.y35{bottom:595.439762px;}
.ybf{bottom:601.919759px;}
.y125{bottom:602.819759px;}
.y1f{bottom:604.619758px;}
.y104{bottom:608.759756px;}
.y5c{bottom:611.279755px;}
.y79{bottom:611.459755px;}
.yba{bottom:611.639755px;}
.y34{bottom:613.259755px;}
.y1e{bottom:614.159754px;}
.ybe{bottom:621.359751px;}
.y124{bottom:622.439751px;}
.y1d{bottom:625.679750px;}
.y103{bottom:628.199749px;}
.y33{bottom:630.899748px;}
.yb9{bottom:631.079748px;}
.y123{bottom:641.879743px;}
.y1c{bottom:645.119742px;}
.y102{bottom:647.819741px;}
.y32{bottom:648.899740px;}
.y5b{bottom:650.339740px;}
.y78{bottom:650.519740px;}
.y143{bottom:650.699740px;}
.yb8{bottom:651.239740px;}
.y142{bottom:658.799736px;}
.y122{bottom:661.319735px;}
.y1b{bottom:664.739734px;}
.y31{bottom:666.719733px;}
.y101{bottom:667.259733px;}
.y141{bottom:669.779732px;}
.y77{bottom:669.959732px;}
.yb6{bottom:676.080000px;}
.y5a{bottom:678.239729px;}
.y121{bottom:680.759728px;}
.y1a{bottom:682.379727px;}
.y30{bottom:684.539726px;}
.y140{bottom:689.219724px;}
.y19{bottom:691.019724px;}
.y17{bottom:692.460000px;}
.y100{bottom:695.159722px;}
.y59{bottom:697.679721px;}
.y76{bottom:697.859721px;}
.yb5{bottom:699.299720px;}
.y2f{bottom:702.359719px;}
.y120{bottom:708.659717px;}
.y75{bottom:713.519715px;}
.yff{bottom:714.599714px;}
.y16{bottom:715.499714px;}
.y58{bottom:717.119713px;}
.yb4{bottom:718.739713px;}
.y2e{bottom:719.819712px;}
.y11f{bottom:728.099709px;}
.yfe{bottom:734.039706px;}
.y15{bottom:735.119706px;}
.yb0{bottom:735.300000px;}
.y2d{bottom:736.379705px;}
.y57{bottom:736.559705px;}
.y11e{bottom:747.539701px;}
.yb3{bottom:748.619701px;}
.yfd{bottom:753.479699px;}
.y2c{bottom:754.379698px;}
.y14{bottom:754.559698px;}
.y13f{bottom:755.999698px;}
.yaf{bottom:758.339697px;}
.y56{bottom:764.459694px;}
.yb2{bottom:768.059693px;}
.y2b{bottom:772.019691px;}
.yfc{bottom:772.919691px;}
.y13{bottom:773.999690px;}
.y11d{bottom:775.439690px;}
.yae{bottom:777.779689px;}
.y55{bottom:783.899686px;}
.y2a{bottom:789.839684px;}
.y43{bottom:791.819683px;}
.y12{bottom:793.439683px;}
.yab{bottom:794.340000px;}
.y11c{bottom:794.879682px;}
.yfb{bottom:800.819680px;}
.y54{bottom:803.339679px;}
.y42{bottom:805.679678px;}
.y29{bottom:807.839677px;}
.y41{bottom:810.899676px;}
.y11{bottom:812.879675px;}
.y11b{bottom:814.319674px;}
.yaa{bottom:817.379673px;}
.yfa{bottom:820.259672px;}
.y53{bottom:822.779671px;}
.y28{bottom:825.479670px;}
.yad{bottom:827.279669px;}
.y10{bottom:832.319667px;}
.ya9{bottom:836.819665px;}
.yf9{bottom:839.699664px;}
.y11a{bottom:842.399663px;}
.y27{bottom:843.479663px;}
.y52{bottom:850.859660px;}
.yf{bottom:851.759659px;}
.ya7{bottom:853.380000px;}
.yf8{bottom:859.319656px;}
.y26{bottom:861.299655px;}
.y86{bottom:861.839655px;}
.ya4{bottom:866.879653px;}
.y51{bottom:870.299652px;}
.ye{bottom:871.199652px;}
.ya6{bottom:876.419649px;}
.yf7{bottom:878.759648px;}
.y25{bottom:879.119648px;}
.y85{bottom:881.279647px;}
.ya3{bottom:886.319645px;}
.y50{bottom:889.739644px;}
.yd{bottom:890.639644px;}
.ya5{bottom:896.039642px;}
.y24{bottom:896.939641px;}
.yf6{bottom:898.199641px;}
.y84{bottom:900.719640px;}
.y4f{bottom:909.179636px;}
.yc{bottom:910.079636px;}
.ya1{bottom:912.420000px;}
.y23{bottom:914.759634px;}
.y9e{bottom:925.919630px;}
.yf5{bottom:926.099630px;}
.y83{bottom:928.619629px;}
.yb{bottom:929.699628px;}
.y22{bottom:932.759627px;}
.ya0{bottom:935.459626px;}
.y4e{bottom:937.079625px;}
.y9d{bottom:945.359622px;}
.yf4{bottom:945.539622px;}
.y82{bottom:948.059621px;}
.ya{bottom:949.139620px;}
.y21{bottom:950.399620px;}
.y9f{bottom:955.079618px;}
.y4d{bottom:956.519617px;}
.yf3{bottom:964.979614px;}
.y81{bottom:967.499613px;}
.y9{bottom:970.919612px;}
.y9b{bottom:971.640000px;}
.y9a{bottom:975.239610px;}
.y4c{bottom:975.959610px;}
.yf2{bottom:984.419606px;}
.y119{bottom:986.939605px;}
.y8{bottom:991.799603px;}
.y4b{bottom:995.399602px;}
.yf1{bottom:1003.859598px;}
.y4a{bottom:1014.839594px;}
.y7{bottom:1021.319591px;}
.y99{bottom:1023.299591px;}
.y80{bottom:1034.279586px;}
.y49{bottom:1042.739583px;}
.y6{bottom:1051.199580px;}
.y118{bottom:1053.899578px;}
.y48{bottom:1062.359575px;}
.y117{bottom:1073.339571px;}
.y5{bottom:1080.179568px;}
.y47{bottom:1081.799567px;}
.y46{bottom:1101.239560px;}
.y3{bottom:1107.179557px;}
.y45{bottom:1120.679552px;}
.y2{bottom:1124.279550px;}
.y1{bottom:1144.259542px;}
.y44{bottom:1148.039541px;}
.h18{height:3.651017px;}
.hb{height:4.055384px;}
.h12{height:7.756955px;}
.ha{height:18.720000px;}
.h15{height:18.900000px;}
.h11{height:23.484951px;}
.hc{height:23.654151px;}
.h10{height:25.346150px;}
.h13{height:36.052825px;}
.h4{height:37.440442px;}
.h2{height:37.879304px;}
.h8{height:41.498649px;}
.hf{height:42.074609px;}
.h7{height:44.608684px;}
.he{height:46.225422px;}
.h5{height:46.635118px;}
.h3{height:46.969901px;}
.hd{height:47.308301px;}
.h14{height:48.909355px;}
.h9{height:50.692300px;}
.h1{height:54.953119px;}
.h6{height:70.454852px;}
.h17{height:88.852284px;}
.h16{height:124.729870px;}
.h0{height:1188.000000px;}
.wa{width:5.580000px;}
.w16{width:7.200000px;}
.w2{width:7.740000px;}
.w4{width:7.920000px;}
.w25{width:8.100000px;}
.w3{width:8.460000px;}
.w21{width:33.840000px;}
.w1e{width:52.740000px;}
.wc{width:60.120000px;}
.w11{width:61.200000px;}
.w28{width:64.080000px;}
.we{width:66.420000px;}
.w26{width:68.760000px;}
.w22{width:76.140000px;}
.w17{width:78.120000px;}
.w9{width:85.500000px;}
.w20{width:86.040000px;}
.wb{width:90.000000px;}
.wd{width:90.180000px;}
.w14{width:95.940000px;}
.w8{width:105.300000px;}
.w13{width:113.220000px;}
.w10{width:114.300000px;}
.w19{width:118.980000px;}
.w1b{width:122.760000px;}
.w18{width:125.640000px;}
.w27{width:127.440000px;}
.w1f{width:130.680000px;}
.w23{width:132.480000px;}
.w7{width:135.000000px;}
.w1d{width:140.580000px;}
.w1a{width:144.720000px;}
.wf{width:148.140000px;}
.w12{width:149.940000px;}
.w1c{width:157.860000px;}
.w6{width:159.300000px;}
.w5{width:161.640000px;}
.w15{width:178.560000px;}
.w24{width:180.900000px;}
.w1{width:455.760000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5a{left:81.539974px;}
.x5{left:89.639964px;}
.x38{left:91.799963px;}
.x40{left:95.579962px;}
.x27{left:103.499959px;}
.x1{left:113.759954px;}
.x19{left:115.019987px;}
.x3a{left:116.459953px;}
.x15{left:117.539953px;}
.x57{left:129.779972px;}
.x1e{left:134.458434px;}
.x39{left:137.519945px;}
.x3b{left:139.319944px;}
.x1f{left:142.019943px;}
.x3{left:144.719942px;}
.x51{left:171.720000px;}
.x45{left:173.520000px;}
.x3c{left:188.280000px;}
.x32{left:193.680000px;}
.x20{left:203.220000px;}
.x2d{left:208.800000px;}
.x34{left:217.800000px;}
.x52{left:228.060000px;}
.x9{left:229.319908px;}
.x7{left:239.939901px;}
.x6{left:246.059902px;}
.x41{left:247.140106px;}
.x3d{left:252.359899px;}
.x21{left:257.579897px;}
.x1b{left:275.939593px;}
.x1d{left:289.259433px;}
.x11{left:294.480490px;}
.x4c{left:299.880000px;}
.x3e{left:316.799873px;}
.x35{left:318.240000px;}
.x18{left:323.639470px;}
.x4e{left:333.180000px;}
.x43{left:342.900000px;}
.x46{left:372.780000px;}
.x4d{left:377.820000px;}
.x49{left:405.000000px;}
.x8{left:411.839835px;}
.x28{left:418.680000px;}
.x53{left:428.040000px;}
.x22{left:441.180000px;}
.x42{left:444.060202px;}
.x29{left:457.019817px;}
.xb{left:458.459817px;}
.x59{left:465.658896px;}
.x23{left:471.779811px;}
.xf{left:473.760145px;}
.x4f{left:477.900000px;}
.x54{left:512.820000px;}
.x58{left:513.898869px;}
.x2e{left:542.340000px;}
.xc{left:545.220000px;}
.x2f{left:547.920000px;}
.x47{left:563.040000px;}
.xd{left:581.939767px;}
.x4a{left:584.640000px;}
.x2c{left:591.840000px;}
.x36{left:606.960000px;}
.x2a{left:616.140000px;}
.x44{left:622.620000px;}
.x24{left:626.580000px;}
.x30{left:637.920000px;}
.xa{left:650.339740px;}
.x2b{left:656.819737px;}
.x25{left:672.299731px;}
.x17{left:676.799729px;}
.x10{left:680.219728px;}
.x50{left:690.480000px;}
.x3f{left:698.579721px;}
.x56{left:701.820000px;}
.x1c{left:706.499717px;}
.x1a{left:710.459716px;}
.x31{left:716.940000px;}
.x14{left:731.699707px;}
.x4b{left:756.720000px;}
.x55{left:765.180000px;}
.x37{left:770.040000px;}
.x4{left:772.199691px;}
.x13{left:773.279691px;}
.x48{left:782.460000px;}
.x26{left:797.940000px;}
.x16{left:799.559680px;}
.x33{left:804.780000px;}
.x2{left:808.019677px;}
.x12{left:815.579674px;}
.xe{left:827.639669px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.559986pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.057728pt;}
.lsa{letter-spacing:0.057767pt;}
.ls2{letter-spacing:0.270480pt;}
.ls3{letter-spacing:15.336901pt;}
.ls4{letter-spacing:17.901806pt;}
.ls5{letter-spacing:26.237803pt;}
.ls0{letter-spacing:28.161482pt;}
.ls8{letter-spacing:54.452032pt;}
.ls7{letter-spacing:145.906968pt;}
.ls6{letter-spacing:329.940541pt;}
.ws5{word-spacing:-30.079988pt;}
.ws0{word-spacing:-15.039994pt;}
.ws4{word-spacing:-13.836261pt;}
.ws1{word-spacing:-12.483195pt;}
.ws2{word-spacing:-10.455522pt;}
.ws3{word-spacing:0.000000pt;}
._27{margin-left:-5.473621pt;}
._e{margin-left:-4.191700pt;}
._d{margin-left:-3.138821pt;}
._9{margin-left:-2.080462pt;}
._1{margin-left:-0.924944pt;}
._0{width:0.973187pt;}
._24{width:1.916254pt;}
._25{width:3.681423pt;}
._15{width:5.327199pt;}
._5{width:6.752738pt;}
._1d{width:7.994512pt;}
._10{width:9.325036pt;}
._22{width:10.776884pt;}
._3{width:11.794093pt;}
._4{width:12.809882pt;}
._c{width:13.966561pt;}
._26{width:16.303709pt;}
._6{width:17.309962pt;}
._1c{width:18.427064pt;}
._13{width:19.514107pt;}
._37{width:20.520964pt;}
._29{width:21.412467pt;}
._30{width:22.473338pt;}
._7{width:23.419445pt;}
._b{width:24.696324pt;}
._17{width:27.540523pt;}
._12{width:29.222680pt;}
._11{width:30.268370pt;}
._23{width:31.169490pt;}
._8{width:34.538406pt;}
._31{width:35.441838pt;}
._21{width:36.369169pt;}
._f{width:37.492527pt;}
._1b{width:38.704782pt;}
._2a{width:40.370182pt;}
._1f{width:41.372950pt;}
._20{width:42.286127pt;}
._1e{width:43.367809pt;}
._2c{width:47.447698pt;}
._a{width:48.374765pt;}
._16{width:51.800824pt;}
._33{width:55.137823pt;}
._2d{width:56.536778pt;}
._34{width:57.562484pt;}
._38{width:61.801419pt;}
._18{width:77.311883pt;}
._36{width:78.291730pt;}
._35{width:79.328791pt;}
._2e{width:80.556893pt;}
._2b{width:83.056209pt;}
._2f{width:84.233799pt;}
._32{width:90.848704pt;}
._14{width:103.408297pt;}
._1a{width:164.324209pt;}
._19{width:165.572352pt;}
._2{width:276.668199pt;}
._28{width:313.892994pt;}
.fs6{font-size:4.812798pt;}
.fs8{font-size:10.225276pt;}
.fs7{font-size:30.079988pt;}
.fs9{font-size:47.525101pt;}
.fs1{font-size:49.932780pt;}
.fs5{font-size:52.940139pt;}
.fs3{font-size:55.345045pt;}
.fs2{font-size:60.159976pt;}
.fs0{font-size:70.385039pt;}
.fs4{font-size:90.239964pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:3.199653pt;}
.ya2{bottom:3.199674pt;}
.ya8{bottom:3.199695pt;}
.yac{bottom:3.199716pt;}
.yb1{bottom:3.199737pt;}
.y18{bottom:3.199753pt;}
.ybd{bottom:3.199789pt;}
.yc5{bottom:3.199810pt;}
.ycc{bottom:3.199846pt;}
.ycf{bottom:3.199860pt;}
.yd5{bottom:3.199881pt;}
.yb7{bottom:3.359758pt;}
.yc9{bottom:3.359831pt;}
.ydb{bottom:3.359902pt;}
.ye1{bottom:3.359923pt;}
.ye5{bottom:3.359944pt;}
.yea{bottom:3.359958pt;}
.yf0{bottom:3.359979pt;}
.y4{bottom:11.039996pt;}
.yef{bottom:49.760000pt;}
.y40{bottom:54.239978pt;}
.y13e{bottom:58.399977pt;}
.y7f{bottom:59.519976pt;}
.y98{bottom:59.999976pt;}
.yec{bottom:61.919975pt;}
.y3f{bottom:68.159973pt;}
.yee{bottom:70.399972pt;}
.y7e{bottom:73.599971pt;}
.y13d{bottom:75.679970pt;}
.y97{bottom:77.279969pt;}
.yeb{bottom:79.199968pt;}
.y116{bottom:80.959968pt;}
.yed{bottom:87.679965pt;}
.y13c{bottom:92.959963pt;}
.y96{bottom:94.559962pt;}
.y74{bottom:98.239961pt;}
.ye9{bottom:102.240000pt;}
.y73{bottom:115.519954pt;}
.y13b{bottom:117.759953pt;}
.y95{bottom:119.519952pt;}
.ye8{bottom:122.879951pt;}
.y72{bottom:132.799947pt;}
.y13a{bottom:135.039946pt;}
.y94{bottom:136.799945pt;}
.ye4{bottom:137.440000pt;}
.ye7{bottom:149.599940pt;}
.y71{bottom:150.079940pt;}
.y139{bottom:152.319939pt;}
.y93{bottom:154.079938pt;}
.y115{bottom:157.599937pt;}
.ye3{bottom:158.079937pt;}
.ye6{bottom:166.879933pt;}
.y70{bottom:167.359933pt;}
.y138{bottom:169.759932pt;}
.y92{bottom:171.359931pt;}
.y114{bottom:174.879930pt;}
.ye2{bottom:175.359930pt;}
.y6f{bottom:184.799926pt;}
.ye0{bottom:190.080000pt;}
.y113{bottom:192.319923pt;}
.y137{bottom:194.559922pt;}
.y91{bottom:196.159922pt;}
.ydd{bottom:202.079919pt;}
.y6e{bottom:209.599916pt;}
.ydf{bottom:210.719916pt;}
.y136{bottom:211.839915pt;}
.y90{bottom:213.439915pt;}
.ydc{bottom:219.359912pt;}
.y6d{bottom:226.879909pt;}
.yde{bottom:227.999909pt;}
.y135{bottom:229.119908pt;}
.y8f{bottom:230.719908pt;}
.yda{bottom:242.560000pt;}
.y6c{bottom:244.159902pt;}
.y134{bottom:246.399901pt;}
.y8e{bottom:247.999901pt;}
.y112{bottom:251.679899pt;}
.yd7{bottom:254.559898pt;}
.y6b{bottom:261.439895pt;}
.yd9{bottom:263.199895pt;}
.y111{bottom:268.959892pt;}
.y133{bottom:271.199892pt;}
.yd6{bottom:271.839891pt;}
.y8d{bottom:272.799891pt;}
.y6a{bottom:278.719889pt;}
.yd8{bottom:280.479888pt;}
.y110{bottom:286.239886pt;}
.y132{bottom:288.479885pt;}
.y8c{bottom:290.079884pt;}
.yd4{bottom:295.200000pt;}
.y69{bottom:303.519879pt;}
.y131{bottom:305.759878pt;}
.yd1{bottom:307.039877pt;}
.y8b{bottom:307.519877pt;}
.yd3{bottom:315.679874pt;}
.y68{bottom:320.799872pt;}
.y130{bottom:323.039871pt;}
.yd0{bottom:324.319870pt;}
.y8a{bottom:324.799870pt;}
.y10f{bottom:328.319869pt;}
.yd2{bottom:332.959867pt;}
.y67{bottom:338.079865pt;}
.y89{bottom:342.079863pt;}
.y10e{bottom:345.599862pt;}
.yce{bottom:347.680000pt;}
.y12f{bottom:347.839861pt;}
.y66{bottom:355.359858pt;}
.y10d{bottom:362.879855pt;}
.y12e{bottom:365.279854pt;}
.y88{bottom:366.879853pt;}
.ycd{bottom:368.159853pt;}
.y65{bottom:372.799851pt;}
.y87{bottom:380.799848pt;}
.y12d{bottom:382.559847pt;}
.ycb{bottom:382.880000pt;}
.y3e{bottom:386.719845pt;}
.y10c{bottom:387.839845pt;}
.y64{bottom:390.079844pt;}
.y12c{bottom:399.839840pt;}
.yca{bottom:403.359839pt;}
.y3d{bottom:403.999838pt;}
.y10b{bottom:405.119838pt;}
.y63{bottom:414.879834pt;}
.y12b{bottom:417.119833pt;}
.yc8{bottom:417.920000pt;}
.y3c{bottom:421.279831pt;}
.y10a{bottom:422.399831pt;}
.yc7{bottom:430.079828pt;}
.y62{bottom:432.159827pt;}
.y3b{bottom:438.559825pt;}
.y109{bottom:439.679824pt;}
.y12a{bottom:441.919823pt;}
.yc6{bottom:447.359821pt;}
.y61{bottom:449.439820pt;}
.y3a{bottom:455.839818pt;}
.y108{bottom:456.959817pt;}
.y129{bottom:459.199816pt;}
.y60{bottom:466.719813pt;}
.yc4{bottom:470.560000pt;}
.y39{bottom:473.119811pt;}
.y7d{bottom:474.399810pt;}
.y128{bottom:476.479809pt;}
.y107{bottom:481.759807pt;}
.yc1{bottom:482.559807pt;}
.y5f{bottom:483.999806pt;}
.y38{bottom:488.959804pt;}
.yc3{bottom:491.039804pt;}
.y7c{bottom:491.679803pt;}
.y127{bottom:493.759802pt;}
.y37{bottom:498.559801pt;}
.y106{bottom:499.039800pt;}
.yc0{bottom:499.839800pt;}
.y5e{bottom:501.279799pt;}
.yc2{bottom:508.319797pt;}
.y7b{bottom:508.959796pt;}
.y126{bottom:511.039796pt;}
.y36{bottom:513.279795pt;}
.y105{bottom:516.319793pt;}
.ybc{bottom:523.200000pt;}
.y5d{bottom:526.079790pt;}
.y7a{bottom:526.239790pt;}
.ybb{bottom:526.399789pt;}
.y20{bottom:528.639789pt;}
.y35{bottom:529.279788pt;}
.ybf{bottom:535.039786pt;}
.y125{bottom:535.839786pt;}
.y1f{bottom:537.439785pt;}
.y104{bottom:541.119784pt;}
.y5c{bottom:543.359783pt;}
.y79{bottom:543.519783pt;}
.yba{bottom:543.679783pt;}
.y34{bottom:545.119782pt;}
.y1e{bottom:545.919782pt;}
.ybe{bottom:552.319779pt;}
.y124{bottom:553.279779pt;}
.y1d{bottom:556.159778pt;}
.y103{bottom:558.399777pt;}
.y33{bottom:560.799776pt;}
.yb9{bottom:560.959776pt;}
.y123{bottom:570.559772pt;}
.y1c{bottom:573.439771pt;}
.y102{bottom:575.839770pt;}
.y32{bottom:576.799769pt;}
.y5b{bottom:578.079769pt;}
.y78{bottom:578.239769pt;}
.y143{bottom:578.399769pt;}
.yb8{bottom:578.879768pt;}
.y142{bottom:585.599766pt;}
.y122{bottom:587.839765pt;}
.y1b{bottom:590.879764pt;}
.y31{bottom:592.639763pt;}
.y101{bottom:593.119763pt;}
.y141{bottom:595.359762pt;}
.y77{bottom:595.519762pt;}
.yb6{bottom:600.960000pt;}
.y5a{bottom:602.879759pt;}
.y121{bottom:605.119758pt;}
.y1a{bottom:606.559757pt;}
.y30{bottom:608.479757pt;}
.y140{bottom:612.639755pt;}
.y19{bottom:614.239754pt;}
.y17{bottom:615.520000pt;}
.y100{bottom:617.919753pt;}
.y59{bottom:620.159752pt;}
.y76{bottom:620.319752pt;}
.yb5{bottom:621.599751pt;}
.y2f{bottom:624.319750pt;}
.y120{bottom:629.919748pt;}
.y75{bottom:634.239746pt;}
.yff{bottom:635.199746pt;}
.y16{bottom:635.999746pt;}
.y58{bottom:637.439745pt;}
.yb4{bottom:638.879744pt;}
.y2e{bottom:639.839744pt;}
.y11f{bottom:647.199741pt;}
.yfe{bottom:652.479739pt;}
.y15{bottom:653.439739pt;}
.yb0{bottom:653.600000pt;}
.y2d{bottom:654.559738pt;}
.y57{bottom:654.719738pt;}
.y11e{bottom:664.479734pt;}
.yb3{bottom:665.439734pt;}
.yfd{bottom:669.759732pt;}
.y2c{bottom:670.559732pt;}
.y14{bottom:670.719732pt;}
.y13f{bottom:671.999731pt;}
.yaf{bottom:674.079730pt;}
.y56{bottom:679.519728pt;}
.yb2{bottom:682.719727pt;}
.y2b{bottom:686.239726pt;}
.yfc{bottom:687.039725pt;}
.y13{bottom:687.999725pt;}
.y11d{bottom:689.279724pt;}
.yae{bottom:691.359723pt;}
.y55{bottom:696.799721pt;}
.y2a{bottom:702.079719pt;}
.y43{bottom:703.839718pt;}
.y12{bottom:705.279718pt;}
.yab{bottom:706.080000pt;}
.y11c{bottom:706.559717pt;}
.yfb{bottom:711.839715pt;}
.y54{bottom:714.079714pt;}
.y42{bottom:716.159714pt;}
.y29{bottom:718.079713pt;}
.y41{bottom:720.799712pt;}
.y11{bottom:722.559711pt;}
.y11b{bottom:723.839710pt;}
.yaa{bottom:726.559709pt;}
.yfa{bottom:729.119708pt;}
.y53{bottom:731.359707pt;}
.y28{bottom:733.759706pt;}
.yad{bottom:735.359706pt;}
.y10{bottom:739.839704pt;}
.ya9{bottom:743.839702pt;}
.yf9{bottom:746.399701pt;}
.y11a{bottom:748.799700pt;}
.y27{bottom:749.759700pt;}
.y52{bottom:756.319697pt;}
.yf{bottom:757.119697pt;}
.ya7{bottom:758.560000pt;}
.yf8{bottom:763.839694pt;}
.y26{bottom:765.599694pt;}
.y86{bottom:766.079694pt;}
.ya4{bottom:770.559692pt;}
.y51{bottom:773.599691pt;}
.ye{bottom:774.399690pt;}
.ya6{bottom:779.039688pt;}
.yf7{bottom:781.119688pt;}
.y25{bottom:781.439687pt;}
.y85{bottom:783.359687pt;}
.ya3{bottom:787.839685pt;}
.y50{bottom:790.879684pt;}
.yd{bottom:791.679683pt;}
.ya5{bottom:796.479681pt;}
.y24{bottom:797.279681pt;}
.yf6{bottom:798.399681pt;}
.y84{bottom:800.639680pt;}
.y4f{bottom:808.159677pt;}
.yc{bottom:808.959676pt;}
.ya1{bottom:811.040000pt;}
.y23{bottom:813.119675pt;}
.y9e{bottom:823.039671pt;}
.yf5{bottom:823.199671pt;}
.y83{bottom:825.439670pt;}
.yb{bottom:826.399669pt;}
.y22{bottom:829.119668pt;}
.ya0{bottom:831.519667pt;}
.y4e{bottom:832.959667pt;}
.y9d{bottom:840.319664pt;}
.yf4{bottom:840.479664pt;}
.y82{bottom:842.719663pt;}
.ya{bottom:843.679663pt;}
.y21{bottom:844.799662pt;}
.y9f{bottom:848.959660pt;}
.y4d{bottom:850.239660pt;}
.yf3{bottom:857.759657pt;}
.y81{bottom:859.999656pt;}
.y9{bottom:863.039655pt;}
.y9b{bottom:863.680000pt;}
.y9a{bottom:866.879653pt;}
.y4c{bottom:867.519653pt;}
.yf2{bottom:875.039650pt;}
.y119{bottom:877.279649pt;}
.y8{bottom:881.599647pt;}
.y4b{bottom:884.799646pt;}
.yf1{bottom:892.319643pt;}
.y4a{bottom:902.079639pt;}
.y7{bottom:907.839637pt;}
.y99{bottom:909.599636pt;}
.y80{bottom:919.359632pt;}
.y49{bottom:926.879629pt;}
.y6{bottom:934.399626pt;}
.y118{bottom:936.799625pt;}
.y48{bottom:944.319622pt;}
.y117{bottom:954.079618pt;}
.y5{bottom:960.159616pt;}
.y47{bottom:961.599615pt;}
.y46{bottom:978.879608pt;}
.y3{bottom:984.159606pt;}
.y45{bottom:996.159602pt;}
.y2{bottom:999.359600pt;}
.y1{bottom:1017.119593pt;}
.y44{bottom:1020.479592pt;}
.h18{height:3.245349pt;}
.hb{height:3.604786pt;}
.h12{height:6.895071pt;}
.ha{height:16.640000pt;}
.h15{height:16.800000pt;}
.h11{height:20.875512pt;}
.hc{height:21.025912pt;}
.h10{height:22.529911pt;}
.h13{height:32.046955pt;}
.h4{height:33.280393pt;}
.h2{height:33.670493pt;}
.h8{height:36.887688pt;}
.hf{height:37.399652pt;}
.h7{height:39.652164pt;}
.he{height:41.089264pt;}
.h5{height:41.453438pt;}
.h3{height:41.751023pt;}
.hd{height:42.051823pt;}
.h14{height:43.474983pt;}
.h9{height:45.059822pt;}
.h1{height:48.847217pt;}
.h6{height:62.626535pt;}
.h17{height:78.979808pt;}
.h16{height:110.870996pt;}
.h0{height:1056.000000pt;}
.wa{width:4.960000pt;}
.w16{width:6.400000pt;}
.w2{width:6.880000pt;}
.w4{width:7.040000pt;}
.w25{width:7.200000pt;}
.w3{width:7.520000pt;}
.w21{width:30.080000pt;}
.w1e{width:46.880000pt;}
.wc{width:53.440000pt;}
.w11{width:54.400000pt;}
.w28{width:56.960000pt;}
.we{width:59.040000pt;}
.w26{width:61.120000pt;}
.w22{width:67.680000pt;}
.w17{width:69.440000pt;}
.w9{width:76.000000pt;}
.w20{width:76.480000pt;}
.wb{width:80.000000pt;}
.wd{width:80.160000pt;}
.w14{width:85.280000pt;}
.w8{width:93.600000pt;}
.w13{width:100.640000pt;}
.w10{width:101.600000pt;}
.w19{width:105.760000pt;}
.w1b{width:109.120000pt;}
.w18{width:111.680000pt;}
.w27{width:113.280000pt;}
.w1f{width:116.160000pt;}
.w23{width:117.760000pt;}
.w7{width:120.000000pt;}
.w1d{width:124.960000pt;}
.w1a{width:128.640000pt;}
.wf{width:131.680000pt;}
.w12{width:133.280000pt;}
.w1c{width:140.320000pt;}
.w6{width:141.600000pt;}
.w5{width:143.680000pt;}
.w15{width:158.720000pt;}
.w24{width:160.800000pt;}
.w1{width:405.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:72.479977pt;}
.x5{left:79.679968pt;}
.x38{left:81.599967pt;}
.x40{left:84.959966pt;}
.x27{left:91.999963pt;}
.x1{left:101.119960pt;}
.x19{left:102.239988pt;}
.x3a{left:103.519959pt;}
.x15{left:104.479958pt;}
.x57{left:115.359976pt;}
.x1e{left:119.518608pt;}
.x39{left:122.239951pt;}
.x3b{left:123.839950pt;}
.x1f{left:126.239950pt;}
.x3{left:128.639949pt;}
.x51{left:152.640000pt;}
.x45{left:154.240000pt;}
.x3c{left:167.360000pt;}
.x32{left:172.160000pt;}
.x20{left:180.640000pt;}
.x2d{left:185.600000pt;}
.x34{left:193.600000pt;}
.x52{left:202.720000pt;}
.x9{left:203.839918pt;}
.x7{left:213.279912pt;}
.x6{left:218.719913pt;}
.x41{left:219.680095pt;}
.x3d{left:224.319910pt;}
.x21{left:228.959908pt;}
.x1b{left:245.279638pt;}
.x1d{left:257.119496pt;}
.x11{left:261.760436pt;}
.x4c{left:266.560000pt;}
.x3e{left:281.599887pt;}
.x35{left:282.880000pt;}
.x18{left:287.679529pt;}
.x4e{left:296.160000pt;}
.x43{left:304.800000pt;}
.x46{left:331.360000pt;}
.x4d{left:335.840000pt;}
.x49{left:360.000000pt;}
.x8{left:366.079854pt;}
.x28{left:372.160000pt;}
.x53{left:380.480000pt;}
.x22{left:392.160000pt;}
.x42{left:394.720180pt;}
.x29{left:406.239838pt;}
.xb{left:407.519837pt;}
.x59{left:413.919018pt;}
.x23{left:419.359832pt;}
.xf{left:421.120129pt;}
.x4f{left:424.800000pt;}
.x54{left:455.840000pt;}
.x58{left:456.798995pt;}
.x2e{left:482.080000pt;}
.xc{left:484.640000pt;}
.x2f{left:487.040000pt;}
.x47{left:500.480000pt;}
.xd{left:517.279793pt;}
.x4a{left:519.680000pt;}
.x2c{left:526.080000pt;}
.x36{left:539.520000pt;}
.x2a{left:547.680000pt;}
.x44{left:553.440000pt;}
.x24{left:556.960000pt;}
.x30{left:567.040000pt;}
.xa{left:578.079769pt;}
.x2b{left:583.839766pt;}
.x25{left:597.599761pt;}
.x17{left:601.599759pt;}
.x10{left:604.639758pt;}
.x50{left:613.760000pt;}
.x3f{left:620.959752pt;}
.x56{left:623.840000pt;}
.x1c{left:627.999749pt;}
.x1a{left:631.519747pt;}
.x31{left:637.280000pt;}
.x14{left:650.399740pt;}
.x4b{left:672.640000pt;}
.x55{left:680.160000pt;}
.x37{left:684.480000pt;}
.x4{left:686.399725pt;}
.x13{left:687.359725pt;}
.x48{left:695.520000pt;}
.x26{left:709.280000pt;}
.x16{left:710.719716pt;}
.x33{left:715.360000pt;}
.x2{left:718.239713pt;}
.x12{left:724.959710pt;}
.xe{left:735.679706pt;}
}




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