
    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_8c5927c665cf9710b737e6e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_7af5da605ad4c32eea1f0328.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_07f69ac983a1a0f79e70afc7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923828;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_1f9d0a5abe6cf200fe474cc0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_7fe1635ecdfd490fac109494.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_2eb2a588179b7c36985614d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_e0588821234b68c59c543b39.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_1982256418a71591c90c6f4b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_c9671cf558f42466d98f16e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_2c895bc69ec8f3d12e6814df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_05f549e3dcd961fb7c7af6cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.896973;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_23a6508b61825c8c7ef11a16.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_8ebf5f31922f7f790a90d5e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_3ddcf3cf7356ab1a4c13924b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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:fff;src:url('chunks/assets/font_85e4d6ca6114c8016a5c4906.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_fe77aaf72d2349b5537319f6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973000;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff12;src:url('chunks/assets/font_49d1154b3016f8e07437ca90.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940000;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:ff13;src:url('chunks/assets/font_52e22e9c4a7ccffe045a8c49.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.949000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.239076,0.000000,-0.073093,0.239076,0,0);-ms-transform:matrix(0.239076,0.000000,-0.073093,0.239076,0,0);-webkit-transform:matrix(0.239076,0.000000,-0.073093,0.239076,0,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);}
.v1{vertical-align:-16.096200px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.432000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003929px;}
.ls1{letter-spacing:0.004529px;}
.ls3{letter-spacing:0.017107px;}
.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;}
}
.ws0{word-spacing:-45.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws12{word-spacing:-15.912000px;}
.ws5{word-spacing:-13.437074px;}
.ws11{word-spacing:-11.682839px;}
.wsc{word-spacing:-2.376000px;}
.ws9{word-spacing:-1.440000px;}
.ws10{word-spacing:-0.870026px;}
.wsa{word-spacing:-0.360000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.216000px;}
.ws13{word-spacing:0.576000px;}
.wse{word-spacing:2.376000px;}
.wsf{word-spacing:2.520000px;}
.wsd{word-spacing:8.784000px;}
.ws6{word-spacing:224.176802px;}
.ws4{word-spacing:411.087474px;}
.ws7{word-spacing:462.225692px;}
.ws3{word-spacing:539.174694px;}
.ws8{word-spacing:600.095585px;}
._1{margin-left:-1046.040000px;}
._a{margin-left:-541.192808px;}
._2{margin-left:-10.985400px;}
._d{margin-left:-9.352800px;}
._7{margin-left:-8.241600px;}
._b{margin-left:-7.192800px;}
._4{margin-left:-5.774400px;}
._6{margin-left:-4.737600px;}
._5{margin-left:-2.872800px;}
._0{margin-left:-1.752000px;}
._c{width:1.289729px;}
._3{width:4.346618px;}
._8{width:598.771502px;}
._9{width:978.248017px;}
.fc10{color:rgb(0,173,239);}
.fcf{color:rgb(255,0,0);}
.fce{color:rgb(0,104,55);}
.fcd{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fc9{color:rgb(35,31,32);}
.fc4{color:rgb(127,201,107);}
.fc1{color:rgb(242,84,178);}
.fc2{color:rgb(236,0,140);}
.fc3{color:rgb(66,178,60);}
.fc5{color:transparent;}
.fcb{color:rgb(239,63,57);}
.fc11{color:rgb(210,32,39);}
.fc6{color:rgb(236,28,36);}
.fc12{color:rgb(48,88,159);}
.fcc{color:rgb(237,186,158);}
.fc7{color:rgb(13,145,70);}
.fca{color:rgb(0,0,0);}
.fc8{color:rgb(67,117,186);}
.fs7{font-size:18.370200px;}
.fsc{font-size:28.179600px;}
.fs10{font-size:32.901600px;}
.fsa{font-size:33.502200px;}
.fs9{font-size:36.251400px;}
.fs8{font-size:36.547200px;}
.fs13{font-size:36.814800px;}
.fse{font-size:36.985200px;}
.fsd{font-size:39.481800px;}
.fs12{font-size:42.024600px;}
.fsf{font-size:46.062000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:48.334800px;}
.fs11{font-size:48.910200px;}
.fs14{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs3{font-size:102.000000px;}
.fs4{font-size:106.660521px;}
.fs2{font-size:114.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:2.670450px;}
.y1{bottom:45.263700px;}
.y5b{bottom:59.495100px;}
.y5c{bottom:68.173180px;}
.yf1{bottom:70.685100px;}
.y5d{bottom:77.838838px;}
.y4c{bottom:83.277750px;}
.y52{bottom:86.194915px;}
.y5e{bottom:88.670679px;}
.yf0{bottom:92.285100px;}
.ye8{bottom:92.819550px;}
.yb2{bottom:96.714900px;}
.y5f{bottom:98.367855px;}
.y38{bottom:100.882490px;}
.y2a{bottom:102.327600px;}
.y60{bottom:108.033513px;}
.yd6{bottom:112.619550px;}
.yef{bottom:113.885100px;}
.ye7{bottom:114.419550px;}
.y61{bottom:116.795642px;}
.y62{bottom:127.459384px;}
.yee{bottom:135.485100px;}
.y63{bottom:136.168983px;}
.y37{bottom:139.914900px;}
.y29{bottom:140.212501px;}
.y64{bottom:146.853737px;}
.y28{bottom:151.178550px;}
.y65{bottom:156.571926px;}
.yed{bottom:157.085100px;}
.ye6{bottom:157.619550px;}
.y27{bottom:162.054000px;}
.yd5{bottom:163.619550px;}
.y66{bottom:166.332139px;}
.y36{bottom:175.605750px;}
.y67{bottom:175.966279px;}
.ye5{bottom:179.219550px;}
.y68{bottom:184.738914px;}
.y51{bottom:187.781400px;}
.y26{bottom:189.075390px;}
.yd4{bottom:189.119550px;}
.y3b{bottom:189.971387px;}
.y4d{bottom:193.953900px;}
.y69{bottom:195.455187px;}
.y35{bottom:196.219248px;}
.y25{bottom:200.039550px;}
.ye4{bottom:200.819550px;}
.y6a{bottom:205.173376px;}
.yd3{bottom:214.619550px;}
.y6b{bottom:214.954602px;}
.y44{bottom:214.957071px;}
.y4e{bottom:214.957494px;}
.y105{bottom:218.687250px;}
.y24{bottom:220.332540px;}
.ye3{bottom:222.419550px;}
.y6c{bottom:223.538126px;}
.y4a{bottom:228.738909px;}
.y23{bottom:231.296700px;}
.y70{bottom:234.285918px;}
.y49{bottom:236.265150px;}
.y50{bottom:239.408400px;}
.y4b{bottom:240.043050px;}
.y104{bottom:240.287250px;}
.y4f{bottom:240.349200px;}
.y6d{bottom:244.098662px;}
.y31{bottom:253.214606px;}
.y2c{bottom:253.550790px;}
.y6e{bottom:253.785332px;}
.y6f{bottom:263.556051px;}
.y2b{bottom:263.601450px;}
.y30{bottom:264.178766px;}
.yd2{bottom:265.619550px;}
.y71{bottom:273.148166px;}
.y72{bottom:282.981923px;}
.y22{bottom:286.572000px;}
.ye2{bottom:287.219550px;}
.yd1{bottom:291.119550px;}
.y73{bottom:292.668593px;}
.y2f{bottom:302.343180px;}
.y74{bottom:302.407794px;}
.y103{bottom:305.087250px;}
.ye1{bottom:308.819550px;}
.y46{bottom:310.586850px;}
.y75{bottom:312.052440px;}
.y2e{bottom:313.307340px;}
.y21{bottom:313.760400px;}
.yd0{bottom:316.619550px;}
.y47{bottom:321.082500px;}
.y76{bottom:321.833665px;}
.y2d{bottom:324.271500px;}
.y45{bottom:325.634850px;}
.y3a{bottom:325.635087px;}
.y102{bottom:326.687250px;}
.ye0{bottom:330.419550px;}
.y77{bottom:330.438202px;}
.y20{bottom:338.146740px;}
.y78{bottom:341.259537px;}
.ycf{bottom:342.119550px;}
.y3d{bottom:346.640550px;}
.y43{bottom:346.996650px;}
.y101{bottom:348.287250px;}
.y1f{bottom:349.110900px;}
.y79{bottom:350.977726px;}
.y7a{bottom:360.611865px;}
.y42{bottom:364.663200px;}
.y3f{bottom:365.133450px;}
.y41{bottom:365.136729px;}
.y3c{bottom:365.656350px;}
.y7b{bottom:370.372078px;}
.ydf{bottom:373.619550px;}
.y7c{bottom:380.048243px;}
.y33{bottom:382.838388px;}
.y7d{bottom:389.734913px;}
.yce{bottom:393.119550px;}
.y32{bottom:393.802548px;}
.yde{bottom:395.219550px;}
.y111{bottom:397.217850px;}
.y7e{bottom:398.434005px;}
.y7f{bottom:409.223821px;}
.y110{bottom:415.217850px;}
.ydd{bottom:416.819550px;}
.ycd{bottom:418.619550px;}
.y80{bottom:418.973528px;}
.y81{bottom:428.691717px;}
.y34{bottom:433.200430px;}
.y10f{bottom:433.217850px;}
.y82{bottom:437.348785px;}
.y40{bottom:439.439400px;}
.ycc{bottom:444.119550px;}
.y4{bottom:444.198600px;}
.y1b{bottom:445.139400px;}
.y1e{bottom:446.550600px;}
.y83{bottom:447.949490px;}
.y1c{bottom:451.059197px;}
.y10e{bottom:451.217850px;}
.y1d{bottom:455.904337px;}
.y39{bottom:456.247800px;}
.y3e{bottom:457.316100px;}
.y84{bottom:457.793753px;}
.ydc{bottom:460.019550px;}
.y85{bottom:466.482339px;}
.y10d{bottom:469.217850px;}
.ycb{bottom:469.619550px;}
.y86{bottom:477.188106px;}
.y3{bottom:478.398450px;}
.ydb{bottom:481.619550px;}
.y87{bottom:486.937813px;}
.y10c{bottom:487.217850px;}
.yc3{bottom:489.419550px;}
.yca{bottom:495.119550px;}
.y88{bottom:496.519422px;}
.yda{bottom:503.219550px;}
.y10b{bottom:505.217850px;}
.y89{bottom:506.321659px;}
.yc2{bottom:511.019550px;}
.y8a{bottom:514.957715px;}
.y1a{bottom:515.219550px;}
.yc9{bottom:520.619550px;}
.y10a{bottom:523.217850px;}
.yd9{bottom:524.819550px;}
.y8b{bottom:525.758037px;}
.yc1{bottom:532.619550px;}
.y8c{bottom:535.371164px;}
.y19{bottom:536.819550px;}
.y109{bottom:541.217850px;}
.y8d{bottom:544.196330px;}
.yc8{bottom:546.119550px;}
.yd8{bottom:546.419550px;}
.y2{bottom:546.423900px;}
.y8e{bottom:553.914519px;}
.yc0{bottom:554.219550px;}
.yd{bottom:564.395550px;}
.y8f{bottom:564.609780px;}
.yec{bottom:565.319550px;}
.yf3{bottom:569.219550px;}
.yc7{bottom:571.619550px;}
.y90{bottom:574.359487px;}
.ybf{bottom:575.819550px;}
.y108{bottom:577.217850px;}
.y91{bottom:582.953518px;}
.yeb{bottom:586.919550px;}
.yf2{bottom:590.819550px;}
.y92{bottom:592.766262px;}
.y107{bottom:595.217850px;}
.yc6{bottom:597.119550px;}
.yd7{bottom:603.095550px;}
.y93{bottom:603.472029px;}
.y18{bottom:606.719550px;}
.yea{bottom:608.519550px;}
.y94{bottom:612.139602px;}
.y95{bottom:621.910322px;}
.yc5{bottom:622.619550px;}
.ybe{bottom:625.019550px;}
.y17{bottom:628.319550px;}
.y96{bottom:632.542546px;}
.y97{bottom:642.323771px;}
.ybd{bottom:646.619550px;}
.yfd{bottom:646.637400px;}
.yc4{bottom:648.119550px;}
.y16{bottom:649.919550px;}
.y98{bottom:651.001851px;}
.y99{bottom:660.667509px;}
.ybc{bottom:668.219550px;}
.yfc{bottom:668.237250px;}
.y9a{bottom:670.375192px;}
.y15{bottom:671.519550px;}
.y9b{bottom:681.080959px;}
.ybb{bottom:689.819550px;}
.y9c{bottom:690.788641px;}
.y14{bottom:693.119550px;}
.y9d{bottom:700.674928px;}
.y106{bottom:709.013250px;}
.y9e{bottom:710.256537px;}
.yba{bottom:711.419550px;}
.y13{bottom:714.719550px;}
.y9f{bottom:719.985232px;}
.ya0{bottom:728.757867px;}
.yb9{bottom:733.019550px;}
.y12{bottom:736.319550px;}
.ya1{bottom:739.400597px;}
.ya2{bottom:749.171317px;}
.yb8{bottom:754.619550px;}
.ya3{bottom:758.952542px;}
.yc{bottom:763.895550px;}
.ya4{bottom:768.670731px;}
.yb7{bottom:776.219550px;}
.ya5{bottom:777.327799px;}
.ya6{bottom:786.940926px;}
.ya7{bottom:796.753670px;}
.y100{bottom:805.037250px;}
.ya8{bottom:806.471859px;}
.y11{bottom:811.019400px;}
.ya9{bottom:817.072564px;}
.yb6{bottom:825.419550px;}
.yaa{bottom:826.916827px;}
.y10{bottom:832.619550px;}
.yab{bottom:836.603497px;}
.yac{bottom:846.384723px;}
.yb5{bottom:847.019550px;}
.yff{bottom:848.237250px;}
.yf{bottom:854.219400px;}
.yad{bottom:854.989260px;}
.yae{bottom:864.749473px;}
.yb4{bottom:868.619550px;}
.yfe{bottom:869.837250px;}
.yaf{bottom:875.434227px;}
.ye{bottom:875.819400px;}
.yb0{bottom:885.099885px;}
.yb3{bottom:890.219550px;}
.yb1{bottom:894.923136px;}
.yb{bottom:902.495400px;}
.yfb{bottom:932.519550px;}
.y5a{bottom:947.219400px;}
.yfa{bottom:954.119550px;}
.ya{bottom:961.146000px;}
.y59{bottom:968.819400px;}
.yf9{bottom:975.719550px;}
.y9{bottom:989.946150px;}
.y58{bottom:990.419550px;}
.y57{bottom:1012.019400px;}
.yf8{bottom:1013.519550px;}
.yf7{bottom:1035.119550px;}
.y56{bottom:1036.619550px;}
.y8{bottom:1036.919550px;}
.yf6{bottom:1056.719550px;}
.y7{bottom:1058.519550px;}
.y55{bottom:1061.219400px;}
.yf5{bottom:1078.319550px;}
.y6{bottom:1080.119550px;}
.y54{bottom:1082.819400px;}
.yf4{bottom:1099.919550px;}
.y5{bottom:1116.145050px;}
.y53{bottom:1120.895550px;}
.ye9{bottom:1121.519550px;}
.h13{height:9.729000px;}
.h9{height:13.382978px;}
.h14{height:23.969330px;}
.hd{height:24.406876px;}
.hb{height:26.409711px;}
.ha{height:26.625206px;}
.hc{height:26.633000px;}
.h1a{height:26.820157px;}
.h11{height:26.944296px;}
.h10{height:28.763108px;}
.h19{height:30.595058px;}
.h12{height:33.556887px;}
.h1{height:34.992188px;}
.he{height:35.189056px;}
.hf{height:35.212657px;}
.h15{height:35.631845px;}
.h1d{height:42.960000px;}
.h1e{height:43.920000px;}
.h18{height:48.761719px;}
.h17{height:49.042969px;}
.h16{height:49.992188px;}
.h6{height:50.027344px;}
.h1b{height:51.552000px;}
.h8{height:52.417969px;}
.h7{height:65.062500px;}
.h1c{height:68.400000px;}
.h4{height:76.500000px;}
.h3{height:77.261719px;}
.h5{height:79.995391px;}
.h2{height:121.992188px;}
.h0{height:1188.000000px;}
.w1{width:76.822500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:54.000000px;}
.x2d{left:55.950000px;}
.x17{left:65.264250px;}
.x15{left:66.487950px;}
.x2f{left:67.800000px;}
.x16{left:79.166850px;}
.x3{left:90.770400px;}
.x1{left:106.200000px;}
.x7{left:115.143000px;}
.x8{left:118.399118px;}
.x9{left:121.682791px;}
.x4{left:224.830350px;}
.x12{left:229.856250px;}
.xa{left:230.992050px;}
.xe{left:234.654750px;}
.x14{left:237.247909px;}
.x11{left:238.862700px;}
.x10{left:240.651600px;}
.xb{left:244.799850px;}
.x13{left:245.866350px;}
.xc{left:253.689956px;}
.xd{left:255.855450px;}
.xf{left:264.866580px;}
.x21{left:363.422612px;}
.x23{left:364.681500px;}
.x19{left:365.748835px;}
.x2e{left:379.009500px;}
.x2c{left:381.458250px;}
.x2{left:387.300000px;}
.x2b{left:490.909500px;}
.x18{left:508.106905px;}
.x24{left:511.411050px;}
.x22{left:529.282200px;}
.x1a{left:530.745600px;}
.x1b{left:571.922100px;}
.x1d{left:614.875350px;}
.x25{left:616.441727px;}
.x1c{left:618.095550px;}
.x6{left:624.176550px;}
.x28{left:626.789550px;}
.x29{left:690.749250px;}
.x27{left:701.095500px;}
.x1f{left:745.073250px;}
.x2a{left:758.465422px;}
.x26{left:760.351950px;}
.x20{left:823.997550px;}
.x1e{left:828.382245px;}
@media print{
.v1{vertical-align:-14.307733pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003492pt;}
.ls1{letter-spacing:0.004026pt;}
.ls3{letter-spacing:0.015206pt;}
.ws0{word-spacing:-40.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.144000pt;}
.ws5{word-spacing:-11.944066pt;}
.ws11{word-spacing:-10.384746pt;}
.wsc{word-spacing:-2.112000pt;}
.ws9{word-spacing:-1.280000pt;}
.ws10{word-spacing:-0.773357pt;}
.wsa{word-spacing:-0.320000pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.192000pt;}
.ws13{word-spacing:0.512000pt;}
.wse{word-spacing:2.112000pt;}
.wsf{word-spacing:2.240000pt;}
.wsd{word-spacing:7.808000pt;}
.ws6{word-spacing:199.268269pt;}
.ws4{word-spacing:365.411088pt;}
.ws7{word-spacing:410.867282pt;}
.ws3{word-spacing:479.266395pt;}
.ws8{word-spacing:533.418298pt;}
._1{margin-left:-929.813333pt;}
._a{margin-left:-481.060274pt;}
._2{margin-left:-9.764800pt;}
._d{margin-left:-8.313600pt;}
._7{margin-left:-7.325867pt;}
._b{margin-left:-6.393600pt;}
._4{margin-left:-5.132800pt;}
._6{margin-left:-4.211200pt;}
._5{margin-left:-2.553600pt;}
._0{margin-left:-1.557333pt;}
._c{width:1.146426pt;}
._3{width:3.863661pt;}
._8{width:532.241335pt;}
._9{width:869.553793pt;}
.fs7{font-size:16.329067pt;}
.fsc{font-size:25.048533pt;}
.fs10{font-size:29.245867pt;}
.fsa{font-size:29.779733pt;}
.fs9{font-size:32.223467pt;}
.fs8{font-size:32.486400pt;}
.fs13{font-size:32.724267pt;}
.fse{font-size:32.875733pt;}
.fsd{font-size:35.094933pt;}
.fs12{font-size:37.355200pt;}
.fsf{font-size:40.944000pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:42.964267pt;}
.fs11{font-size:43.475733pt;}
.fs14{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs3{font-size:90.666667pt;}
.fs4{font-size:94.809352pt;}
.fs2{font-size:101.333333pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.373733pt;}
.y1{bottom:40.234400pt;}
.y5b{bottom:52.884533pt;}
.y5c{bottom:60.598382pt;}
.yf1{bottom:62.831200pt;}
.y5d{bottom:69.190078pt;}
.y4c{bottom:74.024667pt;}
.y52{bottom:76.617702pt;}
.y5e{bottom:78.818381pt;}
.yf0{bottom:82.031200pt;}
.ye8{bottom:82.506267pt;}
.yb2{bottom:85.968800pt;}
.y5f{bottom:87.438093pt;}
.y38{bottom:89.673325pt;}
.y2a{bottom:90.957867pt;}
.y60{bottom:96.029789pt;}
.yd6{bottom:100.106267pt;}
.yef{bottom:101.231200pt;}
.ye7{bottom:101.706267pt;}
.y61{bottom:103.818349pt;}
.y62{bottom:113.297231pt;}
.yee{bottom:120.431200pt;}
.y63{bottom:121.039096pt;}
.y37{bottom:124.368800pt;}
.y29{bottom:124.633335pt;}
.y64{bottom:130.536655pt;}
.y28{bottom:134.380933pt;}
.y65{bottom:139.175045pt;}
.yed{bottom:139.631200pt;}
.ye6{bottom:140.106267pt;}
.y27{bottom:144.048000pt;}
.yd5{bottom:145.439600pt;}
.y66{bottom:147.850791pt;}
.y36{bottom:156.094000pt;}
.y67{bottom:156.414470pt;}
.ye5{bottom:159.306267pt;}
.y68{bottom:164.212368pt;}
.y51{bottom:166.916800pt;}
.y26{bottom:168.067013pt;}
.yd4{bottom:168.106267pt;}
.y3b{bottom:168.863455pt;}
.y4d{bottom:172.403467pt;}
.y69{bottom:173.737944pt;}
.y35{bottom:174.417109pt;}
.y25{bottom:177.812933pt;}
.ye4{bottom:178.506267pt;}
.y6a{bottom:182.376334pt;}
.yd3{bottom:190.772933pt;}
.y6b{bottom:191.070757pt;}
.y44{bottom:191.072952pt;}
.y4e{bottom:191.073328pt;}
.y105{bottom:194.388667pt;}
.y24{bottom:195.851147pt;}
.ye3{bottom:197.706267pt;}
.y6c{bottom:198.700557pt;}
.y4a{bottom:203.323475pt;}
.y23{bottom:205.597067pt;}
.y70{bottom:208.254149pt;}
.y49{bottom:210.013467pt;}
.y50{bottom:212.807467pt;}
.y4b{bottom:213.371600pt;}
.y104{bottom:213.588667pt;}
.y4f{bottom:213.643733pt;}
.y6d{bottom:216.976588pt;}
.y31{bottom:225.079650pt;}
.y2c{bottom:225.378480pt;}
.y6e{bottom:225.586962pt;}
.y6f{bottom:234.272046pt;}
.y2b{bottom:234.312400pt;}
.y30{bottom:234.825570pt;}
.yd2{bottom:236.106267pt;}
.y71{bottom:242.798370pt;}
.y72{bottom:251.539487pt;}
.y22{bottom:254.730667pt;}
.ye2{bottom:255.306267pt;}
.yd1{bottom:258.772933pt;}
.y73{bottom:260.149861pt;}
.y2f{bottom:268.749493pt;}
.y74{bottom:268.806928pt;}
.y103{bottom:271.188667pt;}
.ye1{bottom:274.506267pt;}
.y46{bottom:276.077200pt;}
.y75{bottom:277.379947pt;}
.y2e{bottom:278.495413pt;}
.y21{bottom:278.898133pt;}
.yd0{bottom:281.439600pt;}
.y47{bottom:285.406667pt;}
.y76{bottom:286.074369pt;}
.y2d{bottom:288.241333pt;}
.y45{bottom:289.453200pt;}
.y3a{bottom:289.453410pt;}
.y102{bottom:290.388667pt;}
.ye0{bottom:293.706267pt;}
.y77{bottom:293.722847pt;}
.y20{bottom:300.574880pt;}
.y78{bottom:303.341811pt;}
.ycf{bottom:304.106267pt;}
.y3d{bottom:308.124933pt;}
.y43{bottom:308.441467pt;}
.y101{bottom:309.588667pt;}
.y1f{bottom:310.320800pt;}
.y79{bottom:311.980201pt;}
.y7a{bottom:320.543880pt;}
.y42{bottom:324.145067pt;}
.y3f{bottom:324.563067pt;}
.y41{bottom:324.565981pt;}
.y3c{bottom:325.027867pt;}
.y7b{bottom:329.219625pt;}
.ydf{bottom:332.106267pt;}
.y7c{bottom:337.820660pt;}
.y33{bottom:340.300789pt;}
.y7d{bottom:346.431034pt;}
.yce{bottom:349.439600pt;}
.y32{bottom:350.046709pt;}
.yde{bottom:351.306267pt;}
.y111{bottom:353.082533pt;}
.y7e{bottom:354.163560pt;}
.y7f{bottom:363.754508pt;}
.y110{bottom:369.082533pt;}
.ydd{bottom:370.506267pt;}
.ycd{bottom:372.106267pt;}
.y80{bottom:372.420914pt;}
.y81{bottom:381.059304pt;}
.y34{bottom:385.067049pt;}
.y10f{bottom:385.082533pt;}
.y82{bottom:388.754475pt;}
.y40{bottom:390.612800pt;}
.ycc{bottom:394.772933pt;}
.y4{bottom:394.843200pt;}
.y1b{bottom:395.679467pt;}
.y1e{bottom:396.933867pt;}
.y83{bottom:398.177325pt;}
.y1c{bottom:400.941508pt;}
.y10e{bottom:401.082533pt;}
.y1d{bottom:405.248300pt;}
.y39{bottom:405.553600pt;}
.y3e{bottom:406.503200pt;}
.y84{bottom:406.927780pt;}
.ydc{bottom:408.906267pt;}
.y85{bottom:414.650968pt;}
.y10d{bottom:417.082533pt;}
.ycb{bottom:417.439600pt;}
.y86{bottom:424.167205pt;}
.y3{bottom:425.243067pt;}
.ydb{bottom:428.106267pt;}
.y87{bottom:432.833611pt;}
.y10c{bottom:433.082533pt;}
.yc3{bottom:435.039600pt;}
.yca{bottom:440.106267pt;}
.y88{bottom:441.350597pt;}
.yda{bottom:447.306267pt;}
.y10b{bottom:449.082533pt;}
.y89{bottom:450.063697pt;}
.yc2{bottom:454.239600pt;}
.y8a{bottom:457.740191pt;}
.y1a{bottom:457.972933pt;}
.yc9{bottom:462.772933pt;}
.y10a{bottom:465.082533pt;}
.yd9{bottom:466.506267pt;}
.y8b{bottom:467.340477pt;}
.yc1{bottom:473.439600pt;}
.y8c{bottom:475.885479pt;}
.y19{bottom:477.172933pt;}
.y109{bottom:481.082533pt;}
.y8d{bottom:483.730071pt;}
.yc8{bottom:485.439600pt;}
.yd8{bottom:485.706267pt;}
.y2{bottom:485.710133pt;}
.y8e{bottom:492.368461pt;}
.yc0{bottom:492.639600pt;}
.yd{bottom:501.684933pt;}
.y8f{bottom:501.875360pt;}
.yec{bottom:502.506267pt;}
.yf3{bottom:505.972933pt;}
.yc7{bottom:508.106267pt;}
.y90{bottom:510.541766pt;}
.ybf{bottom:511.839600pt;}
.y108{bottom:513.082533pt;}
.y91{bottom:518.180905pt;}
.yeb{bottom:521.706267pt;}
.yf2{bottom:525.172933pt;}
.y92{bottom:526.903344pt;}
.y107{bottom:529.082533pt;}
.yc6{bottom:530.772933pt;}
.yd7{bottom:536.084933pt;}
.y93{bottom:536.419581pt;}
.y18{bottom:539.306267pt;}
.yea{bottom:540.906267pt;}
.y94{bottom:544.124091pt;}
.y95{bottom:552.809175pt;}
.yc5{bottom:553.439600pt;}
.ybe{bottom:555.572933pt;}
.y17{bottom:558.506267pt;}
.y96{bottom:562.260041pt;}
.y97{bottom:570.954463pt;}
.ybd{bottom:574.772933pt;}
.yfd{bottom:574.788800pt;}
.yc4{bottom:576.106267pt;}
.y16{bottom:577.706267pt;}
.y98{bottom:578.668312pt;}
.y99{bottom:587.260008pt;}
.ybc{bottom:593.972933pt;}
.yfc{bottom:593.988667pt;}
.y9a{bottom:595.889059pt;}
.y15{bottom:596.906267pt;}
.y9b{bottom:605.405297pt;}
.ybb{bottom:613.172933pt;}
.y9c{bottom:614.034348pt;}
.y14{bottom:616.106267pt;}
.y9d{bottom:622.822159pt;}
.y106{bottom:630.234000pt;}
.y9e{bottom:631.339144pt;}
.yba{bottom:632.372933pt;}
.y13{bottom:635.306267pt;}
.y9f{bottom:639.986873pt;}
.ya0{bottom:647.784771pt;}
.yb9{bottom:651.572933pt;}
.y12{bottom:654.506267pt;}
.ya1{bottom:657.244975pt;}
.ya2{bottom:665.930059pt;}
.yb8{bottom:670.772933pt;}
.ya3{bottom:674.624482pt;}
.yc{bottom:679.018267pt;}
.ya4{bottom:683.262872pt;}
.yb7{bottom:689.972933pt;}
.ya5{bottom:690.958043pt;}
.ya6{bottom:699.503045pt;}
.ya7{bottom:708.225485pt;}
.y100{bottom:715.588667pt;}
.ya8{bottom:716.863875pt;}
.y11{bottom:720.906133pt;}
.ya9{bottom:726.286724pt;}
.yb6{bottom:733.706267pt;}
.yaa{bottom:735.037179pt;}
.y10{bottom:740.106267pt;}
.yab{bottom:743.647553pt;}
.yac{bottom:752.341976pt;}
.yb5{bottom:752.906267pt;}
.yff{bottom:753.988667pt;}
.yf{bottom:759.306133pt;}
.yad{bottom:759.990453pt;}
.yae{bottom:768.666198pt;}
.yb4{bottom:772.106267pt;}
.yfe{bottom:773.188667pt;}
.yaf{bottom:778.163758pt;}
.ye{bottom:778.506133pt;}
.yb0{bottom:786.755454pt;}
.yb3{bottom:791.306267pt;}
.yb1{bottom:795.487232pt;}
.yb{bottom:802.218133pt;}
.yfb{bottom:828.906267pt;}
.y5a{bottom:841.972800pt;}
.yfa{bottom:848.106267pt;}
.ya{bottom:854.352000pt;}
.y59{bottom:861.172800pt;}
.yf9{bottom:867.306267pt;}
.y9{bottom:879.952133pt;}
.y58{bottom:880.372933pt;}
.y57{bottom:899.572800pt;}
.yf8{bottom:900.906267pt;}
.yf7{bottom:920.106267pt;}
.y56{bottom:921.439600pt;}
.y8{bottom:921.706267pt;}
.yf6{bottom:939.306267pt;}
.y7{bottom:940.906267pt;}
.y55{bottom:943.306133pt;}
.yf5{bottom:958.506267pt;}
.y6{bottom:960.106267pt;}
.y54{bottom:962.506133pt;}
.yf4{bottom:977.706267pt;}
.y5{bottom:992.128933pt;}
.y53{bottom:996.351600pt;}
.ye9{bottom:996.906267pt;}
.h13{height:8.648000pt;}
.h9{height:11.895980pt;}
.h14{height:21.306071pt;}
.hd{height:21.695001pt;}
.hb{height:23.475299pt;}
.ha{height:23.666850pt;}
.hc{height:23.673778pt;}
.h1a{height:23.840140pt;}
.h11{height:23.950485pt;}
.h10{height:25.567207pt;}
.h19{height:27.195607pt;}
.h12{height:29.828344pt;}
.h1{height:31.104167pt;}
.he{height:31.279161pt;}
.hf{height:31.300140pt;}
.h15{height:31.672751pt;}
.h1d{height:38.186667pt;}
.h1e{height:39.040000pt;}
.h18{height:43.343750pt;}
.h17{height:43.593750pt;}
.h16{height:44.437500pt;}
.h6{height:44.468750pt;}
.h1b{height:45.824000pt;}
.h8{height:46.593750pt;}
.h7{height:57.833333pt;}
.h1c{height:60.800000pt;}
.h4{height:68.000000pt;}
.h3{height:68.677083pt;}
.h5{height:71.107014pt;}
.h2{height:108.437500pt;}
.h0{height:1056.000000pt;}
.w1{width:68.286667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:48.000000pt;}
.x2d{left:49.733333pt;}
.x17{left:58.012667pt;}
.x15{left:59.100400pt;}
.x2f{left:60.266667pt;}
.x16{left:70.370533pt;}
.x3{left:80.684800pt;}
.x1{left:94.400000pt;}
.x7{left:102.349333pt;}
.x8{left:105.243660pt;}
.x9{left:108.162481pt;}
.x4{left:199.849200pt;}
.x12{left:204.316667pt;}
.xa{left:205.326267pt;}
.xe{left:208.582000pt;}
.x14{left:210.887030pt;}
.x11{left:212.322400pt;}
.x10{left:213.912533pt;}
.xb{left:217.599867pt;}
.x13{left:218.547867pt;}
.xc{left:225.502183pt;}
.xd{left:227.427067pt;}
.xf{left:235.436960pt;}
.x21{left:323.042322pt;}
.x23{left:324.161333pt;}
.x19{left:325.110075pt;}
.x2e{left:336.897333pt;}
.x2c{left:339.074000pt;}
.x2{left:344.266667pt;}
.x2b{left:436.364000pt;}
.x18{left:451.650582pt;}
.x24{left:454.587600pt;}
.x22{left:470.473067pt;}
.x1a{left:471.773867pt;}
.x1b{left:508.375200pt;}
.x1d{left:546.555867pt;}
.x25{left:547.948202pt;}
.x1c{left:549.418267pt;}
.x6{left:554.823600pt;}
.x28{left:557.146267pt;}
.x29{left:613.999333pt;}
.x27{left:623.196000pt;}
.x1f{left:662.287333pt;}
.x2a{left:674.191486pt;}
.x26{left:675.868400pt;}
.x20{left:732.442267pt;}
.x1e{left:736.339774pt;}
}




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