
    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_68c710174390adee75ceeaab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026855;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_dfa2408664fed69179f148a4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2fffe8df0740742ca7264749.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_85d21e3e7027dfa69fd8acb1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_967df799fc96458a9e180141.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.964000;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_b0437b32d209edac814ddd9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_6bc43f4819640b74bfaa2c52.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_00f5dc4e9fe12070319b1cf5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_97d3ab683a56b46a685824c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_4e1373937ff253a5ff4c79a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.021484;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_21b4958501ba5dddc0b1b0d9.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_3c5cc05c01760e1c6017cea9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900879;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_59cd1445e35e9cd175426149.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.012695;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_952606819eadf996a8de8e38.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_595d3fed3b785ea4286e61e3.woff2')format("woff");}.fff{font-family:fff;line-height:0.770020;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:-140.220454px;}
.v7{vertical-align:-36.098736px;}
.v3{vertical-align:-22.587478px;}
.va{vertical-align:-16.881202px;}
.v8{vertical-align:-14.227070px;}
.v9{vertical-align:-6.256062px;}
.v4{vertical-align:-1.137600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.432070px;}
.v1{vertical-align:4.281581px;}
.v6{vertical-align:5.427810px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000419px;}
.ls9{letter-spacing:0.019890px;}
.lsa{letter-spacing:0.019935px;}
.ls8{letter-spacing:0.019980px;}
.ls7{letter-spacing:0.020025px;}
.ls6{letter-spacing:92.991796px;}
.ls2{letter-spacing:107.980749px;}
.ls4{letter-spacing:107.983078px;}
.ls3{letter-spacing:107.983533px;}
.ls1{letter-spacing:108.000566px;}
.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;}
}
.ws8{word-spacing:-41.664000px;}
.ws4{word-spacing:-40.320000px;}
.ws1{word-spacing:-33.033603px;}
.ws6{word-spacing:-31.578002px;}
.ws21{word-spacing:-29.646001px;}
.wsf{word-spacing:-23.268000px;}
.ws9{word-spacing:-20.916000px;}
.ws7{word-spacing:-20.832000px;}
.wse{word-spacing:-20.412000px;}
.ws2{word-spacing:-16.620000px;}
.ws2c{word-spacing:-14.880000px;}
.ws29{word-spacing:-13.296001px;}
.ws2a{word-spacing:-13.122000px;}
.ws2d{word-spacing:-11.952001px;}
.ws13{word-spacing:-11.904001px;}
.ws10{word-spacing:-11.664001px;}
.ws1f{word-spacing:-10.416000px;}
.ws11{word-spacing:-10.206000px;}
.wsc{word-spacing:-2.701293px;}
.ws5{word-spacing:-0.060000px;}
.ws28{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:2.699879px;}
.wsb{word-spacing:26.179228px;}
.ws25{word-spacing:95.004662px;}
.ws22{word-spacing:106.246182px;}
.ws17{word-spacing:380.255282px;}
.ws23{word-spacing:410.591561px;}
.ws1d{word-spacing:440.879286px;}
.ws1a{word-spacing:470.831288px;}
.ws18{word-spacing:472.271288px;}
.ws19{word-spacing:474.815288px;}
.ws16{word-spacing:478.799289px;}
.ws1c{word-spacing:479.279289px;}
.ws15{word-spacing:499.439290px;}
.ws1e{word-spacing:516.047291px;}
.ws1b{word-spacing:518.543291px;}
.ws14{word-spacing:586.607295px;}
.ws20{word-spacing:665.937074px;}
.ws27{word-spacing:696.384435px;}
.ws26{word-spacing:765.594212px;}
.ws2b{word-spacing:801.336121px;}
.ws24{word-spacing:1554.720136px;}
.ws12{word-spacing:2080.203447px;}
.ws3{word-spacing:2806.748942px;}
.wsd{word-spacing:5086.693495px;}
._37{margin-left:-912.124602px;}
._33{margin-left:-526.879040px;}
._21{margin-left:-19.671001px;}
._30{margin-left:-18.240000px;}
._23{margin-left:-15.900000px;}
._8{margin-left:-14.774400px;}
._24{margin-left:-12.450000px;}
._31{margin-left:-10.895999px;}
._a{margin-left:-9.462001px;}
._2d{margin-left:-7.895024px;}
._19{margin-left:-6.768000px;}
._6{margin-left:-5.664000px;}
._2{margin-left:-4.200000px;}
._0{margin-left:-3.120000px;}
._1{margin-left:-1.920000px;}
._4{width:1.152000px;}
._26{width:2.197458px;}
._5{width:3.456000px;}
._12{width:4.596001px;}
._7{width:5.702400px;}
._f{width:6.858001px;}
._e{width:8.646000px;}
._27{width:11.556000px;}
._14{width:13.776001px;}
._25{width:15.384000px;}
._11{width:18.354001px;}
._d{width:20.231587px;}
._b{width:21.264416px;}
._c{width:22.746194px;}
._13{width:29.454002px;}
._2c{width:31.505992px;}
._28{width:33.048001px;}
._29{width:34.058103px;}
._1f{width:37.296000px;}
._2b{width:41.606889px;}
._20{width:43.344000px;}
._2f{width:44.905216px;}
._2e{width:47.526152px;}
._15{width:56.772003px;}
._1a{width:58.380000px;}
._1b{width:59.388000px;}
._1c{width:60.816000px;}
._2a{width:63.498842px;}
._1e{width:75.000000px;}
._18{width:101.772000px;}
._17{width:102.840000px;}
._16{width:105.450006px;}
._22{width:108.052483px;}
._43{width:109.358623px;}
._45{width:123.076894px;}
._50{width:127.117844px;}
._10{width:131.598008px;}
._44{width:137.917648px;}
._5b{width:142.715984px;}
._4e{width:153.693820px;}
._4b{width:167.836201px;}
._5e{width:179.308202px;}
._5c{width:180.677926px;}
._59{width:184.619986px;}
._4c{width:189.386243px;}
._56{width:191.853822px;}
._51{width:194.309927px;}
._1d{width:202.343999px;}
._34{width:208.798256px;}
._54{width:213.679468px;}
._47{width:220.277929px;}
._4d{width:225.557929px;}
._5a{width:240.491990px;}
._58{width:243.851990px;}
._4f{width:246.107990px;}
._52{width:251.565826px;}
._3d{width:256.895275px;}
._5d{width:258.559471px;}
._48{width:260.301826px;}
._36{width:268.832180px;}
._40{width:283.631276px;}
._39{width:294.095277px;}
._3b{width:317.903278px;}
._57{width:333.179996px;}
._3f{width:338.303280px;}
._35{width:351.048902px;}
._55{width:358.619997px;}
._4a{width:365.359478px;}
._53{width:371.003998px;}
._46{width:379.082254px;}
._5f{width:383.147999px;}
._3a{width:401.183284px;}
._3c{width:404.639284px;}
._38{width:414.383285px;}
._60{width:416.605698px;}
._3e{width:419.135285px;}
._42{width:515.680376px;}
._49{width:678.396017px;}
._32{width:1066.900519px;}
._41{width:1864.147446px;}
._9{width:4864.915488px;}
._3{width:4894.868614px;}
.fcf{color:rgb(255,255,255);}
.fcd{color:rgb(63,63,63);}
.fc0{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fce{color:rgb(165,165,165);}
.fc3{color:rgb(136,136,136);}
.fc6{color:rgb(51,51,51);}
.fc9{color:rgb(89,89,89);}
.fcb{color:rgb(237,125,49);}
.fcc{color:rgb(127,127,127);}
.fc4{color:rgb(68,84,106);}
.fc2{color:transparent;}
.fc5{color:rgb(47,84,150);}
.fc7{color:rgb(5,99,193);}
.fc8{color:rgb(0,134,145);}
.fca{color:rgb(51,122,183);}
.fs18{font-size:36.000001px;}
.fs17{font-size:42.000000px;}
.fs16{font-size:48.000003px;}
.fs5{font-size:54.000002px;}
.fsa{font-size:60.000000px;}
.fs4{font-size:72.000002px;}
.fs15{font-size:74.999999px;}
.fs0{font-size:78.000005px;}
.fsd{font-size:84.000000px;}
.fsf{font-size:96.000006px;}
.fs10{font-size:108.000003px;}
.fsc{font-size:114.000007px;}
.fs3{font-size:120.000001px;}
.fs8{font-size:133.200013px;}
.fs7{font-size:134.399997px;}
.fs1{font-size:144.000005px;}
.fs13{font-size:149.999999px;}
.fse{font-size:156.000011px;}
.fsb{font-size:167.999999px;}
.fs6{font-size:210.000013px;}
.fs2{font-size:216.000007px;}
.fs14{font-size:234.000007px;}
.fs12{font-size:237.000014px;}
.fs11{font-size:237.540009px;}
.fs9{font-size:237.600008px;}
.y0{bottom:0.000000px;}
.yae{bottom:11.190947px;}
.yba{bottom:11.191026px;}
.y26{bottom:11.345037px;}
.yb9{bottom:17.558346px;}
.y30{bottom:20.463983px;}
.y2b{bottom:24.464180px;}
.y4e{bottom:26.362100px;}
.y5e{bottom:27.666537px;}
.y25{bottom:29.345038px;}
.y6{bottom:31.764801px;}
.y49{bottom:34.838975px;}
.y2a{bottom:42.464180px;}
.y4d{bottom:44.362100px;}
.yec{bottom:45.124541px;}
.ycf{bottom:45.636343px;}
.y24{bottom:47.345038px;}
.y13b{bottom:47.981518px;}
.y12{bottom:56.307733px;}
.yfd{bottom:56.464233px;}
.y4c{bottom:62.362101px;}
.y83{bottom:65.225699px;}
.y6d{bottom:65.995266px;}
.y63{bottom:68.379209px;}
.y1b{bottom:69.526473px;}
.yeb{bottom:70.323417px;}
.y5{bottom:73.289901px;}
.y12e{bottom:78.062603px;}
.yce{bottom:80.292623px;}
.y13a{bottom:83.023248px;}
.y99{bottom:84.175334px;}
.y2f{bottom:84.187439px;}
.y14b{bottom:84.944370px;}
.yfc{bottom:85.867909px;}
.y62{bottom:86.379209px;}
.y82{bottom:90.425699px;}
.yaa{bottom:91.314978px;}
.yb8{bottom:94.909033px;}
.yea{bottom:95.522180px;}
.y8e{bottom:95.805213px;}
.ycd{bottom:96.278007px;}
.y41{bottom:97.154032px;}
.y17b{bottom:101.580683px;}
.y2e{bottom:102.187440px;}
.y61{bottom:104.379210px;}
.y14a{bottom:105.344370px;}
.y95{bottom:107.088955px;}
.y12b{bottom:108.700956px;}
.y11{bottom:108.723713px;}
.y98{bottom:109.375358px;}
.yb7{bottom:111.109034px;}
.yfa{bottom:114.018896px;}
.y81{bottom:115.625689px;}
.ya9{bottom:116.515002px;}
.ye9{bottom:120.721056px;}
.y8d{bottom:121.005207px;}
.y60{bottom:122.379210px;}
.y139{bottom:122.622686px;}
.y14c{bottom:125.429716px;}
.y40{bottom:126.134056px;}
.y12a{bottom:129.100959px;}
.ycc{bottom:133.468787px;}
.yf9{bottom:134.418893px;}
.y94{bottom:134.575381px;}
.y5f{bottom:140.379211px;}
.y6c{bottom:140.515257px;}
.y80{bottom:140.825679px;}
.y15d{bottom:141.582579px;}
.ya8{bottom:141.715025px;}
.y17a{bottom:142.989571px;}
.yb6{bottom:143.509033px;}
.ye8{bottom:145.919853px;}
.y8c{bottom:146.205206px;}
.ycb{bottom:149.454171px;}
.y129{bottom:149.500959px;}
.yf8{bottom:154.818890px;}
.y3f{bottom:155.114068px;}
.y10e{bottom:155.651447px;}
.y1a{bottom:155.926453px;}
.y149{bottom:159.372392px;}
.yb5{bottom:159.709030px;}
.y93{bottom:159.775415px;}
.y10{bottom:161.139725px;}
.y138{bottom:162.222069px;}
.y179{bottom:165.700554px;}
.y7f{bottom:166.025679px;}
.y43{bottom:168.084429px;}
.ye7{bottom:169.630472px;}
.yf7{bottom:175.218887px;}
.y6b{bottom:177.775259px;}
.y148{bottom:179.772392px;}
.y54{bottom:181.771408px;}
.y3e{bottom:184.094080px;}
.y92{bottom:184.975450px;}
.y128{bottom:185.161999px;}
.yca{bottom:185.440639px;}
.y7e{bottom:191.225669px;}
.y10d{bottom:191.585736px;}
.ye6{bottom:191.852935px;}
.ya7{bottom:192.115094px;}
.yf6{bottom:195.618884px;}
.y14d{bottom:198.531025px;}
.y19{bottom:199.126454px;}
.y15c{bottom:200.842294px;}
.yc9{bottom:201.426057px;}
.y137{bottom:201.821564px;}
.y5d{bottom:205.399859px;}
.y8b{bottom:208.886471px;}
.y97{bottom:210.175473px;}
.ye5{bottom:214.075353px;}
.y6a{bottom:215.035248px;}
.y15b{bottom:215.242293px;}
.yf5{bottom:216.018883px;}
.y3d{bottom:216.224081px;}
.y7d{bottom:216.425664px;}
.ya6{bottom:217.315117px;}
.y4{bottom:218.274911px;}
.y127{bottom:218.656286px;}
.y1{bottom:218.733846px;}
.y147{bottom:225.952077px;}
.y10c{bottom:227.519869px;}
.y8a{bottom:234.086460px;}
.y16f{bottom:234.734990px;}
.y91{bottom:235.375497px;}
.ye4{bottom:236.297817px;}
.yf4{bottom:236.418886px;}
.yc8{bottom:237.412445px;}
.y126{bottom:239.056285px;}
.y136{bottom:241.420890px;}
.y7c{bottom:241.625671px;}
.y18{bottom:242.326444px;}
.ya5{bottom:242.515141px;}
.y146{bottom:246.352077px;}
.yc7{bottom:253.397796px;}
.y3c{bottom:255.554071px;}
.yf3{bottom:256.818886px;}
.ye3{bottom:258.520269px;}
.y89{bottom:259.286461px;}
.y125{bottom:259.456288px;}
.y90{bottom:260.575531px;}
.y5c{bottom:260.899824px;}
.y10b{bottom:263.453979px;}
.y21{bottom:266.208721px;}
.y7b{bottom:266.825665px;}
.ya4{bottom:267.715175px;}
.y142{bottom:274.217687px;}
.y165{bottom:276.855656px;}
.y124{bottom:279.856288px;}
.y16e{bottom:280.656849px;}
.ye2{bottom:280.742698px;}
.y135{bottom:281.020329px;}
.y88{bottom:284.486451px;}
.y17{bottom:285.526446px;}
.y8f{bottom:285.775554px;}
.y152{bottom:286.677490px;}
.yfb{bottom:287.128334px;}
.y69{bottom:289.555273px;}
.y164{bottom:289.815655px;}
.y7a{bottom:292.025663px;}
.y3b{bottom:294.884061px;}
.yf{bottom:295.971745px;}
.yc6{bottom:299.193171px;}
.y10a{bottom:299.388055px;}
.yd1{bottom:301.362172px;}
.y5b{bottom:301.399825px;}
.y113{bottom:301.920947px;}
.y145{bottom:302.850324px;}
.ye1{bottom:302.965139px;}
.y119{bottom:304.755351px;}
.y116{bottom:306.575793px;}
.y87{bottom:309.686446px;}
.y96{bottom:310.975555px;}
.y123{bottom:315.517294px;}
.ya3{bottom:318.115199px;}
.y53{bottom:319.254307px;}
.y134{bottom:320.619723px;}
.yf1{bottom:320.854484px;}
.y20{bottom:323.151734px;}
.y144{bottom:323.250326px;}
.ye0{bottom:325.187579px;}
.y16{bottom:328.726413px;}
.y178{bottom:328.947150px;}
.y163{bottom:329.880306px;}
.yd2{bottom:332.296635px;}
.y155{bottom:333.143625px;}
.y3a{bottom:334.214051px;}
.y86{bottom:334.886452px;}
.y79{bottom:336.175545px;}
.ya{bottom:337.731724px;}
.yf0{bottom:341.254481px;}
.y5a{bottom:341.899826px;}
.y162{bottom:342.840304px;}
.ya2{bottom:343.315189px;}
.y143{bottom:343.650326px;}
.y112{bottom:345.120938px;}
.ydf{bottom:347.410031px;}
.y118{bottom:347.955341px;}
.ye{bottom:348.387758px;}
.y122{bottom:348.709114px;}
.y110{bottom:349.454404px;}
.y115{bottom:349.775783px;}
.y187{bottom:355.489704px;}
.y181{bottom:357.523929px;}
.y177{bottom:358.583836px;}
.y183{bottom:359.457871px;}
.y85{bottom:360.086446px;}
.y133{bottom:360.219150px;}
.y78{bottom:361.375546px;}
.yef{bottom:361.654480px;}
.y68{bottom:364.075287px;}
.y52{bottom:364.614297px;}
.yc5{bottom:365.050393px;}
.y141{bottom:368.209955px;}
.ya1{bottom:368.515190px;}
.y121{bottom:369.109111px;}
.yde{bottom:369.632461px;}
.y15{bottom:371.926415px;}
.y39{bottom:373.544041px;}
.y1f{bottom:380.094736px;}
.yc4{bottom:381.035777px;}
.y186{bottom:381.182794px;}
.yee{bottom:382.054483px;}
.y59{bottom:382.399828px;}
.y180{bottom:383.216974px;}
.y154{bottom:384.768291px;}
.y84{bottom:385.286445px;}
.y77{bottom:386.575535px;}
.y10f{bottom:388.303569px;}
.y111{bottom:388.320939px;}
.y120{bottom:389.509108px;}
.y117{bottom:391.155343px;}
.ydd{bottom:391.854924px;}
.y114{bottom:392.975784px;}
.ya0{bottom:393.715179px;}
.y185{bottom:394.142792px;}
.y176{bottom:395.118043px;}
.y167{bottom:395.572678px;}
.y17f{bottom:396.176972px;}
.y182{bottom:398.319377px;}
.y153{bottom:399.168291px;}
.y132{bottom:399.818533px;}
.y3{bottom:400.426439px;}
.y171{bottom:401.155378px;}
.yed{bottom:402.454483px;}
.y13c{bottom:403.899806px;}
.y9{bottom:407.931726px;}
.y11f{bottom:409.909105px;}
.y51{bottom:409.974287px;}
.y76{bottom:411.775525px;}
.y38{bottom:412.874042px;}
.ydc{bottom:414.077342px;}
.yc3{bottom:417.022189px;}
.y9f{bottom:418.915169px;}
.y58{bottom:422.899829px;}
.yf2{bottom:423.103320px;}
.y175{bottom:424.754763px;}
.y166{bottom:425.162800px;}
.y11e{bottom:430.309104px;}
.y109{bottom:430.362157px;}
.y108{bottom:432.904827px;}
.yc2{bottom:433.007595px;}
.ydb{bottom:436.299806px;}
.y75{bottom:436.975526px;}
.y1e{bottom:437.037727px;}
.y67{bottom:438.595278px;}
.y131{bottom:439.417949px;}
.y170{bottom:440.647188px;}
.y18c{bottom:441.825001px;}
.y151{bottom:443.170512px;}
.y102{bottom:448.773412px;}
.y11d{bottom:450.709106px;}
.y37{bottom:452.204044px;}
.y50{bottom:455.334277px;}
.y18b{bottom:456.225007px;}
.y150{bottom:457.570509px;}
.y14{bottom:458.326402px;}
.y140{bottom:458.443105px;}
.yda{bottom:458.522224px;}
.y74{bottom:462.175515px;}
.yb4{bottom:463.353784px;}
.y184{bottom:464.017186px;}
.y107{bottom:464.603951px;}
.y11a{bottom:466.894137px;}
.y174{bottom:467.507239px;}
.yc1{bottom:468.994006px;}
.y101{bottom:469.173409px;}
.y9e{bottom:469.315159px;}
.y15f{bottom:470.165659px;}
.y161{bottom:470.284977px;}
.y18a{bottom:470.625001px;}
.y11c{bottom:471.109107px;}
.y29{bottom:471.229212px;}
.y14f{bottom:471.970508px;}
.y57{bottom:473.299830px;}
.y8{bottom:478.131728px;}
.y172{bottom:478.417186px;}
.y13f{bottom:478.843107px;}
.y130{bottom:479.017377px;}
.yb3{bottom:479.553779px;}
.yd9{bottom:480.744687px;}
.yd{bottom:483.219743px;}
.yc0{bottom:484.979391px;}
.y189{bottom:485.024998px;}
.y73{bottom:487.375510px;}
.y100{bottom:489.573408px;}
.y22{bottom:490.166056px;}
.y2{bottom:490.176924px;}
.y36{bottom:491.534045px;}
.y1d{bottom:493.980729px;}
.y9d{bottom:494.515154px;}
.yb2{bottom:495.753777px;}
.y173{bottom:497.143925px;}
.y13e{bottom:499.243108px;}
.y188{bottom:499.424998px;}
.y15e{bottom:499.542943px;}
.y160{bottom:499.874953px;}
.y4f{bottom:500.694271px;}
.y106{bottom:501.048553px;}
.yd8{bottom:502.967105px;}
.y11b{bottom:506.770146px;}
.yff{bottom:509.973411px;}
.y12f{bottom:511.416480px;}
.y14e{bottom:511.799750px;}
.y72{bottom:512.575517px;}
.y32{bottom:515.980622px;}
.y28{bottom:516.589202px;}
.y9c{bottom:519.715161px;}
.y13d{bottom:520.093342px;}
.y169{bottom:520.118023px;}
.yd7{bottom:525.189546px;}
.y56{bottom:527.299832px;}
.y66{bottom:528.115270px;}
.yb1{bottom:528.153777px;}
.yfe{bottom:530.373411px;}
.y15a{bottom:530.762358px;}
.y35{bottom:530.864046px;}
.ybf{bottom:531.176807px;}
.yd0{bottom:531.707955px;}
.y17e{bottom:533.480200px;}
.y16d{bottom:533.678132px;}
.y12d{bottom:534.791794px;}
.y71{bottom:537.775511px;}
.y105{bottom:543.757549px;}
.yb0{bottom:544.353776px;}
.y13{bottom:544.726409px;}
.y9b{bottom:544.915155px;}
.y159{bottom:545.162358px;}
.y7{bottom:548.331730px;}
.y12c{bottom:549.191793px;}
.yc{bottom:550.635734px;}
.y1c{bottom:550.923730px;}
.y103{bottom:558.582271px;}
.y27{bottom:561.949195px;}
.y70{bottom:562.975509px;}
.y16c{bottom:563.314841px;}
.y65{bottom:565.375268px;}
.y31{bottom:566.380617px;}
.y158{bottom:569.993956px;}
.y2d{bottom:570.113266px;}
.y9a{bottom:570.115153px;}
.y34{bottom:570.194047px;}
.y168{bottom:576.414444px;}
.ybe{bottom:577.053409px;}
.y42{bottom:577.221758px;}
.y17d{bottom:577.260579px;}
.ybd{bottom:577.456530px;}
.y104{bottom:588.727321px;}
.y33{bottom:595.273340px;}
.y17c{bottom:595.963219px;}
.y16b{bottom:597.975349px;}
.y4b{bottom:601.001195px;}
.y47{bottom:601.056365px;}
.y46{bottom:604.789126px;}
.yaf{bottom:605.582949px;}
.y45{bottom:610.388139px;}
.y48{bottom:617.853661px;}
.y16a{bottom:618.244374px;}
.yd4{bottom:629.027713px;}
.yd3{bottom:629.635730px;}
.y2c{bottom:636.057617px;}
.yb{bottom:638.293213px;}
.y6f{bottom:641.860747px;}
.y55{bottom:653.345944px;}
.y64{bottom:653.588950px;}
.y23{bottom:662.186676px;}
.y44{bottom:664.053062px;}
.y4a{bottom:665.136998px;}
.y6e{bottom:665.965285px;}
.ybb{bottom:689.367045px;}
.ybc{bottom:690.928462px;}
.y157{bottom:699.478928px;}
.yad{bottom:705.714634px;}
.yd6{bottom:729.355272px;}
.yac{bottom:729.875664px;}
.yd5{bottom:759.900825px;}
.yab{bottom:760.421218px;}
.y156{bottom:762.828188px;}
.h33{height:28.880860px;}
.h2e{height:29.223633px;}
.h29{height:30.597656px;}
.h2f{height:33.407226px;}
.h2a{height:33.489258px;}
.h25{height:33.489573px;}
.h30{height:36.574550px;}
.h38{height:37.640627px;}
.h31{height:37.738835px;}
.h35{height:37.921877px;}
.h2c{height:38.179690px;}
.h24{height:38.273440px;}
.h34{height:38.507815px;}
.h16{height:39.339845px;}
.h27{height:42.345704px;}
.h2b{height:42.952150px;}
.h26{height:43.057619px;}
.hc{height:43.710938px;}
.h1a{height:44.760000px;}
.h36{height:45.615235px;}
.h32{height:46.219900px;}
.hf{height:46.980000px;}
.h1d{height:47.308028px;}
.h6{height:47.339200px;}
.h2d{height:47.724610px;}
.h28{height:47.841797px;}
.h39{height:48.134766px;}
.h37{height:50.097314px;}
.h5{height:51.679689px;}
.h1f{height:59.802246px;}
.h23{height:61.195312px;}
.h1{height:62.194340px;}
.h20{height:65.871094px;}
.h21{height:66.814453px;}
.h22{height:66.978515px;}
.h12{height:67.388672px;}
.h14{height:74.496005px;}
.h10{height:81.826177px;}
.h11{height:83.050786px;}
.h15{height:83.808003px;}
.h1c{height:86.642581px;}
.h4{height:95.683594px;}
.ha{height:106.859190px;}
.h9{height:107.821872px;}
.h2{height:114.820316px;}
.h7{height:115.523441px;}
.h19{height:120.336913px;}
.h13{height:124.388681px;}
.he{height:130.368000px;}
.h1e{height:133.957031px;}
.hd{height:134.777343px;}
.h8{height:167.446299px;}
.h3{height:172.230474px;}
.h1b{height:186.583014px;}
.h18{height:188.975108px;}
.h17{height:189.405681px;}
.hb{height:189.453522px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x32{left:32.989962px;}
.x15{left:34.417324px;}
.x36{left:40.594061px;}
.x5{left:43.481931px;}
.x3b{left:47.694099px;}
.x58{left:49.152876px;}
.x5d{left:50.440161px;}
.x38{left:52.905524px;}
.x33{left:57.006381px;}
.x35{left:58.397481px;}
.x1{left:60.087165px;}
.x11{left:61.848429px;}
.x62{left:66.829609px;}
.x3{left:70.030633px;}
.x57{left:74.192717px;}
.x34{left:75.255947px;}
.x2{left:76.287048px;}
.x3c{left:78.273428px;}
.x59{left:82.994526px;}
.x9{left:87.180123px;}
.x8{left:89.045085px;}
.x1d{left:91.257877px;}
.x6{left:94.302121px;}
.xe{left:95.937178px;}
.x24{left:99.628730px;}
.x28{left:101.423984px;}
.x1e{left:105.001946px;}
.x17{left:109.125003px;}
.x68{left:118.892243px;}
.x29{left:120.997084px;}
.x22{left:122.795086px;}
.x21{left:123.809055px;}
.x5c{left:125.948866px;}
.x23{left:133.406609px;}
.xa{left:141.180125px;}
.x7{left:143.046263px;}
.xb{left:144.339524px;}
.xf{left:149.937294px;}
.x1f{left:159.001948px;}
.x14{left:165.153549px;}
.xc{left:198.339526px;}
.x12{left:199.833678px;}
.x1c{left:202.098438px;}
.x27{left:216.301889px;}
.x56{left:226.555758px;}
.xd{left:247.083668px;}
.x25{left:265.792761px;}
.x3d{left:267.386825px;}
.x3a{left:273.952685px;}
.x2c{left:277.244413px;}
.x31{left:278.672836px;}
.x50{left:281.290880px;}
.x4f{left:282.541070px;}
.x4b{left:285.920087px;}
.x49{left:291.475517px;}
.x4c{left:293.507976px;}
.x4e{left:295.822922px;}
.x4d{left:298.146160px;}
.x3e{left:301.354952px;}
.x19{left:302.633863px;}
.x1a{left:310.098430px;}
.x4a{left:312.636610px;}
.x2b{left:315.106548px;}
.x66{left:317.007280px;}
.x5e{left:318.340641px;}
.x63{left:319.401618px;}
.x5f{left:320.685130px;}
.x67{left:322.695832px;}
.x65{left:327.993423px;}
.x64{left:329.276936px;}
.x3f{left:330.580653px;}
.x61{left:339.401936px;}
.x5a{left:350.236530px;}
.x6c{left:354.439620px;}
.x5b{left:359.477505px;}
.x41{left:363.953858px;}
.x6a{left:365.495344px;}
.x69{left:370.304292px;}
.x60{left:376.549752px;}
.x42{left:396.044450px;}
.x48{left:423.256289px;}
.x52{left:489.857641px;}
.x51{left:492.908866px;}
.x18{left:506.991144px;}
.x55{left:515.644149px;}
.x54{left:557.596199px;}
.x46{left:560.172663px;}
.x1b{left:589.431506px;}
.x39{left:601.654632px;}
.x72{left:611.703807px;}
.x40{left:621.875562px;}
.x43{left:628.183708px;}
.x6d{left:636.695795px;}
.x6b{left:643.271229px;}
.x6e{left:650.804758px;}
.x2d{left:655.036333px;}
.x2a{left:673.934140px;}
.x20{left:753.333707px;}
.x13{left:760.432119px;}
.x37{left:763.387562px;}
.x53{left:877.611178px;}
.x47{left:882.140768px;}
.x71{left:899.839941px;}
.x70{left:910.895722px;}
.x6f{left:935.443987px;}
.x4{left:939.242168px;}
.x10{left:977.075851px;}
.x26{left:1000.517725px;}
.x44{left:1127.996136px;}
.x16{left:1180.733213px;}
.x30{left:1263.676540px;}
.x45{left:1322.849405px;}
.x2f{left:1345.533231px;}
.x2e{left:1356.672193px;}
@media print{
.v2{vertical-align:-124.640404pt;}
.v7{vertical-align:-32.087765pt;}
.v3{vertical-align:-20.077759pt;}
.va{vertical-align:-15.005512pt;}
.v8{vertical-align:-12.646284pt;}
.v9{vertical-align:-5.560944pt;}
.v4{vertical-align:-1.011200pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.161840pt;}
.v1{vertical-align:3.805850pt;}
.v6{vertical-align:4.824720pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000372pt;}
.ls9{letter-spacing:0.017680pt;}
.lsa{letter-spacing:0.017720pt;}
.ls8{letter-spacing:0.017760pt;}
.ls7{letter-spacing:0.017800pt;}
.ls6{letter-spacing:82.659374pt;}
.ls2{letter-spacing:95.982888pt;}
.ls4{letter-spacing:95.984958pt;}
.ls3{letter-spacing:95.985362pt;}
.ls1{letter-spacing:96.000503pt;}
.ws8{word-spacing:-37.034667pt;}
.ws4{word-spacing:-35.840000pt;}
.ws1{word-spacing:-29.363203pt;}
.ws6{word-spacing:-28.069335pt;}
.ws21{word-spacing:-26.352001pt;}
.wsf{word-spacing:-20.682667pt;}
.ws9{word-spacing:-18.592000pt;}
.ws7{word-spacing:-18.517333pt;}
.wse{word-spacing:-18.144000pt;}
.ws2{word-spacing:-14.773333pt;}
.ws2c{word-spacing:-13.226667pt;}
.ws29{word-spacing:-11.818667pt;}
.ws2a{word-spacing:-11.664000pt;}
.ws2d{word-spacing:-10.624001pt;}
.ws13{word-spacing:-10.581334pt;}
.ws10{word-spacing:-10.368001pt;}
.ws1f{word-spacing:-9.258667pt;}
.ws11{word-spacing:-9.072000pt;}
.wsc{word-spacing:-2.401150pt;}
.ws5{word-spacing:-0.053333pt;}
.ws28{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:2.399893pt;}
.wsb{word-spacing:23.270425pt;}
.ws25{word-spacing:84.448589pt;}
.ws22{word-spacing:94.441051pt;}
.ws17{word-spacing:338.004695pt;}
.ws23{word-spacing:364.970276pt;}
.ws1d{word-spacing:391.892699pt;}
.ws1a{word-spacing:418.516701pt;}
.ws18{word-spacing:419.796701pt;}
.ws19{word-spacing:422.058034pt;}
.ws16{word-spacing:425.599368pt;}
.ws1c{word-spacing:426.026034pt;}
.ws15{word-spacing:443.946035pt;}
.ws1e{word-spacing:458.708703pt;}
.ws1b{word-spacing:460.927370pt;}
.ws14{word-spacing:521.428707pt;}
.ws20{word-spacing:591.944066pt;}
.ws27{word-spacing:619.008387pt;}
.ws26{word-spacing:680.528189pt;}
.ws2b{word-spacing:712.298774pt;}
.ws24{word-spacing:1381.973454pt;}
.ws12{word-spacing:1849.069731pt;}
.ws3{word-spacing:2494.887949pt;}
.wsd{word-spacing:4521.505329pt;}
._37{margin-left:-810.777424pt;}
._33{margin-left:-468.336925pt;}
._21{margin-left:-17.485334pt;}
._30{margin-left:-16.213333pt;}
._23{margin-left:-14.133333pt;}
._8{margin-left:-13.132800pt;}
._24{margin-left:-11.066667pt;}
._31{margin-left:-9.685333pt;}
._a{margin-left:-8.410667pt;}
._2d{margin-left:-7.017799pt;}
._19{margin-left:-6.016000pt;}
._6{margin-left:-5.034667pt;}
._2{margin-left:-3.733333pt;}
._0{margin-left:-2.773334pt;}
._1{margin-left:-1.706667pt;}
._4{width:1.024000pt;}
._26{width:1.953296pt;}
._5{width:3.072000pt;}
._12{width:4.085334pt;}
._7{width:5.068800pt;}
._f{width:6.096001pt;}
._e{width:7.685334pt;}
._27{width:10.272000pt;}
._14{width:12.245334pt;}
._25{width:13.674667pt;}
._11{width:16.314668pt;}
._d{width:17.983633pt;}
._b{width:18.901703pt;}
._c{width:20.218839pt;}
._13{width:26.181335pt;}
._2c{width:28.005326pt;}
._28{width:29.376001pt;}
._29{width:30.273869pt;}
._1f{width:33.152000pt;}
._2b{width:36.983901pt;}
._20{width:38.528000pt;}
._2f{width:39.915748pt;}
._2e{width:42.245468pt;}
._15{width:50.464003pt;}
._1a{width:51.893333pt;}
._1b{width:52.789333pt;}
._1c{width:54.058666pt;}
._2a{width:56.443415pt;}
._1e{width:66.666666pt;}
._18{width:90.464000pt;}
._17{width:91.413333pt;}
._16{width:93.733339pt;}
._22{width:96.046652pt;}
._43{width:97.207665pt;}
._45{width:109.401684pt;}
._50{width:112.993639pt;}
._10{width:116.976007pt;}
._44{width:122.593465pt;}
._5b{width:126.858652pt;}
._4e{width:136.616728pt;}
._4b{width:149.187734pt;}
._5e{width:159.385068pt;}
._5c{width:160.602601pt;}
._59{width:164.106654pt;}
._4c{width:168.343327pt;}
._56{width:170.536731pt;}
._51{width:172.719935pt;}
._1d{width:179.861333pt;}
._34{width:185.598450pt;}
._54{width:189.937305pt;}
._47{width:195.802603pt;}
._4d{width:200.495937pt;}
._5a{width:213.770658pt;}
._58{width:216.757324pt;}
._4f{width:218.762658pt;}
._52{width:223.614067pt;}
._3d{width:228.351355pt;}
._5d{width:229.830641pt;}
._48{width:231.379401pt;}
._36{width:238.961938pt;}
._40{width:252.116690pt;}
._39{width:261.418024pt;}
._3b{width:282.580692pt;}
._57{width:296.159996pt;}
._3f{width:300.714026pt;}
._35{width:312.043468pt;}
._55{width:318.773331pt;}
._4a{width:324.763981pt;}
._53{width:329.781331pt;}
._46{width:336.962004pt;}
._5f{width:340.575999pt;}
._3a{width:356.607363pt;}
._3c{width:359.679363pt;}
._38{width:368.340697pt;}
._60{width:370.316176pt;}
._3e{width:372.564698pt;}
._42{width:458.382556pt;}
._49{width:603.018682pt;}
._32{width:948.356017pt;}
._41{width:1657.019952pt;}
._9{width:4324.369322pt;}
._3{width:4350.994323pt;}
.fs18{font-size:32.000001pt;}
.fs17{font-size:37.333333pt;}
.fs16{font-size:42.666669pt;}
.fs5{font-size:48.000002pt;}
.fsa{font-size:53.333334pt;}
.fs4{font-size:64.000002pt;}
.fs15{font-size:66.666666pt;}
.fs0{font-size:69.333338pt;}
.fsd{font-size:74.666666pt;}
.fsf{font-size:85.333339pt;}
.fs10{font-size:96.000003pt;}
.fsc{font-size:101.333339pt;}
.fs3{font-size:106.666667pt;}
.fs8{font-size:118.400012pt;}
.fs7{font-size:119.466664pt;}
.fs1{font-size:128.000004pt;}
.fs13{font-size:133.333332pt;}
.fse{font-size:138.666676pt;}
.fsb{font-size:149.333333pt;}
.fs6{font-size:186.666678pt;}
.fs2{font-size:192.000006pt;}
.fs14{font-size:208.000007pt;}
.fs12{font-size:210.666679pt;}
.fs11{font-size:211.146675pt;}
.fs9{font-size:211.200007pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:9.947508pt;}
.yba{bottom:9.947578pt;}
.y26{bottom:10.084477pt;}
.yb9{bottom:15.607418pt;}
.y30{bottom:18.190208pt;}
.y2b{bottom:21.745938pt;}
.y4e{bottom:23.432978pt;}
.y5e{bottom:24.592478pt;}
.y25{bottom:26.084478pt;}
.y6{bottom:28.235378pt;}
.y49{bottom:30.967978pt;}
.y2a{bottom:37.745938pt;}
.y4d{bottom:39.432978pt;}
.yec{bottom:40.110703pt;}
.ycf{bottom:40.565638pt;}
.y24{bottom:42.084478pt;}
.y13b{bottom:42.650238pt;}
.y12{bottom:50.051319pt;}
.yfd{bottom:50.190430pt;}
.y4c{bottom:55.432979pt;}
.y83{bottom:57.978399pt;}
.y6d{bottom:58.662459pt;}
.y63{bottom:60.781519pt;}
.y1b{bottom:61.801309pt;}
.yeb{bottom:62.509704pt;}
.y5{bottom:65.146579pt;}
.y12e{bottom:69.388980pt;}
.yce{bottom:71.371220pt;}
.y13a{bottom:73.798442pt;}
.y99{bottom:74.822519pt;}
.y2f{bottom:74.833279pt;}
.y14b{bottom:75.506106pt;}
.yfc{bottom:76.327030pt;}
.y62{bottom:76.781519pt;}
.y82{bottom:80.378400pt;}
.yaa{bottom:81.168870pt;}
.yb8{bottom:84.363585pt;}
.yea{bottom:84.908605pt;}
.y8e{bottom:85.160190pt;}
.ycd{bottom:85.580451pt;}
.y41{bottom:86.359140pt;}
.y17b{bottom:90.293940pt;}
.y2e{bottom:90.833280pt;}
.y61{bottom:92.781520pt;}
.y14a{bottom:93.639440pt;}
.y95{bottom:95.190182pt;}
.y12b{bottom:96.623072pt;}
.y11{bottom:96.643300pt;}
.y98{bottom:97.222540pt;}
.yb7{bottom:98.763586pt;}
.yfa{bottom:101.350130pt;}
.y81{bottom:102.778390pt;}
.ya9{bottom:103.568890pt;}
.ye9{bottom:107.307605pt;}
.y8d{bottom:107.560184pt;}
.y60{bottom:108.781520pt;}
.y139{bottom:108.997943pt;}
.y14c{bottom:111.493081pt;}
.y40{bottom:112.119161pt;}
.y12a{bottom:114.756408pt;}
.ycc{bottom:118.638922pt;}
.yf9{bottom:119.483461pt;}
.y94{bottom:119.622561pt;}
.y5f{bottom:124.781521pt;}
.y6c{bottom:124.902451pt;}
.y80{bottom:125.178381pt;}
.y15d{bottom:125.851181pt;}
.ya8{bottom:125.968911pt;}
.y17a{bottom:127.101841pt;}
.yb6{bottom:127.563585pt;}
.ye8{bottom:129.706536pt;}
.y8c{bottom:129.960183pt;}
.ycb{bottom:132.848152pt;}
.y129{bottom:132.889741pt;}
.yf8{bottom:137.616791pt;}
.y3f{bottom:137.879171pt;}
.y10e{bottom:138.356841pt;}
.y1a{bottom:138.601291pt;}
.y149{bottom:141.664348pt;}
.yb5{bottom:141.963583pt;}
.y93{bottom:142.022592pt;}
.y10{bottom:143.235312pt;}
.y138{bottom:144.197395pt;}
.y179{bottom:147.289382pt;}
.y7f{bottom:147.578382pt;}
.y43{bottom:149.408382pt;}
.ye7{bottom:150.782642pt;}
.yf7{bottom:155.750122pt;}
.y6b{bottom:158.022452pt;}
.y148{bottom:159.797682pt;}
.y54{bottom:161.574585pt;}
.y3e{bottom:163.639182pt;}
.y92{bottom:164.422622pt;}
.y128{bottom:164.588443pt;}
.yca{bottom:164.836123pt;}
.y7e{bottom:169.978372pt;}
.y10d{bottom:170.298432pt;}
.ye6{bottom:170.535942pt;}
.ya7{bottom:170.768972pt;}
.yf6{bottom:173.883453pt;}
.y14d{bottom:176.472023pt;}
.y19{bottom:177.001293pt;}
.y15c{bottom:178.526484pt;}
.yc9{bottom:179.045384pt;}
.y137{bottom:179.396946pt;}
.y5d{bottom:182.577653pt;}
.y8b{bottom:185.676863pt;}
.y97{bottom:186.822643pt;}
.ye5{bottom:190.289203pt;}
.y6a{bottom:191.142443pt;}
.y15b{bottom:191.326483pt;}
.yf5{bottom:192.016785pt;}
.y3d{bottom:192.199183pt;}
.y7d{bottom:192.378368pt;}
.ya6{bottom:193.168993pt;}
.y4{bottom:194.022143pt;}
.y127{bottom:194.361143pt;}
.y1{bottom:194.430085pt;}
.y147{bottom:200.846290pt;}
.y10c{bottom:202.239883pt;}
.y8a{bottom:208.076854pt;}
.y16f{bottom:208.653324pt;}
.y91{bottom:209.222664pt;}
.ye4{bottom:210.042504pt;}
.yf4{bottom:210.150121pt;}
.yc8{bottom:211.033285pt;}
.y126{bottom:212.494476pt;}
.y136{bottom:214.596347pt;}
.y7c{bottom:214.778374pt;}
.y18{bottom:215.401284pt;}
.ya5{bottom:215.569014pt;}
.y146{bottom:218.979624pt;}
.yc7{bottom:225.242485pt;}
.y3c{bottom:227.159174pt;}
.yf3{bottom:228.283454pt;}
.ye3{bottom:229.795794pt;}
.y89{bottom:230.476854pt;}
.y125{bottom:230.627811pt;}
.y90{bottom:231.622694pt;}
.y5c{bottom:231.910954pt;}
.y10b{bottom:234.181314pt;}
.y21{bottom:236.629975pt;}
.y7b{bottom:237.178369pt;}
.ya4{bottom:237.969045pt;}
.y142{bottom:243.749055pt;}
.y165{bottom:246.093917pt;}
.y124{bottom:248.761145pt;}
.y16e{bottom:249.472755pt;}
.ye2{bottom:249.549065pt;}
.y135{bottom:249.795848pt;}
.y88{bottom:252.876845pt;}
.y17{bottom:253.801285pt;}
.y8f{bottom:254.022715pt;}
.y152{bottom:254.824436pt;}
.yfb{bottom:255.225186pt;}
.y69{bottom:257.382465pt;}
.y164{bottom:257.613915pt;}
.y7a{bottom:259.578367pt;}
.y3b{bottom:262.119165pt;}
.yf{bottom:263.085995pt;}
.yc6{bottom:265.949485pt;}
.y10a{bottom:266.122715pt;}
.yd1{bottom:267.877487pt;}
.y5b{bottom:267.910956pt;}
.y113{bottom:268.374176pt;}
.y145{bottom:269.200288pt;}
.ye1{bottom:269.302346pt;}
.y119{bottom:270.893646pt;}
.y116{bottom:272.511816pt;}
.y87{bottom:275.276841pt;}
.y96{bottom:276.422716pt;}
.y123{bottom:280.459817pt;}
.ya3{bottom:282.769066pt;}
.y53{bottom:283.781606pt;}
.y134{bottom:284.995309pt;}
.yf1{bottom:285.203986pt;}
.y20{bottom:287.245986pt;}
.y144{bottom:287.333623pt;}
.ye0{bottom:289.055626pt;}
.y16{bottom:292.201256pt;}
.y178{bottom:292.397466pt;}
.y163{bottom:293.226938pt;}
.yd2{bottom:295.374786pt;}
.y155{bottom:296.127666pt;}
.y3a{bottom:297.079156pt;}
.y86{bottom:297.676846pt;}
.y79{bottom:298.822707pt;}
.ya{bottom:300.205977pt;}
.yf0{bottom:303.337317pt;}
.y5a{bottom:303.910957pt;}
.y162{bottom:304.746937pt;}
.ya2{bottom:305.169057pt;}
.y143{bottom:305.466957pt;}
.y112{bottom:306.774167pt;}
.ydf{bottom:308.808917pt;}
.y118{bottom:309.293637pt;}
.ye{bottom:309.678007pt;}
.y122{bottom:309.963657pt;}
.y110{bottom:310.626137pt;}
.y115{bottom:310.911807pt;}
.y187{bottom:315.990848pt;}
.y181{bottom:317.799048pt;}
.y177{bottom:318.741187pt;}
.y183{bottom:319.518108pt;}
.y85{bottom:320.076841pt;}
.y133{bottom:320.194800pt;}
.y78{bottom:321.222707pt;}
.yef{bottom:321.470649pt;}
.y68{bottom:323.622477pt;}
.y52{bottom:324.101597pt;}
.yc5{bottom:324.489238pt;}
.y141{bottom:327.297737pt;}
.ya1{bottom:327.569057pt;}
.y121{bottom:328.096987pt;}
.yde{bottom:328.562187pt;}
.y15{bottom:330.601258pt;}
.y39{bottom:332.039148pt;}
.y1f{bottom:337.861988pt;}
.yc4{bottom:338.698469pt;}
.y186{bottom:338.829150pt;}
.yee{bottom:339.603985pt;}
.y59{bottom:339.910958pt;}
.y180{bottom:340.637310pt;}
.y154{bottom:342.016259pt;}
.y84{bottom:342.476840pt;}
.y77{bottom:343.622698pt;}
.y10f{bottom:345.158728pt;}
.y111{bottom:345.174168pt;}
.y120{bottom:346.230318pt;}
.y117{bottom:347.693638pt;}
.ydd{bottom:348.315488pt;}
.y114{bottom:349.311808pt;}
.ya0{bottom:349.969048pt;}
.y185{bottom:350.349148pt;}
.y176{bottom:351.216038pt;}
.y167{bottom:351.620158pt;}
.y17f{bottom:352.157308pt;}
.y182{bottom:354.061668pt;}
.y153{bottom:354.816258pt;}
.y132{bottom:355.394251pt;}
.y3{bottom:355.934612pt;}
.y171{bottom:356.582558pt;}
.yed{bottom:357.737318pt;}
.y13c{bottom:359.022049pt;}
.y9{bottom:362.605979pt;}
.y11f{bottom:364.363649pt;}
.y51{bottom:364.421589pt;}
.y76{bottom:366.022689pt;}
.y38{bottom:366.999149pt;}
.ydc{bottom:368.068749pt;}
.yc3{bottom:370.686390pt;}
.y9f{bottom:372.369039pt;}
.y58{bottom:375.910959pt;}
.yf2{bottom:376.091840pt;}
.y175{bottom:377.559789pt;}
.y166{bottom:377.922489pt;}
.y11e{bottom:382.496981pt;}
.y109{bottom:382.544139pt;}
.y108{bottom:384.804290pt;}
.yc2{bottom:384.895640pt;}
.ydb{bottom:387.822049pt;}
.y75{bottom:388.422689pt;}
.y1e{bottom:388.477979pt;}
.y67{bottom:389.862469pt;}
.y131{bottom:390.593732pt;}
.y170{bottom:391.686389pt;}
.y18c{bottom:392.733335pt;}
.y151{bottom:393.929344pt;}
.y102{bottom:398.909700pt;}
.y11d{bottom:400.630317pt;}
.y37{bottom:401.959150pt;}
.y50{bottom:404.741580pt;}
.y18b{bottom:405.533340pt;}
.y150{bottom:406.729341pt;}
.y14{bottom:407.401246pt;}
.y140{bottom:407.504982pt;}
.yda{bottom:407.575310pt;}
.y74{bottom:410.822680pt;}
.yb4{bottom:411.870030pt;}
.y184{bottom:412.459721pt;}
.y107{bottom:412.981290pt;}
.y11a{bottom:415.017010pt;}
.y174{bottom:415.561990pt;}
.yc1{bottom:416.883561pt;}
.y101{bottom:417.043030pt;}
.y9e{bottom:417.169030pt;}
.y15f{bottom:417.925030pt;}
.y161{bottom:418.031090pt;}
.y18a{bottom:418.333334pt;}
.y11c{bottom:418.763650pt;}
.y29{bottom:418.870410pt;}
.y14f{bottom:419.529340pt;}
.y57{bottom:420.710960pt;}
.y8{bottom:425.005981pt;}
.y172{bottom:425.259721pt;}
.y13f{bottom:425.638318pt;}
.y130{bottom:425.793224pt;}
.yb3{bottom:426.270026pt;}
.yd9{bottom:427.328611pt;}
.yd{bottom:429.528661pt;}
.yc0{bottom:431.092792pt;}
.y189{bottom:431.133332pt;}
.y73{bottom:433.222676pt;}
.y100{bottom:435.176363pt;}
.y22{bottom:435.703161pt;}
.y2{bottom:435.712821pt;}
.y36{bottom:436.919151pt;}
.y1d{bottom:439.093981pt;}
.y9d{bottom:439.569026pt;}
.yb2{bottom:440.670024pt;}
.y173{bottom:441.905711pt;}
.y13e{bottom:443.771651pt;}
.y188{bottom:443.933331pt;}
.y15e{bottom:444.038171pt;}
.y160{bottom:444.333291pt;}
.y4f{bottom:445.061574pt;}
.y106{bottom:445.376491pt;}
.yd8{bottom:447.081871pt;}
.y11b{bottom:450.462352pt;}
.yff{bottom:453.309698pt;}
.y12f{bottom:454.592427pt;}
.y14e{bottom:454.933112pt;}
.y72{bottom:455.622682pt;}
.y32{bottom:458.649442pt;}
.y28{bottom:459.190402pt;}
.y9c{bottom:461.969032pt;}
.y13d{bottom:462.305193pt;}
.y169{bottom:462.327132pt;}
.yd7{bottom:466.835152pt;}
.y56{bottom:468.710962pt;}
.y66{bottom:469.435796pt;}
.yb1{bottom:469.470024pt;}
.yfe{bottom:471.443032pt;}
.y15a{bottom:471.788763pt;}
.y35{bottom:471.879152pt;}
.ybf{bottom:472.157162pt;}
.yd0{bottom:472.629293pt;}
.y17e{bottom:474.204622pt;}
.y16d{bottom:474.380562pt;}
.y12d{bottom:475.370483pt;}
.y71{bottom:478.022676pt;}
.y105{bottom:483.340043pt;}
.yb0{bottom:483.870023pt;}
.y13{bottom:484.201252pt;}
.y9b{bottom:484.369026pt;}
.y159{bottom:484.588762pt;}
.y7{bottom:487.405983pt;}
.y12c{bottom:488.170483pt;}
.yc{bottom:489.453986pt;}
.y1c{bottom:489.709983pt;}
.y103{bottom:496.517574pt;}
.y27{bottom:499.510396pt;}
.y70{bottom:500.422675pt;}
.y16c{bottom:500.724303pt;}
.y65{bottom:502.555794pt;}
.y31{bottom:503.449437pt;}
.y158{bottom:506.661294pt;}
.y2d{bottom:506.767347pt;}
.y9a{bottom:506.769025pt;}
.y34{bottom:506.839153pt;}
.y168{bottom:512.368394pt;}
.ybe{bottom:512.936363pt;}
.y42{bottom:513.086007pt;}
.y17d{bottom:513.120514pt;}
.ybd{bottom:513.294693pt;}
.y104{bottom:523.313174pt;}
.y33{bottom:529.131858pt;}
.y17c{bottom:529.745084pt;}
.y16b{bottom:531.533644pt;}
.y4b{bottom:534.223284pt;}
.y47{bottom:534.272324pt;}
.y46{bottom:537.590334pt;}
.yaf{bottom:538.295955pt;}
.y45{bottom:542.567234pt;}
.y48{bottom:549.203255pt;}
.y16a{bottom:549.550555pt;}
.yd4{bottom:559.135745pt;}
.yd3{bottom:559.676205pt;}
.y2c{bottom:565.384548pt;}
.yb{bottom:567.371745pt;}
.y6f{bottom:570.542886pt;}
.y55{bottom:580.751951pt;}
.y64{bottom:580.967956pt;}
.y23{bottom:588.610379pt;}
.y44{bottom:590.269389pt;}
.y4a{bottom:591.232887pt;}
.y6e{bottom:591.969142pt;}
.ybb{bottom:612.770707pt;}
.ybc{bottom:614.158633pt;}
.y157{bottom:621.759047pt;}
.yad{bottom:627.301897pt;}
.yd6{bottom:648.315798pt;}
.yac{bottom:648.778368pt;}
.yd5{bottom:675.467400pt;}
.yab{bottom:675.929972pt;}
.y156{bottom:678.069501pt;}
.h33{height:25.671876pt;}
.h2e{height:25.976562pt;}
.h29{height:27.197917pt;}
.h2f{height:29.695312pt;}
.h2a{height:29.768229pt;}
.h25{height:29.768509pt;}
.h30{height:32.510711pt;}
.h38{height:33.458335pt;}
.h31{height:33.545631pt;}
.h35{height:33.708335pt;}
.h2c{height:33.937502pt;}
.h24{height:34.020835pt;}
.h34{height:34.229169pt;}
.h16{height:34.968751pt;}
.h27{height:37.640626pt;}
.h2b{height:38.179689pt;}
.h26{height:38.273439pt;}
.hc{height:38.854167pt;}
.h1a{height:39.786667pt;}
.h36{height:40.546875pt;}
.h32{height:41.084356pt;}
.hf{height:41.760000pt;}
.h1d{height:42.051581pt;}
.h6{height:42.079289pt;}
.h2d{height:42.421875pt;}
.h28{height:42.526042pt;}
.h39{height:42.786459pt;}
.h37{height:44.530946pt;}
.h5{height:45.937501pt;}
.h1f{height:53.157552pt;}
.h23{height:54.395833pt;}
.h1{height:55.283858pt;}
.h20{height:58.552083pt;}
.h21{height:59.390625pt;}
.h22{height:59.536458pt;}
.h12{height:59.901041pt;}
.h14{height:66.218671pt;}
.h10{height:72.734379pt;}
.h11{height:73.822921pt;}
.h15{height:74.496002pt;}
.h1c{height:77.015627pt;}
.h4{height:85.052084pt;}
.ha{height:94.985947pt;}
.h9{height:95.841664pt;}
.h2{height:102.062503pt;}
.h7{height:102.687503pt;}
.h19{height:106.966145pt;}
.h13{height:110.567716pt;}
.he{height:115.882666pt;}
.h1e{height:119.072916pt;}
.hd{height:119.802083pt;}
.h8{height:148.841155pt;}
.h3{height:153.093755pt;}
.h1b{height:165.851568pt;}
.h18{height:167.977874pt;}
.h17{height:168.360605pt;}
.hb{height:168.403130pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x32{left:29.324411pt;}
.x15{left:30.593177pt;}
.x36{left:36.083610pt;}
.x5{left:38.650605pt;}
.x3b{left:42.394754pt;}
.x58{left:43.691445pt;}
.x5d{left:44.835698pt;}
.x38{left:47.027133pt;}
.x33{left:50.672339pt;}
.x35{left:51.908872pt;}
.x1{left:53.410814pt;}
.x11{left:54.976382pt;}
.x62{left:59.404097pt;}
.x3{left:62.249452pt;}
.x57{left:65.949082pt;}
.x34{left:66.894175pt;}
.x2{left:67.810709pt;}
.x3c{left:69.576380pt;}
.x59{left:73.772912pt;}
.x9{left:77.493442pt;}
.x8{left:79.151187pt;}
.x1d{left:81.118113pt;}
.x6{left:83.824108pt;}
.xe{left:85.277492pt;}
.x24{left:88.558871pt;}
.x28{left:90.154653pt;}
.x1e{left:93.335063pt;}
.x17{left:97.000003pt;}
.x68{left:105.681993pt;}
.x29{left:107.552963pt;}
.x22{left:109.151187pt;}
.x21{left:110.052494pt;}
.x5c{left:111.954548pt;}
.x23{left:118.583653pt;}
.xa{left:125.493444pt;}
.x7{left:127.152234pt;}
.xb{left:128.301799pt;}
.xf{left:133.277594pt;}
.x1f{left:141.335065pt;}
.x14{left:146.803155pt;}
.xc{left:176.301801pt;}
.x12{left:177.629936pt;}
.x1c{left:179.643056pt;}
.x27{left:192.268346pt;}
.x56{left:201.382896pt;}
.xd{left:219.629927pt;}
.x25{left:236.260232pt;}
.x3d{left:237.677178pt;}
.x3a{left:243.513498pt;}
.x2c{left:246.439478pt;}
.x31{left:247.709188pt;}
.x50{left:250.036338pt;}
.x4f{left:251.147618pt;}
.x4b{left:254.151188pt;}
.x49{left:259.089348pt;}
.x4c{left:260.895978pt;}
.x4e{left:262.953708pt;}
.x4d{left:265.018808pt;}
.x3e{left:267.871069pt;}
.x19{left:269.007879pt;}
.x1a{left:275.643049pt;}
.x4a{left:277.899209pt;}
.x2b{left:280.094709pt;}
.x66{left:281.784249pt;}
.x5e{left:282.969459pt;}
.x63{left:283.912549pt;}
.x5f{left:285.053449pt;}
.x67{left:286.840739pt;}
.x65{left:291.549709pt;}
.x64{left:292.690609pt;}
.x3f{left:293.849469pt;}
.x61{left:301.690610pt;}
.x5a{left:311.321360pt;}
.x6c{left:315.057440pt;}
.x5b{left:319.535560pt;}
.x41{left:323.514540pt;}
.x6a{left:324.884750pt;}
.x69{left:329.159371pt;}
.x60{left:334.710891pt;}
.x42{left:352.039511pt;}
.x48{left:376.227812pt;}
.x52{left:435.429014pt;}
.x51{left:438.141214pt;}
.x18{left:450.658794pt;}
.x55{left:458.350355pt;}
.x54{left:495.641066pt;}
.x46{left:497.931256pt;}
.x1b{left:523.939117pt;}
.x39{left:534.804117pt;}
.x72{left:543.736717pt;}
.x40{left:552.778278pt;}
.x43{left:558.385518pt;}
.x6d{left:565.951818pt;}
.x6b{left:571.796648pt;}
.x6e{left:578.493119pt;}
.x2d{left:582.254519pt;}
.x2a{left:599.052569pt;}
.x20{left:669.629961pt;}
.x13{left:675.939662pt;}
.x37{left:678.566722pt;}
.x53{left:780.098825pt;}
.x47{left:784.125127pt;}
.x71{left:799.857726pt;}
.x70{left:809.685086pt;}
.x6f{left:831.505767pt;}
.x4{left:834.881927pt;}
.x10{left:868.511868pt;}
.x26{left:889.349088pt;}
.x44{left:1002.663232pt;}
.x16{left:1049.540634pt;}
.x30{left:1123.268036pt;}
.x45{left:1175.866138pt;}
.x2f{left:1196.029538pt;}
.x2e{left:1205.930839pt;}
}




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