
    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_83dbbc4722a2b557216b565e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080000;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_5110873b6f3641624da9b7c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710938;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_8ab7ffce4d4c26713227446f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.765000;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_e0b0f261df6d83d2cdbd1add.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029000;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_29c98bfd9b0ed428856a4ef7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944000;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_c31e9c3932de315eeb8cabaf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;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_b6cc127179f5ba1ac04c6f95.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.042000;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_2186532056cd63a80c1aa385.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_9d4631c58c63ad169b731a41.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.732000;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_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_076dbefe09df9629cd998cd9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_96ea77a766579561dbf7222d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.029000;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_2f195c81f3a21d00d8022c47.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.951000;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_9bdbe74a46a13afdf6b1f976.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.747000;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_80adde7c225b504cdb25ee15.woff2')format("woff");}.fff{font-family:fff;line-height:0.895996;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_0dda1b6d25df4d241eb25e9b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.670898;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:ff11;src:url('chunks/assets/font_700a3a406cf601d466e55635.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.136197px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.044880px;}
.v1{vertical-align:26.549797px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000011px;}
.ls2{letter-spacing:4.493815px;}
.ls1{letter-spacing:13.493814px;}
.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;}
}
.ws1{word-spacing:-44.748001px;}
.ws6{word-spacing:-36.612000px;}
.ws2{word-spacing:-32.400000px;}
.ws3{word-spacing:-22.679999px;}
.wsa{word-spacing:-18.678000px;}
.ws8{word-spacing:-18.336914px;}
.ws7{word-spacing:-11.002149px;}
.ws4{word-spacing:-10.375200px;}
.ws5{word-spacing:-9.432000px;}
.ws9{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-4.758558px;}
._2{margin-left:-2.862422px;}
._0{margin-left:-1.329817px;}
._1{width:1.913258px;}
._7{width:3.744504px;}
._6{width:4.805311px;}
._1b{width:7.998980px;}
._8{width:9.000518px;}
._13{width:13.317846px;}
._1a{width:14.440476px;}
._12{width:18.298009px;}
._15{width:21.553766px;}
._16{width:23.298164px;}
._14{width:27.029895px;}
._4{width:31.105004px;}
._18{width:32.291180px;}
._3{width:35.207945px;}
._17{width:36.925582px;}
._1c{width:40.401331px;}
._1d{width:41.422068px;}
._1f{width:44.016506px;}
._20{width:45.211881px;}
._1e{width:48.628215px;}
._19{width:49.798827px;}
._22{width:53.480257px;}
._21{width:58.515363px;}
._10{width:1218.872697px;}
._9{width:1767.198794px;}
._e{width:1848.335997px;}
._d{width:1877.186720px;}
._f{width:1900.067764px;}
._b{width:1950.063886px;}
._c{width:2066.409557px;}
._a{width:2178.298199px;}
._11{width:2341.117832px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:rgb(68,71,70);}
.fc4{color:rgb(0,74,173);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(47,108,1);}
.fc5{color:rgb(82,82,82);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:39.600001px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:75.599996px;}
.fsa{font-size:78.000003px;}
.fs6{font-size:83.999997px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:167.999994px;}
.y0{bottom:0.000000px;}
.ye2{bottom:3.764179px;}
.y1e{bottom:3.764912px;}
.y46{bottom:3.765095px;}
.y5{bottom:4.125032px;}
.y117{bottom:4.140305px;}
.y71{bottom:4.141114px;}
.y26{bottom:4.141400px;}
.y28{bottom:4.141403px;}
.y35{bottom:4.141415px;}
.y54{bottom:4.141480px;}
.y1f{bottom:4.141496px;}
.y4{bottom:4.141506px;}
.y1c{bottom:4.141571px;}
.y23{bottom:4.141586px;}
.y44{bottom:4.141663px;}
.y72{bottom:4.141770px;}
.y25{bottom:24.254990px;}
.y34{bottom:24.255185px;}
.yf4{bottom:30.016755px;}
.ye7{bottom:30.016771px;}
.yf8{bottom:30.016775px;}
.y33{bottom:44.368580px;}
.yf7{bottom:50.129090px;}
.yf3{bottom:50.130525px;}
.y18{bottom:56.866440px;}
.y53{bottom:56.866620px;}
.ye0{bottom:56.867355px;}
.y32{bottom:64.481990px;}
.yf2{bottom:70.242840px;}
.yf6{bottom:70.242846px;}
.y31{bottom:84.595565px;}
.yf1{bottom:90.356610px;}
.y30{bottom:104.709155px;}
.yf0{bottom:110.470380px;}
.y2f{bottom:124.822565px;}
.y116{bottom:128.520188px;}
.y8d{bottom:128.520920px;}
.y6f{bottom:128.521287px;}
.y1a{bottom:128.521562px;}
.y42{bottom:128.521653px;}
.yef{bottom:130.584150px;}
.y8c{bottom:131.129023px;}
.ydc{bottom:131.490228px;}
.y6e{bottom:132.323288px;}
.ya9{bottom:138.497235px;}
.y2e{bottom:144.935960px;}
.y100{bottom:150.585874px;}
.yee{bottom:150.697185px;}
.y8b{bottom:153.995985px;}
.yc3{bottom:154.352719px;}
.ydb{bottom:155.849473px;}
.y41{bottom:158.747236px;}
.y6d{bottom:162.493575px;}
.ydf{bottom:168.125983px;}
.ya8{bottom:168.667889px;}
.yed{bottom:170.810955px;}
.yff{bottom:180.756519px;}
.yc2{bottom:184.522635px;}
.yde{bottom:186.437261px;}
.y114{bottom:186.837070px;}
.y17{bottom:190.112475px;}
.yec{bottom:190.924725px;}
.ya7{bottom:198.837813px;}
.y2{bottom:203.586237px;}
.y6c{bottom:204.663860px;}
.y16{bottom:210.225975px;}
.ydd{bottom:210.789556px;}
.yfe{bottom:210.926444px;}
.yeb{bottom:211.038495px;}
.yc1{bottom:214.692551px;}
.y113{bottom:217.008463px;}
.y40{bottom:226.116691px;}
.ya6{bottom:229.007729px;}
.y6b{bottom:234.834149px;}
.yfd{bottom:241.096368px;}
.yc0{bottom:244.862475px;}
.y112{bottom:247.178384px;}
.yda{bottom:247.606129px;}
.yea{bottom:249.151530px;}
.y15{bottom:258.396165px;}
.ya5{bottom:259.178385px;}
.y8a{bottom:259.606125px;}
.y6a{bottom:265.004070px;}
.ye9{bottom:269.265301px;}
.yfc{bottom:271.266284px;}
.ybf{bottom:275.033864px;}
.y111{bottom:277.348305px;}
.yd9{bottom:277.776064px;}
.y14{bottom:278.493163px;}
.y3f{bottom:284.450970px;}
.y89{bottom:289.776060px;}
.yfb{bottom:301.436940px;}
.ybe{bottom:305.203785px;}
.ya4{bottom:307.348324px;}
.yd8{bottom:307.945999px;}
.y69{bottom:308.046749px;}
.y110{bottom:319.518236px;}
.y88{bottom:319.945962px;}
.y3e{bottom:326.621265px;}
.ya3{bottom:337.518979px;}
.yd7{bottom:338.117374px;}
.y10f{bottom:349.688160px;}
.y87{bottom:350.116268px;}
.ybd{bottom:353.373713px;}
.y68{bottom:354.572676px;}
.yfa{bottom:358.643296px;}
.ya2{bottom:367.688891px;}
.y12c{bottom:367.859549px;}
.yd6{bottom:368.286566px;}
.y3d{bottom:377.826706px;}
.y10e{bottom:379.859549px;}
.y86{bottom:380.286912px;}
.ybc{bottom:383.543648px;}
.y67{bottom:384.743329px;}
.ya1{bottom:397.858826px;}
.y12b{bottom:398.029470px;}
.yd5{bottom:398.457221px;}
.y13{bottom:408.566445px;}
.y10d{bottom:410.029470px;}
.y85{bottom:410.457207px;}
.ybb{bottom:413.714302px;}
.y66{bottom:414.913623px;}
.yf9{bottom:416.977215px;}
.ya0{bottom:428.029481px;}
.yd4{bottom:428.627134px;}
.yf5{bottom:434.074210px;}
.y12a{bottom:440.199390px;}
.y84{bottom:440.627119px;}
.yba{bottom:443.884957px;}
.y65{bottom:445.083908px;}
.y3c{bottom:445.196160px;}
.y12{bottom:450.736650px;}
.y10c{bottom:452.200123px;}
.y9f{bottom:458.199394px;}
.yd3{bottom:458.797046px;}
.y129{bottom:470.370779px;}
.y83{bottom:470.797054px;}
.yb9{bottom:474.054859px;}
.y64{bottom:475.254195px;}
.y10b{bottom:482.369310px;}
.y9e{bottom:488.370039px;}
.yd2{bottom:488.968444px;}
.y3b{bottom:492.720757px;}
.y11{bottom:492.906930px;}
.y128{bottom:500.540700px;}
.y82{bottom:500.967708px;}
.yb8{bottom:504.224794px;}
.y3a{bottom:509.177358px;}
.y10a{bottom:512.540699px;}
.y63{bottom:517.424479px;}
.y9d{bottom:518.540694px;}
.yd1{bottom:519.137622px;}
.y39{bottom:525.633780px;}
.y81{bottom:531.137985px;}
.yb7{bottom:534.395449px;}
.y10{bottom:535.077225px;}
.y109{bottom:542.710620px;}
.ye8{bottom:547.289070px;}
.y62{bottom:547.594403px;}
.y9c{bottom:548.710619px;}
.yd0{bottom:549.308275px;}
.y80{bottom:561.308270px;}
.yf{bottom:561.591213px;}
.yb6{bottom:564.565361px;}
.y127{bottom:572.880535px;}
.y61{bottom:577.764690px;}
.y9b{bottom:578.880539px;}
.ycf{bottom:579.478938px;}
.y38{bottom:579.935236px;}
.y108{bottom:584.880543px;}
.y7f{bottom:591.478925px;}
.yb5{bottom:594.736016px;}
.y126{bottom:603.050460px;}
.y9a{bottom:609.050460px;}
.yce{bottom:609.648125px;}
.ye{bottom:612.789194px;}
.y107{bottom:615.050459px;}
.y60{bottom:620.807369px;}
.y7e{bottom:621.648849px;}
.yb4{bottom:624.905951px;}
.y37{bottom:627.459645px;}
.y125{bottom:633.220385px;}
.ycd{bottom:639.819510px;}
.y36{bottom:641.652649px;}
.y106{bottom:645.221115px;}
.y7d{bottom:651.819135px;}
.yb3{bottom:655.076606px;}
.y52{bottom:655.503585px;}
.y99{bottom:657.221867px;}
.y2d{bottom:662.891231px;}
.y124{bottom:663.391770px;}
.y51{bottom:675.617356px;}
.yd{bottom:679.471802px;}
.y5f{bottom:682.368646px;}
.yb2{bottom:685.246519px;}
.y105{bottom:687.391048px;}
.y98{bottom:687.391768px;}
.ycc{bottom:687.989429px;}
.y7c{bottom:699.989055px;}
.y50{bottom:700.230766px;}
.y123{bottom:705.561694px;}
.yb1{bottom:715.416435px;}
.y97{bottom:717.561703px;}
.ycb{bottom:718.159345px;}
.yc{bottom:721.348260px;}
.y4f{bottom:724.844161px;}
.y7b{bottom:730.159710px;}
.y122{bottom:735.731610px;}
.y5e{bottom:740.702936px;}
.yb0{bottom:745.587089px;}
.y96{bottom:747.731626px;}
.y104{bottom:747.732358px;}
.yca{bottom:748.330008px;}
.y4e{bottom:749.457751px;}
.y7a{bottom:760.330004px;}
.yb{bottom:763.518510px;}
.y121{bottom:765.902994px;}
.y5d{bottom:770.873231px;}
.y4d{bottom:774.071341px;}
.yaf{bottom:775.757013px;}
.y103{bottom:777.901550px;}
.y95{bottom:777.902270px;}
.yc9{bottom:778.499195px;}
.ye6{bottom:786.537600px;}
.y79{bottom:790.499924px;}
.y120{bottom:796.072919px;}
.y4c{bottom:798.684736px;}
.y5c{bottom:801.043504px;}
.y2c{bottom:803.685787px;}
.ya{bottom:805.688745px;}
.yae{bottom:805.927664px;}
.y94{bottom:808.072925px;}
.yc8{bottom:808.670580px;}
.y78{bottom:820.669845px;}
.y4b{bottom:823.298146px;}
.y2b{bottom:824.924194px;}
.y11f{bottom:826.242839px;}
.y5b{bottom:831.213799px;}
.yad{bottom:836.097585px;}
.y93{bottom:838.242860px;}
.y2a{bottom:846.162784px;}
.y9{bottom:847.859040px;}
.y4a{bottom:847.911736px;}
.y11e{bottom:856.412760px;}
.yc7{bottom:858.131415px;}
.y77{bottom:861.131415px;}
.y5a{bottom:861.384075px;}
.y29{bottom:867.401362px;}
.y92{bottom:868.412773px;}
.y49{bottom:872.525310px;}
.yac{bottom:884.268239px;}
.y8{bottom:890.029275px;}
.y59{bottom:891.554369px;}
.ye5{bottom:891.724290px;}
.y27{bottom:893.276362px;}
.y11d{bottom:898.582701px;}
.y91{bottom:898.583428px;}
.yc6{bottom:910.752615px;}
.y76{bottom:910.753335px;}
.yab{bottom:914.438160px;}
.y24{bottom:914.514776px;}
.y58{bottom:921.724293px;}
.y48{bottom:923.730766px;}
.y102{bottom:928.752606px;}
.y11c{bottom:928.752608px;}
.y90{bottom:928.753344px;}
.y7{bottom:932.199525px;}
.y22{bottom:934.628179px;}
.y75{bottom:940.923990px;}
.yc5{bottom:940.924004px;}
.ye4{bottom:948.929926px;}
.y57{bottom:951.894944px;}
.y11b{bottom:958.923992px;}
.y8f{bottom:958.923998px;}
.yaa{bottom:965.189925px;}
.yc4{bottom:971.093925px;}
.y6{bottom:974.369760px;}
.y56{bottom:982.064865px;}
.y11a{bottom:989.093916px;}
.y8e{bottom:989.093922px;}
.y74{bottom:989.093925px;}
.y1{bottom:990.341760px;}
.y47{bottom:991.100208px;}
.y21{bottom:991.100299px;}
.ye3{bottom:1007.264573px;}
.y3{bottom:1010.144989px;}
.y101{bottom:1019.263838px;}
.y119{bottom:1019.263841px;}
.y73{bottom:1019.264573px;}
.y55{bottom:1039.270494px;}
.y20{bottom:1049.434494px;}
.y118{bottom:1049.435226px;}
.y19{bottom:1065.406494px;}
.y115{bottom:1065.407226px;}
.ye1{bottom:1085.519532px;}
.y43{bottom:1085.519898px;}
.y1b{bottom:1085.519990px;}
.y70{bottom:1085.520264px;}
.y45{bottom:1171.501465px;}
.y1d{bottom:1171.501648px;}
.h27{height:18.284180px;}
.ha{height:18.284912px;}
.h17{height:18.285095px;}
.h10{height:20.113403px;}
.hd{height:20.113586px;}
.h24{height:25.839844px;}
.h1e{height:31.716000px;}
.h12{height:37.800000px;}
.hf{height:40.226989px;}
.h14{height:40.284000px;}
.h25{height:43.066405px;}
.h23{height:43.066445px;}
.hb{height:44.759999px;}
.h4{height:46.921876px;}
.h1f{height:47.574009px;}
.h5{height:49.962001px;}
.he{height:51.942001px;}
.h1c{height:53.424000px;}
.h2{height:58.146001px;}
.h1d{height:61.437398px;}
.h21{height:61.437421px;}
.h22{height:63.432000px;}
.h1a{height:63.587998px;}
.h20{height:68.718003px;}
.h28{height:71.863770px;}
.h13{height:77.328000px;}
.hc{height:89.100000px;}
.h1b{height:104.266113px;}
.h19{height:104.266479px;}
.h9{height:104.266570px;}
.h16{height:104.266662px;}
.h2a{height:112.089845px;}
.h18{height:127.199700px;}
.h15{height:127.199895px;}
.h7{height:127.200075px;}
.h26{height:127.200435px;}
.h2b{height:127.201170px;}
.h6{height:138.599995px;}
.h11{height:160.907959px;}
.h3{height:179.641514px;}
.h2c{height:197.592774px;}
.h8{height:197.593506px;}
.h1{height:272.658240px;}
.h29{height:311.112300px;}
.h0{height:1263.000000px;}
.w7{width:70.875012px;}
.w3{width:208.125022px;}
.w5{width:223.875022px;}
.w6{width:496.124910px;}
.w4{width:515.249910px;}
.w2{width:578.249955px;}
.w8{width:644.624910px;}
.w9{width:716.624910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xf{left:6.750000px;}
.xc{left:42.019324px;}
.x4{left:85.049996px;}
.xe{left:86.174995px;}
.x6{left:98.912060px;}
.x13{left:112.049996px;}
.x17{left:117.674996px;}
.x14{left:139.049996px;}
.x7{left:143.195056px;}
.x2{left:157.050007px;}
.x16{left:158.175007px;}
.xa{left:205.875000px;}
.x9{left:259.424996px;}
.xb{left:293.175015px;}
.x10{left:311.175015px;}
.xd{left:362.621943px;}
.x11{left:379.570687px;}
.x5{left:382.160583px;}
.x1{left:446.456696px;}
.x3{left:574.875000px;}
.x8{left:676.519162px;}
.x18{left:790.995809px;}
.x19{left:795.958814px;}
.x15{left:796.964609px;}
.x12{left:798.498029px;}
@media print{
.v2{vertical-align:-21.454397pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.262116pt;}
.v1{vertical-align:23.599820pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000010pt;}
.ls2{letter-spacing:3.994502pt;}
.ls1{letter-spacing:11.994501pt;}
.ws1{word-spacing:-39.776001pt;}
.ws6{word-spacing:-32.544000pt;}
.ws2{word-spacing:-28.800000pt;}
.ws3{word-spacing:-20.159999pt;}
.wsa{word-spacing:-16.602667pt;}
.ws8{word-spacing:-16.299479pt;}
.ws7{word-spacing:-9.779688pt;}
.ws4{word-spacing:-9.222400pt;}
.ws5{word-spacing:-8.384000pt;}
.ws9{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-4.229830pt;}
._2{margin-left:-2.544375pt;}
._0{margin-left:-1.182059pt;}
._1{width:1.700674pt;}
._7{width:3.328448pt;}
._6{width:4.271387pt;}
._1b{width:7.110205pt;}
._8{width:8.000460pt;}
._13{width:11.838086pt;}
._1a{width:12.835979pt;}
._12{width:16.264897pt;}
._15{width:19.158903pt;}
._16{width:20.709479pt;}
._14{width:24.026574pt;}
._4{width:27.648893pt;}
._18{width:28.703271pt;}
._3{width:31.295951pt;}
._17{width:32.822740pt;}
._1c{width:35.912295pt;}
._1d{width:36.819616pt;}
._1f{width:39.125783pt;}
._20{width:40.188338pt;}
._1e{width:43.225080pt;}
._19{width:44.265624pt;}
._22{width:47.538006pt;}
._21{width:52.013656pt;}
._10{width:1083.442398pt;}
._9{width:1570.843373pt;}
._e{width:1642.965331pt;}
._d{width:1668.610417pt;}
._f{width:1688.949123pt;}
._b{width:1733.390121pt;}
._c{width:1836.808495pt;}
._a{width:1936.265065pt;}
._11{width:2080.993629pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:35.200001pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:67.199996pt;}
.fsa{font-size:69.333336pt;}
.fs6{font-size:74.666664pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:149.333328pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.345937pt;}
.y1e{bottom:3.346588pt;}
.y46{bottom:3.346751pt;}
.y5{bottom:3.666695pt;}
.y117{bottom:3.680271pt;}
.y71{bottom:3.680990pt;}
.y26{bottom:3.681244pt;}
.y28{bottom:3.681247pt;}
.y35{bottom:3.681257pt;}
.y54{bottom:3.681315pt;}
.y1f{bottom:3.681329pt;}
.y4{bottom:3.681339pt;}
.y1c{bottom:3.681397pt;}
.y23{bottom:3.681410pt;}
.y44{bottom:3.681478pt;}
.y72{bottom:3.681573pt;}
.y25{bottom:21.559991pt;}
.y34{bottom:21.560164pt;}
.yf4{bottom:26.681560pt;}
.ye7{bottom:26.681574pt;}
.yf8{bottom:26.681577pt;}
.y33{bottom:39.438737pt;}
.yf7{bottom:44.559191pt;}
.yf3{bottom:44.560467pt;}
.y18{bottom:50.547947pt;}
.y53{bottom:50.548107pt;}
.ye0{bottom:50.548760pt;}
.y32{bottom:57.317324pt;}
.yf2{bottom:62.438080pt;}
.yf6{bottom:62.438085pt;}
.y31{bottom:75.196057pt;}
.yf1{bottom:80.316987pt;}
.y30{bottom:93.074804pt;}
.yf0{bottom:98.195893pt;}
.y2f{bottom:110.953391pt;}
.y116{bottom:114.240167pt;}
.y8d{bottom:114.240817pt;}
.y6f{bottom:114.241144pt;}
.y1a{bottom:114.241388pt;}
.y42{bottom:114.241469pt;}
.yef{bottom:116.074800pt;}
.y8c{bottom:116.559131pt;}
.ydc{bottom:116.880203pt;}
.y6e{bottom:117.620701pt;}
.ya9{bottom:123.108653pt;}
.y2e{bottom:128.831964pt;}
.y100{bottom:133.854110pt;}
.yee{bottom:133.953053pt;}
.y8b{bottom:136.885320pt;}
.yc3{bottom:137.202417pt;}
.ydb{bottom:138.532865pt;}
.y41{bottom:141.108655pt;}
.y6d{bottom:144.438733pt;}
.ydf{bottom:149.445318pt;}
.ya8{bottom:149.927012pt;}
.yed{bottom:151.831960pt;}
.yff{bottom:160.672461pt;}
.yc2{bottom:164.020120pt;}
.yde{bottom:165.722010pt;}
.y114{bottom:166.077396pt;}
.y17{bottom:168.988867pt;}
.yec{bottom:169.710867pt;}
.ya7{bottom:176.744723pt;}
.y2{bottom:180.965544pt;}
.y6c{bottom:181.923431pt;}
.y16{bottom:186.867534pt;}
.ydd{bottom:187.368494pt;}
.yfe{bottom:187.490172pt;}
.yeb{bottom:187.589773pt;}
.yc1{bottom:190.837823pt;}
.y113{bottom:192.896412pt;}
.y40{bottom:200.992615pt;}
.ya6{bottom:203.562426pt;}
.y6b{bottom:208.741466pt;}
.yfd{bottom:214.307883pt;}
.yc0{bottom:217.655534pt;}
.y112{bottom:219.714119pt;}
.yda{bottom:220.094337pt;}
.yea{bottom:221.468027pt;}
.y15{bottom:229.685480pt;}
.ya5{bottom:230.380787pt;}
.y8a{bottom:230.761000pt;}
.y6a{bottom:235.559173pt;}
.ye9{bottom:239.346934pt;}
.yfc{bottom:241.125586pt;}
.ybf{bottom:244.474546pt;}
.y111{bottom:246.531827pt;}
.yd9{bottom:246.912057pt;}
.y14{bottom:247.549478pt;}
.y3f{bottom:252.845307pt;}
.y89{bottom:257.578720pt;}
.yfb{bottom:267.943947pt;}
.ybe{bottom:271.292253pt;}
.ya4{bottom:273.198510pt;}
.yd8{bottom:273.729777pt;}
.y69{bottom:273.819333pt;}
.y110{bottom:284.016209pt;}
.y88{bottom:284.396410pt;}
.y3e{bottom:290.330013pt;}
.ya3{bottom:300.016870pt;}
.yd7{bottom:300.548777pt;}
.y10f{bottom:310.833920pt;}
.y87{bottom:311.214460pt;}
.ybd{bottom:314.109967pt;}
.y68{bottom:315.175712pt;}
.yfa{bottom:318.794041pt;}
.ya2{bottom:326.834570pt;}
.y12c{bottom:326.986266pt;}
.yd6{bottom:327.365837pt;}
.y3d{bottom:335.845961pt;}
.y10e{bottom:337.652932pt;}
.y86{bottom:338.032810pt;}
.ybc{bottom:340.927687pt;}
.y67{bottom:341.994071pt;}
.ya1{bottom:353.652290pt;}
.y12b{bottom:353.803973pt;}
.yd5{bottom:354.184197pt;}
.y13{bottom:363.170173pt;}
.y10d{bottom:364.470640pt;}
.y85{bottom:364.850850pt;}
.ybb{bottom:367.746047pt;}
.y66{bottom:368.812110pt;}
.yf9{bottom:370.646413pt;}
.ya0{bottom:380.470650pt;}
.yd4{bottom:381.001897pt;}
.yf5{bottom:385.843743pt;}
.y12a{bottom:391.288347pt;}
.y84{bottom:391.668550pt;}
.yba{bottom:394.564407pt;}
.y65{bottom:395.630141pt;}
.y3c{bottom:395.729920pt;}
.y12{bottom:400.654800pt;}
.y10c{bottom:401.955665pt;}
.y9f{bottom:407.288350pt;}
.yd3{bottom:407.819597pt;}
.y129{bottom:418.107359pt;}
.y83{bottom:418.486270pt;}
.yb9{bottom:421.382097pt;}
.y64{bottom:422.448173pt;}
.y10b{bottom:428.772720pt;}
.y9e{bottom:434.106701pt;}
.yd2{bottom:434.638617pt;}
.y3b{bottom:437.974006pt;}
.y11{bottom:438.139493pt;}
.y128{bottom:444.925067pt;}
.y82{bottom:445.304629pt;}
.yb8{bottom:448.199817pt;}
.y3a{bottom:452.602096pt;}
.y10a{bottom:455.591732pt;}
.y63{bottom:459.932871pt;}
.y9d{bottom:460.925061pt;}
.yd1{bottom:461.455664pt;}
.y39{bottom:467.230027pt;}
.y81{bottom:472.122653pt;}
.yb7{bottom:475.018177pt;}
.y10{bottom:475.624200pt;}
.y109{bottom:482.409440pt;}
.ye8{bottom:486.479173pt;}
.y62{bottom:486.750581pt;}
.y9c{bottom:487.742772pt;}
.yd0{bottom:488.274023pt;}
.y80{bottom:498.940684pt;}
.yf{bottom:499.192190pt;}
.yb6{bottom:501.835877pt;}
.y127{bottom:509.227143pt;}
.y61{bottom:513.568613pt;}
.y9b{bottom:514.560479pt;}
.ycf{bottom:515.092390pt;}
.y38{bottom:515.497987pt;}
.y108{bottom:519.893816pt;}
.y7f{bottom:525.759044pt;}
.yb5{bottom:528.654237pt;}
.y126{bottom:536.044854pt;}
.y9a{bottom:541.378187pt;}
.yce{bottom:541.909445pt;}
.ye{bottom:544.701506pt;}
.y107{bottom:546.711519pt;}
.y60{bottom:551.828773pt;}
.y7e{bottom:552.576754pt;}
.yb4{bottom:555.471957pt;}
.y37{bottom:557.741906pt;}
.y125{bottom:562.862565pt;}
.ycd{bottom:568.728453pt;}
.y36{bottom:570.357910pt;}
.y106{bottom:573.529880pt;}
.y7d{bottom:579.394787pt;}
.yb3{bottom:582.290317pt;}
.y52{bottom:582.669853pt;}
.y99{bottom:584.197215pt;}
.y2d{bottom:589.236649pt;}
.y124{bottom:589.681573pt;}
.y51{bottom:600.548761pt;}
.yd{bottom:603.974935pt;}
.y5f{bottom:606.549908pt;}
.yb2{bottom:609.108017pt;}
.y105{bottom:611.014265pt;}
.y98{bottom:611.014905pt;}
.ycc{bottom:611.546159pt;}
.y7c{bottom:622.212493pt;}
.y50{bottom:622.427348pt;}
.y123{bottom:627.165950pt;}
.yb1{bottom:635.925720pt;}
.y97{bottom:637.832625pt;}
.ycb{bottom:638.363862pt;}
.yc{bottom:641.198453pt;}
.y4f{bottom:644.305921pt;}
.y7b{bottom:649.030853pt;}
.y122{bottom:653.983653pt;}
.y5e{bottom:658.402610pt;}
.yb0{bottom:662.744079pt;}
.y96{bottom:664.650335pt;}
.y104{bottom:664.650985pt;}
.yca{bottom:665.182229pt;}
.y4e{bottom:666.184668pt;}
.y7a{bottom:675.848892pt;}
.yb{bottom:678.683120pt;}
.y121{bottom:680.802661pt;}
.y5d{bottom:685.220650pt;}
.y4d{bottom:688.063414pt;}
.yaf{bottom:689.561790pt;}
.y103{bottom:691.468045pt;}
.y95{bottom:691.468685pt;}
.yc9{bottom:691.999284pt;}
.ye6{bottom:699.144533pt;}
.y79{bottom:702.666599pt;}
.y120{bottom:707.620372pt;}
.y4c{bottom:709.941988pt;}
.y5c{bottom:712.038670pt;}
.y2c{bottom:714.387366pt;}
.ya{bottom:716.167773pt;}
.yae{bottom:716.380146pt;}
.y94{bottom:718.287045pt;}
.yc8{bottom:718.818293pt;}
.y78{bottom:729.484307pt;}
.y4b{bottom:731.820574pt;}
.y2b{bottom:733.265950pt;}
.y11f{bottom:734.438079pt;}
.y5b{bottom:738.856710pt;}
.yad{bottom:743.197853pt;}
.y93{bottom:745.104765pt;}
.y2a{bottom:752.144697pt;}
.y9{bottom:753.652480pt;}
.y4a{bottom:753.699321pt;}
.y11e{bottom:761.255787pt;}
.yc7{bottom:762.783480pt;}
.y77{bottom:765.450147pt;}
.y5a{bottom:765.674733pt;}
.y29{bottom:771.023433pt;}
.y92{bottom:771.922465pt;}
.y49{bottom:775.578053pt;}
.yac{bottom:786.016212pt;}
.y8{bottom:791.137133pt;}
.y59{bottom:792.492772pt;}
.ye5{bottom:792.643813pt;}
.y27{bottom:794.023433pt;}
.y11d{bottom:798.740178pt;}
.y91{bottom:798.740825pt;}
.yc6{bottom:809.557880pt;}
.y76{bottom:809.558520pt;}
.yab{bottom:812.833920pt;}
.y24{bottom:812.902023pt;}
.y58{bottom:819.310483pt;}
.y48{bottom:821.094015pt;}
.y102{bottom:825.557872pt;}
.y11c{bottom:825.557873pt;}
.y90{bottom:825.558528pt;}
.y7{bottom:828.621800pt;}
.y22{bottom:830.780603pt;}
.y75{bottom:836.376880pt;}
.yc5{bottom:836.376892pt;}
.ye4{bottom:843.493268pt;}
.y57{bottom:846.128839pt;}
.y11b{bottom:852.376881pt;}
.y8f{bottom:852.376887pt;}
.yaa{bottom:857.946600pt;}
.yc4{bottom:863.194600pt;}
.y6{bottom:866.106453pt;}
.y56{bottom:872.946547pt;}
.y11a{bottom:879.194592pt;}
.y8e{bottom:879.194598pt;}
.y74{bottom:879.194600pt;}
.y1{bottom:880.303787pt;}
.y47{bottom:880.977963pt;}
.y21{bottom:880.978044pt;}
.ye3{bottom:895.346287pt;}
.y3{bottom:897.906657pt;}
.y101{bottom:906.012301pt;}
.y119{bottom:906.012303pt;}
.y73{bottom:906.012954pt;}
.y55{bottom:923.795995pt;}
.y20{bottom:932.830661pt;}
.y118{bottom:932.831312pt;}
.y19{bottom:947.027995pt;}
.y115{bottom:947.028645pt;}
.ye1{bottom:964.906251pt;}
.y43{bottom:964.906576pt;}
.y1b{bottom:964.906657pt;}
.y70{bottom:964.906901pt;}
.y45{bottom:1041.334635pt;}
.y1d{bottom:1041.334798pt;}
.h27{height:16.252604pt;}
.ha{height:16.253255pt;}
.h17{height:16.253418pt;}
.h10{height:17.878581pt;}
.hd{height:17.878743pt;}
.h24{height:22.968750pt;}
.h1e{height:28.192000pt;}
.h12{height:33.600000pt;}
.hf{height:35.757324pt;}
.h14{height:35.808000pt;}
.h25{height:38.281249pt;}
.h23{height:38.281285pt;}
.hb{height:39.786666pt;}
.h4{height:41.708334pt;}
.h1f{height:42.288008pt;}
.h5{height:44.410668pt;}
.he{height:46.170668pt;}
.h1c{height:47.488000pt;}
.h2{height:51.685335pt;}
.h1d{height:54.611021pt;}
.h21{height:54.611041pt;}
.h22{height:56.384000pt;}
.h1a{height:56.522665pt;}
.h20{height:61.082669pt;}
.h28{height:63.878907pt;}
.h13{height:68.736000pt;}
.hc{height:79.200000pt;}
.h1b{height:92.680989pt;}
.h19{height:92.681315pt;}
.h9{height:92.681396pt;}
.h16{height:92.681477pt;}
.h2a{height:99.635417pt;}
.h18{height:113.066400pt;}
.h15{height:113.066573pt;}
.h7{height:113.066733pt;}
.h26{height:113.067053pt;}
.h2b{height:113.067707pt;}
.h6{height:123.199996pt;}
.h11{height:143.029297pt;}
.h3{height:159.681345pt;}
.h2c{height:175.638021pt;}
.h8{height:175.638672pt;}
.h1{height:242.362880pt;}
.h29{height:276.544267pt;}
.h0{height:1122.666667pt;}
.w7{width:63.000011pt;}
.w3{width:185.000020pt;}
.w5{width:199.000020pt;}
.w6{width:440.999920pt;}
.w4{width:457.999920pt;}
.w2{width:513.999960pt;}
.w8{width:572.999920pt;}
.w9{width:636.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xf{left:6.000000pt;}
.xc{left:37.350510pt;}
.x4{left:75.599996pt;}
.xe{left:76.599996pt;}
.x6{left:87.921832pt;}
.x13{left:99.599996pt;}
.x17{left:104.599996pt;}
.x14{left:123.599996pt;}
.x7{left:127.284495pt;}
.x2{left:139.600007pt;}
.x16{left:140.600007pt;}
.xa{left:183.000000pt;}
.x9{left:230.599996pt;}
.xb{left:260.600013pt;}
.x10{left:276.600013pt;}
.xd{left:322.330616pt;}
.x11{left:337.396166pt;}
.x5{left:339.698296pt;}
.x1{left:396.850396pt;}
.x3{left:511.000000pt;}
.x8{left:601.350366pt;}
.x18{left:703.107386pt;}
.x19{left:707.518946pt;}
.x15{left:708.412986pt;}
.x12{left:709.776026pt;}
}




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