
    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_0bd719f74b61f48963618891.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_0d60f4ad398e464c228cd9ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_373fb1ecce9d4c484bdecd80.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_d4537d0d52176bd158cfbce2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ef1262d19780d5957c8b33c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960938;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_098f788de5f2079f9e897428.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896484;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_115eb1cccb07b35687355d36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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;}
.m7{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:34.559986px;}
.v2{vertical-align:52.559979px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.010620px;}
.ls2{letter-spacing:0.021238px;}
.ls4{letter-spacing:0.021282px;}
.ls0{letter-spacing:0.096738px;}
.ls3{letter-spacing:608.323677px;}
.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:-42.324463px;}
.ws4{word-spacing:-41.856721px;}
.ws0{word-spacing:-23.939990px;}
.ws1{word-spacing:-21.059992px;}
.ws10{word-spacing:-18.021275px;}
.ws2{word-spacing:-17.999993px;}
.ws7{word-spacing:-16.559993px;}
.ws3{word-spacing:-15.839994px;}
.wsa{word-spacing:-14.939994px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:77.835943px;}
.wsc{word-spacing:107.193555px;}
.wsd{word-spacing:249.120280px;}
.wse{word-spacing:250.561448px;}
.ws9{word-spacing:264.249920px;}
.wsf{word-spacing:475.951374px;}
.wsb{word-spacing:482.435535px;}
._1c{margin-left:-9.289228px;}
._10{margin-left:-7.855653px;}
._16{margin-left:-6.839377px;}
._5{margin-left:-5.089059px;}
._2{margin-left:-3.133883px;}
._a{margin-left:-2.104818px;}
._1{margin-left:-1.082514px;}
._0{width:1.108728px;}
._9{width:2.206703px;}
._7{width:3.772344px;}
._8{width:4.992436px;}
._d{width:6.744498px;}
._e{width:7.783597px;}
._c{width:9.708471px;}
._b{width:11.094504px;}
._4{width:13.089343px;}
._3{width:14.450968px;}
._6{width:15.764963px;}
._17{width:16.907529px;}
._14{width:19.398357px;}
._13{width:20.750608px;}
._15{width:21.804020px;}
._1e{width:23.064255px;}
._1d{width:24.517944px;}
._f{width:26.606109px;}
._12{width:27.912574px;}
._11{width:28.950343px;}
._24{width:30.255027px;}
._30{width:38.414331px;}
._1f{width:40.239896px;}
._2d{width:43.244017px;}
._29{width:53.148508px;}
._2c{width:74.914552px;}
._2b{width:76.119972px;}
._26{width:92.456117px;}
._25{width:93.598454px;}
._2e{width:94.613911px;}
._23{width:99.621748px;}
._2a{width:107.371660px;}
._20{width:114.004436px;}
._1b{width:121.745113px;}
._28{width:161.229196px;}
._27{width:162.244562px;}
._2f{width:187.580852px;}
._22{width:199.780679px;}
._21{width:226.995302px;}
._1a{width:249.346123px;}
._18{width:337.603464px;}
._19{width:364.439756px;}
.fc2{color:rgb(179,179,179);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.559986px;}
.fs9{font-size:41.759983px;}
.fs8{font-size:45.359982px;}
.fsd{font-size:48.239981px;}
.fsc{font-size:53.999978px;}
.fs1{font-size:55.439978px;}
.fs7{font-size:59.759976px;}
.fs5{font-size:63.359975px;}
.fsa{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:77.759969px;}
.fs2{font-size:84.239966px;}
.fs0{font-size:95.759962px;}
.fsb{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y26{bottom:56.820277px;}
.y25{bottom:74.460270px;}
.y24{bottom:87.240265px;}
.y23{bottom:114.600254px;}
.y13e{bottom:115.319954px;}
.y76{bottom:117.119953px;}
.y55{bottom:118.019953px;}
.y112{bottom:125.579950px;}
.y102{bottom:127.559949px;}
.yf2{bottom:129.359948px;}
.y22{bottom:132.060247px;}
.y13d{bottom:136.019946px;}
.y74{bottom:137.819945px;}
.y21{bottom:138.000245px;}
.y54{bottom:138.719945px;}
.y81{bottom:139.259944px;}
.y111{bottom:146.279941px;}
.y14a{bottom:146.280241px;}
.y150{bottom:147.719941px;}
.y101{bottom:148.259941px;}
.yf1{bottom:150.059940px;}
.y13c{bottom:156.719937px;}
.y73{bottom:158.519937px;}
.y20{bottom:159.959936px;}
.y7e{bottom:161.219936px;}
.y80{bottom:165.719934px;}
.y14f{bottom:166.799933px;}
.y110{bottom:166.979933px;}
.y53{bottom:168.419933px;}
.y100{bottom:168.959932px;}
.yf0{bottom:170.759932px;}
.yc5{bottom:174.899930px;}
.y13b{bottom:177.419929px;}
.y72{bottom:179.219928px;}
.y1f{bottom:180.659928px;}
.y7f{bottom:182.999927px;}
.y14e{bottom:185.699926px;}
.y10f{bottom:187.679925px;}
.y52{bottom:189.119924px;}
.yff{bottom:189.659924px;}
.yef{bottom:191.459923px;}
.y13a{bottom:198.119921px;}
.y71{bottom:199.919920px;}
.y1e{bottom:201.359919px;}
.y14d{bottom:204.599918px;}
.yc3{bottom:205.139918px;}
.y10e{bottom:208.379917px;}
.y7d{bottom:209.639916px;}
.yfe{bottom:210.359916px;}
.yee{bottom:212.159915px;}
.y51{bottom:218.819912px;}
.y79{bottom:219.179912px;}
.y70{bottom:220.619912px;}
.y1d{bottom:222.059911px;}
.yc2{bottom:222.419911px;}
.y14c{bottom:223.679911px;}
.y7c{bottom:228.719909px;}
.y10d{bottom:229.079908px;}
.yfd{bottom:231.059908px;}
.yc4{bottom:231.419907px;}
.yed{bottom:232.859907px;}
.y77{bottom:238.259905px;}
.y11a{bottom:239.519904px;}
.ybf{bottom:240.059904px;}
.y6f{bottom:241.319903px;}
.y1c{bottom:242.759903px;}
.y7b{bottom:247.619901px;}
.yc1{bottom:248.699901px;}
.y10c{bottom:249.779900px;}
.yfc{bottom:251.759899px;}
.yec{bottom:253.559899px;}
.y78{bottom:257.159897px;}
.y50{bottom:260.219896px;}
.y6e{bottom:262.019895px;}
.y1b{bottom:263.459895px;}
.y14b{bottom:263.639895px;}
.y7a{bottom:266.699893px;}
.y10b{bottom:270.479892px;}
.yfb{bottom:272.459891px;}
.yeb{bottom:274.259890px;}
.yc0{bottom:275.159890px;}
.y4f{bottom:280.919888px;}
.y139{bottom:282.719887px;}
.y1a{bottom:284.159886px;}
.y6d{bottom:291.179884px;}
.yfa{bottom:293.159883px;}
.ybd{bottom:301.439879px;}
.y4e{bottom:301.619879px;}
.y138{bottom:303.419879px;}
.y19{bottom:304.859878px;}
.yea{bottom:305.399878px;}
.y6c{bottom:311.879875px;}
.yf9{bottom:313.859874px;}
.ybc{bottom:314.759874px;}
.y4d{bottom:322.319871px;}
.y137{bottom:324.119870px;}
.y18{bottom:325.559870px;}
.ye9{bottom:326.099870px;}
.ybe{bottom:327.899869px;}
.y75{bottom:332.579867px;}
.yf8{bottom:334.559866px;}
.y4c{bottom:343.019863px;}
.y136{bottom:344.819862px;}
.y17{bottom:346.259861px;}
.ye8{bottom:346.799861px;}
.y6b{bottom:353.279859px;}
.ybb{bottom:354.179858px;}
.y4b{bottom:363.719855px;}
.y135{bottom:365.519854px;}
.y16{bottom:366.959853px;}
.ye7{bottom:367.499853px;}
.yba{bottom:371.459851px;}
.y6a{bottom:373.979850px;}
.y4a{bottom:384.419846px;}
.yb7{bottom:384.779846px;}
.y134{bottom:386.219846px;}
.y15{bottom:387.659845px;}
.ye6{bottom:388.199845px;}
.y69{bottom:394.679842px;}
.yb9{bottom:397.919841px;}
.y49{bottom:405.119838px;}
.y149{bottom:406.919837px;}
.ye5{bottom:408.899836px;}
.yb8{bottom:415.199834px;}
.y68{bottom:415.379834px;}
.y133{bottom:417.359833px;}
.y48{bottom:425.819830px;}
.y148{bottom:427.619829px;}
.y67{bottom:436.079826px;}
.y132{bottom:438.059825px;}
.ye4{bottom:439.859824px;}
.yb3{bottom:441.659823px;}
.y47{bottom:446.519821px;}
.y14{bottom:446.699821px;}
.y147{bottom:448.319821px;}
.y66{bottom:456.779817px;}
.y131{bottom:458.759816px;}
.yb2{bottom:458.939816px;}
.ye3{bottom:460.559816px;}
.y13{bottom:464.879814px;}
.y46{bottom:467.219813px;}
.y146{bottom:469.019812px;}
.y65{bottom:477.479809px;}
.y130{bottom:479.459808px;}
.yb6{bottom:480.719808px;}
.ye2{bottom:481.259807px;}
.y12{bottom:483.059807px;}
.yb1{bottom:485.219806px;}
.y45{bottom:487.919805px;}
.y145{bottom:489.719804px;}
.yad{bottom:493.859802px;}
.y64{bottom:498.179801px;}
.y12f{bottom:500.159800px;}
.y11{bottom:501.059800px;}
.ye1{bottom:501.959799px;}
.yb0{bottom:502.499799px;}
.yb5{bottom:506.999797px;}
.y44{bottom:508.619797px;}
.y144{bottom:510.419796px;}
.y63{bottom:518.879792px;}
.ye0{bottom:522.659791px;}
.yaf{bottom:528.959788px;}
.y43{bottom:529.319788px;}
.y12e{bottom:531.119788px;}
.yb4{bottom:533.459787px;}
.y10{bottom:536.699785px;}
.y62{bottom:539.579784px;}
.ydf{bottom:543.359783px;}
.yae{bottom:546.239782px;}
.y42{bottom:550.019780px;}
.y12d{bottom:551.819779px;}
.yf{bottom:554.699778px;}
.y61{bottom:560.279776px;}
.yde{bottom:564.059774px;}
.y41{bottom:570.719772px;}
.y143{bottom:572.519771px;}
.yaa{bottom:572.699771px;}
.y60{bottom:580.979768px;}
.y12c{bottom:582.959767px;}
.ydd{bottom:584.759766px;}
.ya9{bottom:589.979764px;}
.y40{bottom:591.419763px;}
.y142{bottom:593.219763px;}
.yac{bottom:598.619761px;}
.y5f{bottom:601.679759px;}
.y12b{bottom:603.659759px;}
.ydc{bottom:605.459758px;}
.ya8{bottom:607.259757px;}
.ye{bottom:611.399755px;}
.ya5{bottom:611.759755px;}
.y3f{bottom:612.119755px;}
.y141{bottom:613.919754px;}
.y5e{bottom:622.379751px;}
.y12a{bottom:624.359750px;}
.yab{bottom:624.899750px;}
.yd{bottom:632.099747px;}
.y3e{bottom:632.819747px;}
.ya7{bottom:633.539747px;}
.y140{bottom:634.619746px;}
.ydb{bottom:636.599745px;}
.y5d{bottom:643.079743px;}
.y129{bottom:645.059742px;}
.ya6{bottom:650.999740px;}
.yc{bottom:653.159739px;}
.y3d{bottom:653.519739px;}
.y13f{bottom:655.319738px;}
.yda{bottom:657.299737px;}
.y5c{bottom:663.779734px;}
.y3c{bottom:674.219730px;}
.y128{bottom:676.019730px;}
.ya0{bottom:677.279729px;}
.yd9{bottom:677.999729px;}
.y5b{bottom:684.479726px;}
.y10a{bottom:694.919722px;}
.yb{bottom:695.999722px;}
.y127{bottom:696.719721px;}
.yd8{bottom:698.699721px;}
.y9f{bottom:703.559719px;}
.y3b{bottom:705.179718px;}
.yf7{bottom:715.619714px;}
.ya{bottom:716.699713px;}
.y126{bottom:717.419713px;}
.yd7{bottom:719.399712px;}
.y9e{bottom:721.019712px;}
.y5a{bottom:725.879710px;}
.yf6{bottom:736.319705px;}
.y9{bottom:737.579705px;}
.y125{bottom:738.119705px;}
.y9d{bottom:738.299705px;}
.yd6{bottom:740.099704px;}
.y59{bottom:746.579701px;}
.ya4{bottom:746.939701px;}
.y9c{bottom:755.579698px;}
.yf5{bottom:757.019697px;}
.y124{bottom:758.819696px;}
.y97{bottom:760.079696px;}
.ya2{bottom:764.579694px;}
.y3a{bottom:767.279693px;}
.yd5{bottom:771.059692px;}
.y9b{bottom:772.859691px;}
.ya3{bottom:773.399691px;}
.yf4{bottom:777.719689px;}
.y123{bottom:779.519688px;}
.y8{bottom:780.419688px;}
.ya1{bottom:781.859687px;}
.y39{bottom:787.979685px;}
.yd4{bottom:791.759683px;}
.yf3{bottom:798.419681px;}
.y9a{bottom:799.319680px;}
.y122{bottom:800.219680px;}
.y7{bottom:801.119680px;}
.y58{bottom:808.679677px;}
.yd3{bottom:812.459675px;}
.y99{bottom:816.599673px;}
.y109{bottom:819.119672px;}
.y121{bottom:820.919672px;}
.y6{bottom:822.179671px;}
.y38{bottom:829.379668px;}
.yd2{bottom:833.159667px;}
.y119{bottom:839.819664px;}
.y120{bottom:841.619663px;}
.y98{bottom:842.879663px;}
.y37{bottom:850.079660px;}
.yd1{bottom:853.859658px;}
.y118{bottom:860.519656px;}
.y11f{bottom:862.319655px;}
.y96{bottom:869.339652px;}
.y36{bottom:870.779652px;}
.yd0{bottom:874.559650px;}
.y117{bottom:881.219648px;}
.y11e{bottom:883.019647px;}
.y94{bottom:886.619645px;}
.y5{bottom:889.679644px;}
.y35{bottom:891.479643px;}
.ycf{bottom:895.259642px;}
.y116{bottom:901.919639px;}
.y11d{bottom:903.719639px;}
.y95{bottom:903.899638px;}
.y34{bottom:912.179635px;}
.y4{bottom:913.799634px;}
.yce{bottom:915.959634px;}
.y115{bottom:922.619631px;}
.y11c{bottom:924.419630px;}
.y91{bottom:930.359628px;}
.y33{bottom:932.879627px;}
.y114{bottom:943.319623px;}
.y93{bottom:943.499623px;}
.ycd{bottom:945.119622px;}
.y90{bottom:947.639621px;}
.y32{bottom:953.579619px;}
.y8d{bottom:960.959616px;}
.y113{bottom:964.019614px;}
.y11b{bottom:965.819614px;}
.y2{bottom:966.359613px;}
.y159{bottom:970.499612px;}
.y8f{bottom:974.099610px;}
.y31{bottom:974.279610px;}
.y3{bottom:976.079610px;}
.y92{bottom:978.239609px;}
.y108{bottom:984.719606px;}
.ycc{bottom:986.519605px;}
.y158{bottom:989.579604px;}
.y8e{bottom:991.379603px;}
.y1{bottom:993.899602px;}
.y30{bottom:994.979602px;}
.y107{bottom:1005.419598px;}
.ycb{bottom:1007.219597px;}
.y157{bottom:1008.479597px;}
.y2f{bottom:1015.679594px;}
.y8a{bottom:1017.659593px;}
.y8c{bottom:1022.159591px;}
.y106{bottom:1026.119590px;}
.y156{bottom:1027.559589px;}
.yca{bottom:1027.919589px;}
.y89{bottom:1030.979588px;}
.y2e{bottom:1036.379585px;}
.y8b{bottom:1039.619584px;}
.y105{bottom:1046.819581px;}
.yc9{bottom:1048.619581px;}
.y57{bottom:1057.079577px;}
.y155{bottom:1065.359574px;}
.y104{bottom:1067.519573px;}
.yc8{bottom:1069.319572px;}
.y88{bottom:1071.299571px;}
.y2d{bottom:1077.779569px;}
.y29{bottom:1080.299568px;}
.y2a{bottom:1081.019568px;}
.y154{bottom:1084.439566px;}
.y103{bottom:1088.219565px;}
.yc7{bottom:1090.019564px;}
.y28{bottom:1097.399561px;}
.y85{bottom:1098.299561px;}
.y2c{bottom:1098.479561px;}
.y153{bottom:1103.339559px;}
.yc6{bottom:1110.719556px;}
.y87{bottom:1111.439555px;}
.y84{bottom:1115.579554px;}
.y2b{bottom:1119.179552px;}
.y82{bottom:1120.079552px;}
.y27{bottom:1120.259552px;}
.y152{bottom:1122.419551px;}
.y86{bottom:1128.899548px;}
.y56{bottom:1139.879544px;}
.y151{bottom:1141.319543px;}
.y83{bottom:1141.859543px;}
.h9{height:30.758388px;}
.hc{height:31.319987px;}
.hb{height:34.462955px;}
.h11{height:36.651079px;}
.h2{height:39.528704px;}
.h10{height:41.027327px;}
.h7{height:45.175662px;}
.h12{height:47.229101px;}
.h16{height:48.059981px;}
.hf{height:50.326855px;}
.h8{height:51.335979px;}
.ha{height:53.186379px;}
.h4{height:55.442858px;}
.h6{height:56.390377px;}
.h3{height:57.788617px;}
.hd{height:58.953576px;}
.h5{height:64.079974px;}
.h1{height:68.276853px;}
.h13{height:87.746365px;}
.h15{height:88.466365px;}
.he{height:91.354182px;}
.h14{height:105.746358px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1c{left:126.541149px;}
.x1{left:127.799949px;}
.x3{left:132.119947px;}
.xa{left:138.779944px;}
.x1d{left:150.300613px;}
.x7{left:163.799982px;}
.x19{left:169.736407px;}
.x14{left:173.519931px;}
.x4{left:178.559929px;}
.x1b{left:212.761058px;}
.x2{left:249.839900px;}
.x9{left:309.422156px;}
.xb{left:328.680240px;}
.xc{left:333.360243px;}
.xd{left:351.360265px;}
.x1a{left:389.699844px;}
.x1e{left:428.579829px;}
.x8{left:438.299825px;}
.x5{left:442.439823px;}
.x15{left:466.739516px;}
.x10{left:468.180263px;}
.xf{left:487.080197px;}
.xe{left:500.040192px;}
.x6{left:511.199796px;}
.x12{left:635.039505px;}
.x17{left:649.256808px;}
.x11{left:654.839500px;}
.x13{left:661.319565px;}
.x16{left:668.876297px;}
.x18{left:672.656223px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.719988pt;}
.v2{vertical-align:46.719981pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.009440pt;}
.ls2{letter-spacing:0.018878pt;}
.ls4{letter-spacing:0.018917pt;}
.ls0{letter-spacing:0.085989pt;}
.ls3{letter-spacing:540.732157pt;}
.ws5{word-spacing:-37.621745pt;}
.ws4{word-spacing:-37.205974pt;}
.ws0{word-spacing:-21.279991pt;}
.ws1{word-spacing:-18.719993pt;}
.ws10{word-spacing:-16.018911pt;}
.ws2{word-spacing:-15.999994pt;}
.ws7{word-spacing:-14.719994pt;}
.ws3{word-spacing:-14.079994pt;}
.wsa{word-spacing:-13.279995pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:69.187505pt;}
.wsc{word-spacing:95.283160pt;}
.wsd{word-spacing:221.440249pt;}
.wse{word-spacing:222.721287pt;}
.ws9{word-spacing:234.888817pt;}
.wsf{word-spacing:423.067888pt;}
.wsb{word-spacing:428.831587pt;}
._1c{margin-left:-8.257091pt;}
._10{margin-left:-6.982803pt;}
._16{margin-left:-6.079446pt;}
._5{margin-left:-4.523608pt;}
._2{margin-left:-2.785673pt;}
._a{margin-left:-1.870950pt;}
._1{margin-left:-0.962235pt;}
._0{width:0.985536pt;}
._9{width:1.961514pt;}
._7{width:3.353194pt;}
._8{width:4.437721pt;}
._d{width:5.995110pt;}
._e{width:6.918753pt;}
._c{width:8.629752pt;}
._b{width:9.861782pt;}
._4{width:11.634972pt;}
._3{width:12.845305pt;}
._6{width:14.013300pt;}
._17{width:15.028914pt;}
._14{width:17.242984pt;}
._13{width:18.444985pt;}
._15{width:19.381351pt;}
._1e{width:20.501560pt;}
._1d{width:21.793728pt;}
._f{width:23.649874pt;}
._12{width:24.811177pt;}
._11{width:25.733639pt;}
._24{width:26.893358pt;}
._30{width:34.146072pt;}
._1f{width:35.768797pt;}
._2d{width:38.439126pt;}
._29{width:47.243119pt;}
._2c{width:66.590713pt;}
._2b{width:67.662197pt;}
._26{width:82.183215pt;}
._25{width:83.198626pt;}
._2e{width:84.101255pt;}
._23{width:88.552665pt;}
._2a{width:95.441476pt;}
._20{width:101.337277pt;}
._1b{width:108.217878pt;}
._28{width:143.314841pt;}
._27{width:144.217388pt;}
._2f{width:166.738535pt;}
._22{width:177.582826pt;}
._21{width:201.773602pt;}
._1a{width:221.640999pt;}
._18{width:300.091968pt;}
._19{width:323.946449pt;}
.fs6{font-size:30.719988pt;}
.fs9{font-size:37.119985pt;}
.fs8{font-size:40.319984pt;}
.fsd{font-size:42.879983pt;}
.fsc{font-size:47.999981pt;}
.fs1{font-size:49.279980pt;}
.fs7{font-size:53.119979pt;}
.fs5{font-size:56.319977pt;}
.fsa{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:69.119972pt;}
.fs2{font-size:74.879970pt;}
.fs0{font-size:85.119966pt;}
.fsb{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:50.506913pt;}
.y25{bottom:66.186907pt;}
.y24{bottom:77.546902pt;}
.y23{bottom:101.866893pt;}
.y13e{bottom:102.506626pt;}
.y76{bottom:104.106625pt;}
.y55{bottom:104.906625pt;}
.y112{bottom:111.626622pt;}
.y102{bottom:113.386621pt;}
.yf2{bottom:114.986621pt;}
.y22{bottom:117.386886pt;}
.y13d{bottom:120.906618pt;}
.y74{bottom:122.506618pt;}
.y21{bottom:122.666884pt;}
.y54{bottom:123.306617pt;}
.y81{bottom:123.786617pt;}
.y111{bottom:130.026615pt;}
.y14a{bottom:130.026881pt;}
.y150{bottom:131.306614pt;}
.y101{bottom:131.786614pt;}
.yf1{bottom:133.386613pt;}
.y13c{bottom:139.306611pt;}
.y73{bottom:140.906610pt;}
.y20{bottom:142.186610pt;}
.y7e{bottom:143.306609pt;}
.y80{bottom:147.306608pt;}
.y14f{bottom:148.266607pt;}
.y110{bottom:148.426607pt;}
.y53{bottom:149.706607pt;}
.y100{bottom:150.186607pt;}
.yf0{bottom:151.786606pt;}
.yc5{bottom:155.466604pt;}
.y13b{bottom:157.706604pt;}
.y72{bottom:159.306603pt;}
.y1f{bottom:160.586602pt;}
.y7f{bottom:162.666602pt;}
.y14e{bottom:165.066601pt;}
.y10f{bottom:166.826600pt;}
.y52{bottom:168.106599pt;}
.yff{bottom:168.586599pt;}
.yef{bottom:170.186599pt;}
.y13a{bottom:176.106596pt;}
.y71{bottom:177.706596pt;}
.y1e{bottom:178.986595pt;}
.y14d{bottom:181.866594pt;}
.yc3{bottom:182.346594pt;}
.y10e{bottom:185.226593pt;}
.y7d{bottom:186.346592pt;}
.yfe{bottom:186.986592pt;}
.yee{bottom:188.586591pt;}
.y51{bottom:194.506589pt;}
.y79{bottom:194.826589pt;}
.y70{bottom:196.106588pt;}
.y1d{bottom:197.386588pt;}
.yc2{bottom:197.706588pt;}
.y14c{bottom:198.826587pt;}
.y7c{bottom:203.306585pt;}
.y10d{bottom:203.626585pt;}
.yfd{bottom:205.386585pt;}
.yc4{bottom:205.706584pt;}
.yed{bottom:206.986584pt;}
.y77{bottom:211.786582pt;}
.y11a{bottom:212.906582pt;}
.ybf{bottom:213.386581pt;}
.y6f{bottom:214.506581pt;}
.y1c{bottom:215.786580pt;}
.y7b{bottom:220.106579pt;}
.yc1{bottom:221.066578pt;}
.y10c{bottom:222.026578pt;}
.yfc{bottom:223.786577pt;}
.yec{bottom:225.386577pt;}
.y78{bottom:228.586575pt;}
.y50{bottom:231.306574pt;}
.y6e{bottom:232.906574pt;}
.y1b{bottom:234.186573pt;}
.y14b{bottom:234.346573pt;}
.y7a{bottom:237.066572pt;}
.y10b{bottom:240.426570pt;}
.yfb{bottom:242.186570pt;}
.yeb{bottom:243.786569pt;}
.yc0{bottom:244.586569pt;}
.y4f{bottom:249.706567pt;}
.y139{bottom:251.306566pt;}
.y1a{bottom:252.586566pt;}
.y6d{bottom:258.826563pt;}
.yfa{bottom:260.586562pt;}
.ybd{bottom:267.946559pt;}
.y4e{bottom:268.106559pt;}
.y138{bottom:269.706559pt;}
.y19{bottom:270.986558pt;}
.yea{bottom:271.466558pt;}
.y6c{bottom:277.226556pt;}
.yf9{bottom:278.986555pt;}
.ybc{bottom:279.786555pt;}
.y4d{bottom:286.506552pt;}
.y137{bottom:288.106551pt;}
.y18{bottom:289.386551pt;}
.ye9{bottom:289.866551pt;}
.ybe{bottom:291.466550pt;}
.y75{bottom:295.626548pt;}
.yf8{bottom:297.386548pt;}
.y4c{bottom:304.906545pt;}
.y136{bottom:306.506544pt;}
.y17{bottom:307.786544pt;}
.ye8{bottom:308.266543pt;}
.y6b{bottom:314.026541pt;}
.ybb{bottom:314.826541pt;}
.y4b{bottom:323.306537pt;}
.y135{bottom:324.906537pt;}
.y16{bottom:326.186536pt;}
.ye7{bottom:326.666536pt;}
.yba{bottom:330.186535pt;}
.y6a{bottom:332.426534pt;}
.y4a{bottom:341.706530pt;}
.yb7{bottom:342.026530pt;}
.y134{bottom:343.306529pt;}
.y15{bottom:344.586529pt;}
.ye6{bottom:345.066529pt;}
.y69{bottom:350.826526pt;}
.yb9{bottom:353.706525pt;}
.y49{bottom:360.106523pt;}
.y149{bottom:361.706522pt;}
.ye5{bottom:363.466521pt;}
.yb8{bottom:369.066519pt;}
.y68{bottom:369.226519pt;}
.y133{bottom:370.986518pt;}
.y48{bottom:378.506515pt;}
.y148{bottom:380.106515pt;}
.y67{bottom:387.626512pt;}
.y132{bottom:389.386511pt;}
.ye4{bottom:390.986510pt;}
.yb3{bottom:392.586510pt;}
.y47{bottom:396.906508pt;}
.y14{bottom:397.066508pt;}
.y147{bottom:398.506507pt;}
.y66{bottom:406.026504pt;}
.y131{bottom:407.786504pt;}
.yb2{bottom:407.946503pt;}
.ye3{bottom:409.386503pt;}
.y13{bottom:413.226501pt;}
.y46{bottom:415.306501pt;}
.y146{bottom:416.906500pt;}
.y65{bottom:424.426497pt;}
.y130{bottom:426.186496pt;}
.yb6{bottom:427.306496pt;}
.ye2{bottom:427.786496pt;}
.y12{bottom:429.386495pt;}
.yb1{bottom:431.306494pt;}
.y45{bottom:433.706493pt;}
.y145{bottom:435.306493pt;}
.yad{bottom:438.986491pt;}
.y64{bottom:442.826490pt;}
.y12f{bottom:444.586489pt;}
.y11{bottom:445.386489pt;}
.ye1{bottom:446.186488pt;}
.yb0{bottom:446.666488pt;}
.yb5{bottom:450.666486pt;}
.y44{bottom:452.106486pt;}
.y144{bottom:453.706485pt;}
.y63{bottom:461.226482pt;}
.ye0{bottom:464.586481pt;}
.yaf{bottom:470.186479pt;}
.y43{bottom:470.506478pt;}
.y12e{bottom:472.106478pt;}
.yb4{bottom:474.186477pt;}
.y10{bottom:477.066476pt;}
.y62{bottom:479.626475pt;}
.ydf{bottom:482.986473pt;}
.yae{bottom:485.546472pt;}
.y42{bottom:488.906471pt;}
.y12d{bottom:490.506470pt;}
.yf{bottom:493.066469pt;}
.y61{bottom:498.026467pt;}
.yde{bottom:501.386466pt;}
.y41{bottom:507.306464pt;}
.y143{bottom:508.906463pt;}
.yaa{bottom:509.066463pt;}
.y60{bottom:516.426460pt;}
.y12c{bottom:518.186459pt;}
.ydd{bottom:519.786459pt;}
.ya9{bottom:524.426457pt;}
.y40{bottom:525.706456pt;}
.y142{bottom:527.306456pt;}
.yac{bottom:532.106454pt;}
.y5f{bottom:534.826453pt;}
.y12b{bottom:536.586452pt;}
.ydc{bottom:538.186451pt;}
.ya8{bottom:539.786451pt;}
.ye{bottom:543.466449pt;}
.ya5{bottom:543.786449pt;}
.y3f{bottom:544.106449pt;}
.y141{bottom:545.706448pt;}
.y5e{bottom:553.226445pt;}
.y12a{bottom:554.986445pt;}
.yab{bottom:555.466444pt;}
.yd{bottom:561.866442pt;}
.y3e{bottom:562.506442pt;}
.ya7{bottom:563.146441pt;}
.y140{bottom:564.106441pt;}
.ydb{bottom:565.866440pt;}
.y5d{bottom:571.626438pt;}
.y129{bottom:573.386437pt;}
.ya6{bottom:578.666435pt;}
.yc{bottom:580.586434pt;}
.y3d{bottom:580.906434pt;}
.y13f{bottom:582.506434pt;}
.yda{bottom:584.266433pt;}
.y5c{bottom:590.026431pt;}
.y3c{bottom:599.306427pt;}
.y128{bottom:600.906426pt;}
.ya0{bottom:602.026426pt;}
.yd9{bottom:602.666426pt;}
.y5b{bottom:608.426423pt;}
.y10a{bottom:617.706420pt;}
.yb{bottom:618.666419pt;}
.y127{bottom:619.306419pt;}
.yd8{bottom:621.066418pt;}
.y9f{bottom:625.386417pt;}
.y3b{bottom:626.826416pt;}
.yf7{bottom:636.106412pt;}
.ya{bottom:637.066412pt;}
.y126{bottom:637.706412pt;}
.yd7{bottom:639.466411pt;}
.y9e{bottom:640.906410pt;}
.y5a{bottom:645.226409pt;}
.yf6{bottom:654.506405pt;}
.y9{bottom:655.626404pt;}
.y125{bottom:656.106404pt;}
.y9d{bottom:656.266404pt;}
.yd6{bottom:657.866404pt;}
.y59{bottom:663.626401pt;}
.ya4{bottom:663.946401pt;}
.y9c{bottom:671.626398pt;}
.yf5{bottom:672.906398pt;}
.y124{bottom:674.506397pt;}
.y97{bottom:675.626396pt;}
.ya2{bottom:679.626395pt;}
.y3a{bottom:682.026394pt;}
.yd5{bottom:685.386393pt;}
.y9b{bottom:686.986392pt;}
.ya3{bottom:687.466392pt;}
.yf4{bottom:691.306390pt;}
.y123{bottom:692.906390pt;}
.y8{bottom:693.706389pt;}
.ya1{bottom:694.986389pt;}
.y39{bottom:700.426386pt;}
.yd4{bottom:703.786385pt;}
.yf3{bottom:709.706383pt;}
.y9a{bottom:710.506382pt;}
.y122{bottom:711.306382pt;}
.y7{bottom:712.106382pt;}
.y58{bottom:718.826379pt;}
.yd3{bottom:722.186378pt;}
.y99{bottom:725.866376pt;}
.y109{bottom:728.106375pt;}
.y121{bottom:729.706375pt;}
.y6{bottom:730.826374pt;}
.y38{bottom:737.226372pt;}
.yd2{bottom:740.586370pt;}
.y119{bottom:746.506368pt;}
.y120{bottom:748.106367pt;}
.y98{bottom:749.226367pt;}
.y37{bottom:755.626364pt;}
.yd1{bottom:758.986363pt;}
.y118{bottom:764.906361pt;}
.y11f{bottom:766.506360pt;}
.y96{bottom:772.746358pt;}
.y36{bottom:774.026357pt;}
.yd0{bottom:777.386356pt;}
.y117{bottom:783.306353pt;}
.y11e{bottom:784.906353pt;}
.y94{bottom:788.106351pt;}
.y5{bottom:790.826350pt;}
.y35{bottom:792.426350pt;}
.ycf{bottom:795.786348pt;}
.y116{bottom:801.706346pt;}
.y11d{bottom:803.306345pt;}
.y95{bottom:803.466345pt;}
.y34{bottom:810.826342pt;}
.y4{bottom:812.266342pt;}
.yce{bottom:814.186341pt;}
.y115{bottom:820.106339pt;}
.y11c{bottom:821.706338pt;}
.y91{bottom:826.986336pt;}
.y33{bottom:829.226335pt;}
.y114{bottom:838.506331pt;}
.y93{bottom:838.666331pt;}
.ycd{bottom:840.106331pt;}
.y90{bottom:842.346330pt;}
.y32{bottom:847.626328pt;}
.y8d{bottom:854.186325pt;}
.y113{bottom:856.906324pt;}
.y11b{bottom:858.506323pt;}
.y2{bottom:858.986323pt;}
.y159{bottom:862.666322pt;}
.y8f{bottom:865.866320pt;}
.y31{bottom:866.026320pt;}
.y3{bottom:867.626320pt;}
.y92{bottom:869.546319pt;}
.y108{bottom:875.306317pt;}
.ycc{bottom:876.906316pt;}
.y158{bottom:879.626315pt;}
.y8e{bottom:881.226314pt;}
.y1{bottom:883.466313pt;}
.y30{bottom:884.426313pt;}
.y107{bottom:893.706309pt;}
.ycb{bottom:895.306309pt;}
.y157{bottom:896.426308pt;}
.y2f{bottom:902.826306pt;}
.y8a{bottom:904.586305pt;}
.y8c{bottom:908.586303pt;}
.y106{bottom:912.106302pt;}
.y156{bottom:913.386301pt;}
.yca{bottom:913.706301pt;}
.y89{bottom:916.426300pt;}
.y2e{bottom:921.226298pt;}
.y8b{bottom:924.106297pt;}
.y105{bottom:930.506294pt;}
.yc9{bottom:932.106294pt;}
.y57{bottom:939.626291pt;}
.y155{bottom:946.986288pt;}
.y104{bottom:948.906287pt;}
.yc8{bottom:950.506286pt;}
.y88{bottom:952.266286pt;}
.y2d{bottom:958.026283pt;}
.y29{bottom:960.266283pt;}
.y2a{bottom:960.906282pt;}
.y154{bottom:963.946281pt;}
.y103{bottom:967.306280pt;}
.yc7{bottom:968.906279pt;}
.y28{bottom:975.466276pt;}
.y85{bottom:976.266276pt;}
.y2c{bottom:976.426276pt;}
.y153{bottom:980.746274pt;}
.yc6{bottom:987.306272pt;}
.y87{bottom:987.946271pt;}
.y84{bottom:991.626270pt;}
.y2b{bottom:994.826269pt;}
.y82{bottom:995.626268pt;}
.y27{bottom:995.786268pt;}
.y152{bottom:997.706268pt;}
.y86{bottom:1003.466265pt;}
.y56{bottom:1013.226261pt;}
.y151{bottom:1014.506261pt;}
.y83{bottom:1014.986261pt;}
.h9{height:27.340789pt;}
.hc{height:27.839989pt;}
.hb{height:30.633738pt;}
.h11{height:32.578737pt;}
.h2{height:35.136626pt;}
.h10{height:36.468735pt;}
.h7{height:40.156144pt;}
.h12{height:41.981423pt;}
.h16{height:42.719983pt;}
.hf{height:44.734982pt;}
.h8{height:45.631982pt;}
.ha{height:47.276781pt;}
.h4{height:49.282540pt;}
.h6{height:50.124780pt;}
.h3{height:51.367659pt;}
.hd{height:52.403179pt;}
.h5{height:56.959977pt;}
.h1{height:60.690536pt;}
.h13{height:77.996769pt;}
.h15{height:78.636769pt;}
.he{height:81.203718pt;}
.h14{height:93.996762pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1c{left:112.481021pt;}
.x1{left:113.599955pt;}
.x3{left:117.439953pt;}
.xa{left:123.359951pt;}
.x1d{left:133.600545pt;}
.x7{left:145.599984pt;}
.x19{left:150.876806pt;}
.x14{left:154.239938pt;}
.x4{left:158.719937pt;}
.x1b{left:189.120941pt;}
.x2{left:222.079911pt;}
.x9{left:275.041916pt;}
.xb{left:292.160213pt;}
.xc{left:296.320216pt;}
.xd{left:312.320236pt;}
.x1a{left:346.399861pt;}
.x1e{left:380.959848pt;}
.x8{left:389.599844pt;}
.x5{left:393.279843pt;}
.x15{left:414.879570pt;}
.x10{left:416.160234pt;}
.xf{left:432.960175pt;}
.xe{left:444.480171pt;}
.x6{left:454.399818pt;}
.x12{left:564.479560pt;}
.x17{left:577.117163pt;}
.x11{left:582.079555pt;}
.x13{left:587.839613pt;}
.x16{left:594.556708pt;}
.x18{left:597.916643pt;}
}




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