
    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_4e7ab37a5da1db08d0ded130.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d96520c7bff459b8d2988d48.woff')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_171adbb3f78c3d62ee850cf1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.138672;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_52f1d6f580f32aee44807f3d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.857910;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_31f46152c200dee4e11ccae0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5bc2543fe797431bd86821be.woff')format("woff");}.ff6{font-family:ff6;line-height:0.774414;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_d8f656914fb94ed3e1365afc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ed9efe59e5090b56818ca63a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.753418;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.686523;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_7e91df362b726cf9553f7337.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_b2342b68c200d54e3b6eca49.woff')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_bee7a3dc6955961af0a89fc7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.740723;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_d68e105291f9a2933d38a9dc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.866699;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_5dafa86ad31ca067d7552a06.woff')format("woff");}.ffe{font-family:ffe;line-height:0.856934;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_76673c52a13a23d75fb4b0eb.woff')format("woff");}.fff{font-family:fff;line-height:0.861328;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_bfe69879a1d812f01592079e.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_da737140c6945fad099a002a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010620px;}
.lsa{letter-spacing:0.019560px;}
.ls9{letter-spacing:0.021238px;}
.ls7{letter-spacing:0.021282px;}
.ls2{letter-spacing:0.079920px;}
.ls0{letter-spacing:0.189257px;}
.ls1{letter-spacing:0.237796px;}
.ls8{letter-spacing:0.731051px;}
.ls3{letter-spacing:11.709425px;}
.ls5{letter-spacing:34.015846px;}
.lsb{letter-spacing:54.908378px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-47.375981px;}
.ws3{word-spacing:-39.322064px;}
.ws5{word-spacing:-32.399987px;}
.wsa{word-spacing:-21.059992px;}
.ws8{word-spacing:-18.021275px;}
.ws9{word-spacing:-18.021231px;}
.ws7{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.509790px;}
.ws4{word-spacing:-15.011994px;}
.ws1{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-8.629193px;}
._5{margin-left:-7.389979px;}
._1d{margin-left:-6.377514px;}
._12{margin-left:-5.343149px;}
._1{margin-left:-4.242803px;}
._1c{margin-left:-3.223562px;}
._6{margin-left:-2.177919px;}
._0{margin-left:-1.117688px;}
._2{width:1.222826px;}
._d{width:2.318242px;}
._c{width:3.639479px;}
._b{width:4.970010px;}
._a{width:6.406946px;}
._9{width:8.051540px;}
._18{width:9.071363px;}
._11{width:10.418649px;}
._10{width:11.731431px;}
._1b{width:12.914249px;}
._19{width:14.753334px;}
._14{width:16.144788px;}
._13{width:17.500793px;}
._17{width:19.136182px;}
._1a{width:20.430785px;}
._7{width:22.321811px;}
._8{width:23.418924px;}
._20{width:24.491767px;}
._e{width:25.567344px;}
._f{width:27.381160px;}
._23{width:32.433590px;}
._24{width:37.568363px;}
._1f{width:54.042530px;}
._16{width:87.360383px;}
._15{width:88.558700px;}
._21{width:324.212111px;}
._1e{width:342.212263px;}
._22{width:811.971812px;}
._4{width:1805.680078px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc7{color:rgb(70,120,134);}
.fce{color:rgb(32,33,36);}
.fc8{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc9{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fcc{color:rgb(15,71,97);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.y6{bottom:-11.339990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y1f{bottom:3.238966px;}
.y154{bottom:3.958969px;}
.y156{bottom:3.958978px;}
.y1c{bottom:3.958992px;}
.y159{bottom:3.958995px;}
.y15b{bottom:3.959004px;}
.y110{bottom:3.959017px;}
.y15e{bottom:3.959020px;}
.y112{bottom:3.959026px;}
.ybc{bottom:3.959027px;}
.y160{bottom:3.959029px;}
.ye8{bottom:3.959032px;}
.y114{bottom:3.959035px;}
.ybe{bottom:3.959036px;}
.yea{bottom:3.959040px;}
.y116{bottom:3.959043px;}
.yc0{bottom:3.959044px;}
.yec{bottom:3.959049px;}
.y118{bottom:3.959052px;}
.yc2{bottom:3.959053px;}
.yee{bottom:3.959058px;}
.yc4{bottom:3.959061px;}
.yf0{bottom:3.959066px;}
.yc6{bottom:3.959070px;}
.y95{bottom:3.959071px;}
.yf2{bottom:3.959075px;}
.y97{bottom:3.959080px;}
.y99{bottom:3.959088px;}
.y9b{bottom:3.959097px;}
.y9d{bottom:3.959105px;}
.y13e{bottom:3.959109px;}
.y140{bottom:3.959117px;}
.y142{bottom:3.959126px;}
.y144{bottom:3.959134px;}
.y27{bottom:3.959142px;}
.y147{bottom:3.959151px;}
.yfe{bottom:3.959218px;}
.yd4{bottom:3.959223px;}
.y100{bottom:3.959227px;}
.y128{bottom:3.959229px;}
.yd6{bottom:3.959231px;}
.y102{bottom:3.959235px;}
.y12a{bottom:3.959237px;}
.yd8{bottom:3.959240px;}
.y104{bottom:3.959244px;}
.y12c{bottom:3.959246px;}
.yda{bottom:3.959248px;}
.y106{bottom:3.959252px;}
.yab{bottom:3.959253px;}
.ydc{bottom:3.959257px;}
.yad{bottom:3.959262px;}
.y12f{bottom:3.959263px;}
.yde{bottom:3.959266px;}
.yaf{bottom:3.959270px;}
.y131{bottom:3.959271px;}
.yb1{bottom:3.959279px;}
.yb3{bottom:3.959288px;}
.yb5{bottom:3.959296px;}
.ya{bottom:4.860038px;}
.yb{bottom:32.880287px;}
.y9{bottom:49.260240px;}
.y7{bottom:54.120278px;}
.y8{bottom:56.100278px;}
.y1a{bottom:136.020246px;}
.y69{bottom:139.799944px;}
.y10e{bottom:144.119942px;}
.y152{bottom:144.299942px;}
.y17a{bottom:148.799940px;}
.y19f{bottom:163.559935px;}
.y68{bottom:163.919934px;}
.y8a{bottom:164.099934px;}
.y10d{bottom:168.059933px;}
.ye4{bottom:170.759932px;}
.y179{bottom:172.559931px;}
.yb8{bottom:178.139929px;}
.y33{bottom:179.759928px;}
.y151{bottom:180.299928px;}
.y19e{bottom:187.499925px;}
.y10c{bottom:192.179923px;}
.ye3{bottom:194.699922px;}
.y3f{bottom:197.939921px;}
.y67{bottom:199.739920px;}
.y89{bottom:200.099920px;}
.yb7{bottom:202.079919px;}
.y150{bottom:204.239918px;}
.y19d{bottom:211.619915px;}
.y135{bottom:216.119914px;}
.y178{bottom:221.879911px;}
.y66{bottom:223.859910px;}
.y88{bottom:224.039910px;}
.y10b{bottom:227.999909px;}
.y14f{bottom:228.179909px;}
.ye2{bottom:230.699908px;}
.y19c{bottom:235.559906px;}
.yb6{bottom:238.079905px;}
.y134{bottom:240.059904px;}
.y177{bottom:247.259901px;}
.y65{bottom:247.799901px;}
.y87{bottom:248.159901px;}
.y45{bottom:248.699901px;}
.y10a{bottom:252.119899px;}
.ye1{bottom:254.639898px;}
.yb4{bottom:255.540600px;}
.y19b{bottom:259.499896px;}
.y133{bottom:263.999894px;}
.y14e{bottom:264.179894px;}
.y44{bottom:269.759892px;}
.y176{bottom:271.019892px;}
.y64{bottom:271.739891px;}
.yb2{bottom:276.960600px;}
.ye0{bottom:278.579889px;}
.y19a{bottom:283.439887px;}
.y86{bottom:285.239886px;}
.y109{bottom:287.939885px;}
.y14d{bottom:288.119885px;}
.y43{bottom:290.999884px;}
.y63{bottom:295.679882px;}
.y175{bottom:296.579881px;}
.yb0{bottom:298.560600px;}
.y132{bottom:299.999880px;}
.y108{bottom:312.059875px;}
.y42{bottom:312.239875px;}
.ydf{bottom:314.579874px;}
.y32{bottom:316.019874px;}
.y130{bottom:317.460600px;}
.y62{bottom:319.619872px;}
.yae{bottom:319.980600px;}
.y174{bottom:320.339872px;}
.y199{bottom:320.519872px;}
.y85{bottom:323.939870px;}
.ydd{bottom:332.040600px;}
.y41{bottom:333.479867px;}
.y1b3{bottom:338.699865px;}
.y12e{bottom:338.880600px;}
.yac{bottom:341.400600px;}
.y61{bottom:343.739863px;}
.y107{bottom:348.059861px;}
.y84{bottom:349.139860px;}
.ydb{bottom:353.460600px;}
.y40{bottom:354.539858px;}
.y173{bottom:358.859856px;}
.y12d{bottom:360.480600px;}
.yaa{bottom:362.820600px;}
.y105{bottom:365.520600px;}
.y60{bottom:367.679853px;}
.y198{bottom:369.119852px;}
.y14c{bottom:371.999851px;}
.yd9{bottom:374.880600px;}
.y1b2{bottom:378.659849px;}
.y12b{bottom:381.900600px;}
.y103{bottom:386.940600px;}
.y83{bottom:388.019845px;}
.y3e{bottom:391.079844px;}
.y197{bottom:393.059843px;}
.y14b{bottom:396.119842px;}
.yd7{bottom:396.300600px;}
.y172{bottom:402.599839px;}
.y129{bottom:403.320600px;}
.ya9{bottom:403.499839px;}
.y5f{bottom:404.759838px;}
.y101{bottom:408.360600px;}
.y82{bottom:411.959835px;}
.y3d{bottom:412.499835px;}
.yd5{bottom:417.900600px;}
.y196{bottom:418.439833px;}
.y1b1{bottom:418.619833px;}
.y31{bottom:419.699832px;}
.y127{bottom:424.740600px;}
.yff{bottom:429.780600px;}
.y14a{bottom:431.939827px;}
.y171{bottom:438.599825px;}
.yd3{bottom:439.320600px;}
.ya8{bottom:439.499824px;}
.y195{bottom:442.199823px;}
.y81{bottom:449.039820px;}
.y5e{bottom:449.579820px;}
.y30{bottom:451.019820px;}
.yfd{bottom:451.200600px;}
.y149{bottom:456.059818px;}
.y1b0{bottom:458.759816px;}
.y3c{bottom:460.559816px;}
.y170{bottom:462.539815px;}
.ya7{bottom:463.439815px;}
.y126{bottom:465.419814px;}
.y194{bottom:467.579813px;}
.y2f{bottom:468.659813px;}
.y5d{bottom:473.519811px;}
.yd2{bottom:479.999808px;}
.y3b{bottom:481.799807px;}
.y2e{bottom:486.299805px;}
.ya6{bottom:487.379805px;}
.y80{bottom:487.919805px;}
.y193{bottom:491.519803px;}
.yfc{bottom:491.879803px;}
.y5c{bottom:497.459801px;}
.y16f{bottom:498.539801px;}
.y1af{bottom:498.719801px;}
.y125{bottom:501.419799px;}
.y2d{bottom:502.859799px;}
.y3a{bottom:503.039799px;}
.ya5{bottom:511.319795px;}
.y7f{bottom:511.859795px;}
.yd1{bottom:515.999794px;}
.y192{bottom:516.899793px;}
.y5b{bottom:521.579791px;}
.y16e{bottom:522.479791px;}
.y39{bottom:524.279790px;}
.yfb{bottom:527.879789px;}
.y2c{bottom:532.739787px;}
.y7e{bottom:535.799786px;}
.y124{bottom:537.419785px;}
.y1ae{bottom:538.679785px;}
.yd0{bottom:539.939784px;}
.y191{bottom:540.659784px;}
.y38{bottom:545.339782px;}
.y5a{bottom:545.519782px;}
.ya4{bottom:547.319781px;}
.yfa{bottom:551.819779px;}
.y16d{bottom:558.479777px;}
.y7d{bottom:559.739776px;}
.y123{bottom:561.359775px;}
.y2b{bottom:562.619775px;}
.y148{bottom:563.879774px;}
.y190{bottom:566.219774px;}
.y37{bottom:566.579773px;}
.y59{bottom:569.459772px;}
.ya3{bottom:571.439771px;}
.ycf{bottom:575.939770px;}
.y1ad{bottom:578.639769px;}
.y16c{bottom:582.419767px;}
.y36{bottom:587.819765px;}
.y18f{bottom:589.979764px;}
.y2a{bottom:592.679763px;}
.y58{bottom:593.399763px;}
.y7c{bottom:596.999761px;}
.y122{bottom:597.359761px;}
.yce{bottom:599.879760px;}
.y34{bottom:606.359757px;}
.ya2{bottom:607.259757px;}
.y35{bottom:609.059756px;}
.y29{bottom:610.859756px;}
.yf9{bottom:611.759755px;}
.y18e{bottom:615.179754px;}
.y57{bottom:617.339753px;}
.y146{bottom:617.340600px;}
.y16b{bottom:618.419753px;}
.y1ac{bottom:618.599753px;}
.y121{bottom:621.299751px;}
.ya1{bottom:631.379747px;}
.ycd{bottom:635.879746px;}
.y7b{bottom:638.399745px;}
.y145{bottom:638.760600px;}
.y26{bottom:639.840600px;}
.y18d{bottom:640.559744px;}
.y16a{bottom:642.359743px;}
.y24{bottom:643.619743px;}
.y25{bottom:643.799742px;}
.y120{bottom:645.239742px;}
.y28{bottom:646.679741px;}
.yf8{bottom:647.759741px;}
.y56{bottom:654.599738px;}
.ya0{bottom:655.319738px;}
.y1ab{bottom:658.559737px;}
.y7a{bottom:659.099736px;}
.ycc{bottom:659.819736px;}
.y143{bottom:660.180600px;}
.y19{bottom:665.759734px;}
.y18c{bottom:665.939734px;}
.yf7{bottom:671.879731px;}
.y169{bottom:678.359729px;}
.y9f{bottom:679.259728px;}
.y79{bottom:679.799728px;}
.y11f{bottom:681.239728px;}
.y141{bottom:681.780600px;}
.ycb{bottom:683.759726px;}
.y18b{bottom:689.699724px;}
.y1aa{bottom:698.519721px;}
.y55{bottom:699.419720px;}
.y168{bottom:702.299719px;}
.y13f{bottom:703.200600px;}
.y11e{bottom:705.179718px;}
.yf6{bottom:707.699717px;}
.y18{bottom:708.419717px;}
.y9e{bottom:715.259714px;}
.y78{bottom:717.059713px;}
.yca{bottom:719.759712px;}
.y54{bottom:723.359711px;}
.y13d{bottom:724.620600px;}
.y17{bottom:725.699710px;}
.y11d{bottom:729.299708px;}
.yf5{bottom:731.819707px;}
.y9c{bottom:732.720600px;}
.y1a9{bottom:737.399705px;}
.y167{bottom:738.299705px;}
.y18a{bottom:739.019704px;}
.y16{bottom:742.979703px;}
.yc9{bottom:743.699703px;}
.y53{bottom:747.299701px;}
.y9a{bottom:754.140600px;}
.y77{bottom:755.579698px;}
.yf4{bottom:755.759698px;}
.y1a8{bottom:761.339695px;}
.y166{bottom:762.239695px;}
.y189{bottom:764.399694px;}
.y11c{bottom:765.119694px;}
.y13c{bottom:765.299694px;}
.yc8{bottom:767.639693px;}
.y52{bottom:771.239692px;}
.y98{bottom:775.560600px;}
.y76{bottom:779.519688px;}
.y15{bottom:781.679687px;}
.y1a7{bottom:785.279686px;}
.y165{bottom:786.359685px;}
.y188{bottom:788.159685px;}
.y11b{bottom:789.239684px;}
.yf3{bottom:791.759683px;}
.y51{bottom:795.359682px;}
.y96{bottom:796.980600px;}
.y14{bottom:801.119680px;}
.y13b{bottom:801.299679px;}
.y75{bottom:803.279679px;}
.yc7{bottom:803.639679px;}
.y1a6{bottom:809.219676px;}
.yf1{bottom:809.220600px;}
.y11a{bottom:813.179675px;}
.y187{bottom:813.539675px;}
.y13{bottom:818.399673px;}
.y94{bottom:818.580600px;}
.y50{bottom:819.299672px;}
.yc5{bottom:821.100600px;}
.y164{bottom:822.179671px;}
.yef{bottom:830.640600px;}
.y1a5{bottom:833.339667px;}
.y12{bottom:835.679666px;}
.y13a{bottom:837.299665px;}
.y186{bottom:838.739665px;}
.y74{bottom:840.359664px;}
.yc3{bottom:842.700600px;}
.y4f{bottom:843.239663px;}
.y163{bottom:846.299661px;}
.y119{bottom:849.179660px;}
.yed{bottom:852.060600px;}
.y1a4{bottom:857.279657px;}
.y93{bottom:859.259656px;}
.y139{bottom:861.239656px;}
.y185{bottom:864.119654px;}
.yc1{bottom:864.120600px;}
.y117{bottom:866.640600px;}
.y162{bottom:870.239652px;}
.yeb{bottom:873.480600px;}
.y11{bottom:874.379650px;}
.y4e{bottom:880.319648px;}
.y1a3{bottom:881.219648px;}
.y73{bottom:885.179646px;}
.ybf{bottom:885.540600px;}
.y115{bottom:888.060600px;}
.y184{bottom:889.499644px;}
.y10{bottom:893.819642px;}
.ye9{bottom:894.900600px;}
.y92{bottom:896.339641px;}
.y138{bottom:897.239641px;}
.y1a2{bottom:905.159638px;}
.y161{bottom:906.239638px;}
.ybd{bottom:906.960600px;}
.y72{bottom:909.119636px;}
.y113{bottom:909.480600px;}
.yf{bottom:911.099636px;}
.y183{bottom:913.259635px;}
.ye7{bottom:916.500600px;}
.y137{bottom:921.179632px;}
.y15f{bottom:923.700600px;}
.y4d{bottom:925.139630px;}
.ybb{bottom:928.380600px;}
.y1a1{bottom:929.099628px;}
.y111{bottom:930.900600px;}
.y71{bottom:933.239627px;}
.y182{bottom:938.639625px;}
.y91{bottom:941.159624px;}
.y136{bottom:945.119622px;}
.y15d{bottom:945.120600px;}
.y4c{bottom:949.079620px;}
.y10f{bottom:952.320600px;}
.y1a0{bottom:953.219619px;}
.ye{bottom:954.479618px;}
.y70{bottom:957.179617px;}
.y181{bottom:962.579615px;}
.yba{bottom:969.059612px;}
.y15c{bottom:969.779612px;}
.y4b{bottom:973.199611px;}
.y90{bottom:977.159609px;}
.y6f{bottom:981.119608px;}
.yd{bottom:982.379607px;}
.y15a{bottom:987.240600px;}
.y180{bottom:987.779605px;}
.ye6{bottom:992.999603px;}
.y4a{bottom:997.139601px;}
.y8f{bottom:1001.099600px;}
.y6e{bottom:1005.059598px;}
.y158{bottom:1008.660600px;}
.y17f{bottom:1013.159595px;}
.y1b{bottom:1015.860600px;}
.y49{bottom:1021.079592px;}
.y8e{bottom:1025.039590px;}
.yb9{bottom:1028.999588px;}
.y22{bottom:1031.879587px;}
.y157{bottom:1033.319587px;}
.y17e{bottom:1037.099585px;}
.y6d{bottom:1041.059584px;}
.y48{bottom:1045.019582px;}
.y8d{bottom:1048.979580px;}
.y21{bottom:1050.239580px;}
.y155{bottom:1050.780600px;}
.ye5{bottom:1053.119579px;}
.y17d{bottom:1062.479575px;}
.y6c{bottom:1064.999574px;}
.y20{bottom:1068.599573px;}
.y47{bottom:1068.959572px;}
.y153{bottom:1072.380600px;}
.y8c{bottom:1073.099571px;}
.y1e{bottom:1083.000600px;}
.y17c{bottom:1086.239566px;}
.y6b{bottom:1088.939564px;}
.y23{bottom:1105.499558px;}
.y1d{bottom:1106.039558px;}
.y46{bottom:1107.479557px;}
.y8b{bottom:1110.179556px;}
.y17b{bottom:1111.619555px;}
.y6a{bottom:1113.059555px;}
.y4{bottom:1134.659546px;}
.yc{bottom:1163.639535px;}
.y3{bottom:1167.599533px;}
.y2{bottom:1184.879526px;}
.y1{bottom:1202.159519px;}
.h3{height:5.760000px;}
.hf{height:16.740000px;}
.h1a{height:20.160000px;}
.hc{height:21.060000px;}
.h5{height:21.960000px;}
.h10{height:35.991197px;}
.h14{height:36.624009px;}
.h7{height:36.703110px;}
.h15{height:38.759750px;}
.h13{height:39.313461px;}
.h16{height:39.830258px;}
.h12{height:40.297132px;}
.he{height:40.793187px;}
.h1{height:41.522679px;}
.h6{height:42.894123px;}
.ha{height:44.207209px;}
.hd{height:47.988262px;}
.h11{height:48.550762px;}
.h17{height:48.796855px;}
.hb{height:50.027324px;}
.h4{height:50.305761px;}
.h2{height:51.679667px;}
.h18{height:52.417948px;}
.h8{height:57.092321px;}
.h19{height:58.531969px;}
.h9{height:64.899818px;}
.h0{height:1263.000000px;}
.w3{width:3.240000px;}
.w3c{width:4.140000px;}
.w1a{width:4.500000px;}
.w21{width:4.680000px;}
.w48{width:5.040000px;}
.w29{width:5.940000px;}
.w10{width:7.920000px;}
.w11{width:8.100000px;}
.w4{width:8.280000px;}
.w8{width:9.000000px;}
.w42{width:9.180000px;}
.wb{width:10.080000px;}
.w2{width:10.620000px;}
.we{width:12.060000px;}
.w1f{width:12.240000px;}
.w4e{width:13.140000px;}
.w2b{width:13.500000px;}
.w6{width:14.400000px;}
.w3f{width:15.120000px;}
.wd{width:18.000000px;}
.w18{width:22.320000px;}
.w2f{width:23.940000px;}
.w17{width:26.280000px;}
.w2e{width:26.820000px;}
.w14{width:27.000000px;}
.w19{width:27.360000px;}
.w1b{width:30.060000px;}
.w3b{width:30.600000px;}
.w12{width:30.960000px;}
.w47{width:31.860000px;}
.w1d{width:32.040000px;}
.w28{width:33.480000px;}
.w13{width:36.720000px;}
.w35{width:41.220000px;}
.w2d{width:50.040000px;}
.wc{width:50.400000px;}
.wf{width:50.940000px;}
.w49{width:52.380000px;}
.wa{width:52.920000px;}
.w2a{width:53.100000px;}
.w16{width:54.000000px;}
.w1c{width:54.540000px;}
.w31{width:58.500000px;}
.w2c{width:61.920000px;}
.w15{width:66.060000px;}
.w24{width:67.320000px;}
.w7{width:70.560000px;}
.w23{width:71.460000px;}
.w37{width:72.900000px;}
.w3e{width:75.600000px;}
.w22{width:75.960000px;}
.w3d{width:76.680000px;}
.w39{width:77.400000px;}
.w20{width:78.300000px;}
.w4d{width:85.320000px;}
.w4a{width:87.660000px;}
.w30{width:92.160000px;}
.w45{width:94.500000px;}
.w43{width:96.300000px;}
.w34{width:99.900000px;}
.w41{width:105.120000px;}
.w32{width:106.560000px;}
.w38{width:107.460000px;}
.w26{width:109.080000px;}
.w4b{width:117.720000px;}
.w27{width:118.620000px;}
.w46{width:129.780000px;}
.w1e{width:130.680000px;}
.w44{width:138.240000px;}
.w36{width:138.420000px;}
.w9{width:142.920000px;}
.w33{width:148.500000px;}
.w25{width:156.420000px;}
.w4c{width:164.340000px;}
.w3a{width:194.220000px;}
.w40{width:199.980000px;}
.w5{width:251.460000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3c{left:105.480000px;}
.x1{left:107.999957px;}
.x24{left:116.460000px;}
.x19{left:118.619953px;}
.x17{left:120.599952px;}
.x16{left:123.119951px;}
.x2a{left:126.540000px;}
.x2d{left:128.520000px;}
.x3{left:132.659947px;}
.x1b{left:135.539946px;}
.x10{left:139.319944px;}
.x15{left:142.019943px;}
.x36{left:143.460000px;}
.x48{left:144.900000px;}
.x31{left:147.420000px;}
.x38{left:148.500000px;}
.x5b{left:151.200000px;}
.x32{left:153.180000px;}
.x56{left:157.680000px;}
.x47{left:159.480000px;}
.x1f{left:161.999935px;}
.x1a{left:167.219933px;}
.x66{left:168.840000px;}
.x37{left:171.000000px;}
.x18{left:177.299929px;}
.x2e{left:179.460000px;}
.x34{left:182.520000px;}
.x25{left:187.020000px;}
.x58{left:189.360000px;}
.x3b{left:192.420000px;}
.x59{left:193.860000px;}
.x2f{left:195.480000px;}
.x49{left:198.000000px;}
.x3a{left:199.440000px;}
.x6c{left:201.780000px;}
.x61{left:212.760000px;}
.x40{left:214.560000px;}
.x55{left:216.000000px;}
.x62{left:217.440000px;}
.x5f{left:221.220000px;}
.x53{left:223.020000px;}
.x44{left:224.100000px;}
.x22{left:228.779908px;}
.x60{left:230.400000px;}
.x5c{left:232.380000px;}
.x68{left:234.180000px;}
.x23{left:235.799906px;}
.x69{left:238.860000px;}
.x65{left:242.460000px;}
.x11{left:243.719903px;}
.x12{left:246.599901px;}
.x8{left:251.460000px;}
.x63{left:254.700000px;}
.x67{left:256.500000px;}
.x64{left:259.380000px;}
.x1c{left:261.539849px;}
.x54{left:264.960000px;}
.x6a{left:280.800000px;}
.x13{left:282.780000px;}
.x6b{left:288.900000px;}
.x2{left:302.579879px;}
.xc{left:304.019878px;}
.x14{left:305.272378px;}
.x5d{left:307.980000px;}
.x9{left:311.579875px;}
.x20{left:312.659875px;}
.x5a{left:315.360000px;}
.x1e{left:321.839871px;}
.x5e{left:323.100000px;}
.x1d{left:332.999867px;}
.x21{left:338.039865px;}
.x41{left:339.300000px;}
.x26{left:341.460000px;}
.x45{left:348.300000px;}
.x4c{left:350.820000px;}
.x4b{left:355.320000px;}
.x42{left:357.300000px;}
.x2b{left:359.820000px;}
.x4d{left:368.280000px;}
.x4e{left:372.780000px;}
.x4f{left:396.720000px;}
.x50{left:401.220000px;}
.xb{left:403.019839px;}
.xa{left:410.580000px;}
.xd{left:423.899830px;}
.x39{left:472.140000px;}
.x57{left:479.880000px;}
.x27{left:484.380000px;}
.x51{left:493.380000px;}
.x3d{left:495.360000px;}
.xe{left:520.019792px;}
.x28{left:567.180000px;}
.x30{left:576.180000px;}
.x2c{left:585.180000px;}
.x33{left:594.180000px;}
.x3e{left:605.160000px;}
.x46{left:614.160000px;}
.x29{left:620.100000px;}
.x35{left:621.180000px;}
.x43{left:623.160000px;}
.x52{left:625.680000px;}
.x4a{left:632.160000px;}
.x3f{left:658.080000px;}
.x6{left:666.179734px;}
.x7{left:692.279723px;}
.xf{left:725.399964px;}
.x4{left:754.019698px;}
.x5{left:781.380000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009440pt;}
.lsa{letter-spacing:0.017387pt;}
.ls9{letter-spacing:0.018878pt;}
.ls7{letter-spacing:0.018917pt;}
.ls2{letter-spacing:0.071040pt;}
.ls0{letter-spacing:0.168228pt;}
.ls1{letter-spacing:0.211375pt;}
.ls8{letter-spacing:0.649823pt;}
.ls3{letter-spacing:10.408378pt;}
.ls5{letter-spacing:30.236308pt;}
.lsb{letter-spacing:48.807447pt;}
.ws2{word-spacing:-42.111983pt;}
.ws3{word-spacing:-34.952946pt;}
.ws5{word-spacing:-28.799988pt;}
.wsa{word-spacing:-18.719993pt;}
.ws8{word-spacing:-16.018911pt;}
.ws9{word-spacing:-16.018872pt;}
.ws7{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.675369pt;}
.ws4{word-spacing:-13.343995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-7.670394pt;}
._5{margin-left:-6.568870pt;}
._1d{margin-left:-5.668901pt;}
._12{margin-left:-4.749466pt;}
._1{margin-left:-3.771380pt;}
._1c{margin-left:-2.865388pt;}
._6{margin-left:-1.935928pt;}
._0{margin-left:-0.993501pt;}
._2{width:1.086956pt;}
._d{width:2.060660pt;}
._c{width:3.235093pt;}
._b{width:4.417787pt;}
._a{width:5.695063pt;}
._9{width:7.156924pt;}
._18{width:8.063434pt;}
._11{width:9.261021pt;}
._10{width:10.427938pt;}
._1b{width:11.479332pt;}
._19{width:13.114074pt;}
._14{width:14.350923pt;}
._13{width:15.556260pt;}
._17{width:17.009940pt;}
._1a{width:18.160698pt;}
._7{width:19.841610pt;}
._8{width:20.816821pt;}
._20{width:21.770460pt;}
._e{width:22.726528pt;}
._f{width:24.338809pt;}
._23{width:28.829857pt;}
._24{width:33.394101pt;}
._1f{width:48.037805pt;}
._16{width:77.653673pt;}
._15{width:78.718844pt;}
._21{width:288.188543pt;}
._1e{width:304.188678pt;}
._22{width:721.752722pt;}
._4{width:1605.048958pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.y6{bottom:-10.079991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y1f{bottom:2.879080pt;}
.y154{bottom:3.519084pt;}
.y156{bottom:3.519092pt;}
.y1c{bottom:3.519104pt;}
.y159{bottom:3.519107pt;}
.y15b{bottom:3.519114pt;}
.y110{bottom:3.519127pt;}
.y15e{bottom:3.519129pt;}
.y112{bottom:3.519134pt;}
.ybc{bottom:3.519135pt;}
.y160{bottom:3.519137pt;}
.ye8{bottom:3.519139pt;}
.y114{bottom:3.519142pt;}
.ybe{bottom:3.519143pt;}
.yea{bottom:3.519147pt;}
.y116{bottom:3.519150pt;}
.yc0{bottom:3.519150pt;}
.yec{bottom:3.519155pt;}
.y118{bottom:3.519157pt;}
.yc2{bottom:3.519158pt;}
.yee{bottom:3.519162pt;}
.yc4{bottom:3.519166pt;}
.yf0{bottom:3.519170pt;}
.yc6{bottom:3.519173pt;}
.y95{bottom:3.519174pt;}
.yf2{bottom:3.519178pt;}
.y97{bottom:3.519182pt;}
.y99{bottom:3.519190pt;}
.y9b{bottom:3.519197pt;}
.y9d{bottom:3.519205pt;}
.y13e{bottom:3.519208pt;}
.y140{bottom:3.519215pt;}
.y142{bottom:3.519223pt;}
.y144{bottom:3.519231pt;}
.y27{bottom:3.519238pt;}
.y147{bottom:3.519246pt;}
.yfe{bottom:3.519305pt;}
.yd4{bottom:3.519309pt;}
.y100{bottom:3.519312pt;}
.y128{bottom:3.519314pt;}
.yd6{bottom:3.519317pt;}
.y102{bottom:3.519320pt;}
.y12a{bottom:3.519322pt;}
.yd8{bottom:3.519324pt;}
.y104{bottom:3.519328pt;}
.y12c{bottom:3.519329pt;}
.yda{bottom:3.519332pt;}
.y106{bottom:3.519335pt;}
.yab{bottom:3.519336pt;}
.ydc{bottom:3.519340pt;}
.yad{bottom:3.519344pt;}
.y12f{bottom:3.519345pt;}
.yde{bottom:3.519347pt;}
.yaf{bottom:3.519351pt;}
.y131{bottom:3.519352pt;}
.yb1{bottom:3.519359pt;}
.yb3{bottom:3.519367pt;}
.yb5{bottom:3.519374pt;}
.ya{bottom:4.320034pt;}
.yb{bottom:29.226922pt;}
.y9{bottom:43.786880pt;}
.y7{bottom:48.106914pt;}
.y8{bottom:49.866913pt;}
.y1a{bottom:120.906885pt;}
.y69{bottom:124.266617pt;}
.y10e{bottom:128.106615pt;}
.y152{bottom:128.266615pt;}
.y17a{bottom:132.266614pt;}
.y19f{bottom:145.386609pt;}
.y68{bottom:145.706608pt;}
.y8a{bottom:145.866608pt;}
.y10d{bottom:149.386607pt;}
.ye4{bottom:151.786606pt;}
.y179{bottom:153.386605pt;}
.yb8{bottom:158.346603pt;}
.y33{bottom:159.786603pt;}
.y151{bottom:160.266603pt;}
.y19e{bottom:166.666600pt;}
.y10c{bottom:170.826598pt;}
.ye3{bottom:173.066597pt;}
.y3f{bottom:175.946596pt;}
.y67{bottom:177.546596pt;}
.y89{bottom:177.866596pt;}
.yb7{bottom:179.626595pt;}
.y150{bottom:181.546594pt;}
.y19d{bottom:188.106591pt;}
.y135{bottom:192.106590pt;}
.y178{bottom:197.226588pt;}
.y66{bottom:198.986587pt;}
.y88{bottom:199.146587pt;}
.y10b{bottom:202.666586pt;}
.y14f{bottom:202.826586pt;}
.ye2{bottom:205.066585pt;}
.y19c{bottom:209.386583pt;}
.yb6{bottom:211.626582pt;}
.y134{bottom:213.386581pt;}
.y177{bottom:219.786579pt;}
.y65{bottom:220.266579pt;}
.y87{bottom:220.586578pt;}
.y45{bottom:221.066578pt;}
.y10a{bottom:224.106577pt;}
.ye1{bottom:226.346576pt;}
.yb4{bottom:227.147200pt;}
.y19b{bottom:230.666574pt;}
.y133{bottom:234.666573pt;}
.y14e{bottom:234.826573pt;}
.y44{bottom:239.786571pt;}
.y176{bottom:240.906570pt;}
.y64{bottom:241.546570pt;}
.yb2{bottom:246.187200pt;}
.ye0{bottom:247.626568pt;}
.y19a{bottom:251.946566pt;}
.y86{bottom:253.546565pt;}
.y109{bottom:255.946564pt;}
.y14d{bottom:256.106564pt;}
.y43{bottom:258.666563pt;}
.y63{bottom:262.826562pt;}
.y175{bottom:263.626561pt;}
.yb0{bottom:265.387200pt;}
.y132{bottom:266.666560pt;}
.y108{bottom:277.386556pt;}
.y42{bottom:277.546556pt;}
.ydf{bottom:279.626555pt;}
.y32{bottom:280.906554pt;}
.y130{bottom:282.187200pt;}
.y62{bottom:284.106553pt;}
.yae{bottom:284.427200pt;}
.y174{bottom:284.746553pt;}
.y199{bottom:284.906553pt;}
.y85{bottom:287.946551pt;}
.ydd{bottom:295.147200pt;}
.y41{bottom:296.426548pt;}
.y1b3{bottom:301.066546pt;}
.y12e{bottom:301.227200pt;}
.yac{bottom:303.467200pt;}
.y61{bottom:305.546544pt;}
.y107{bottom:309.386543pt;}
.y84{bottom:310.346543pt;}
.ydb{bottom:314.187200pt;}
.y40{bottom:315.146541pt;}
.y173{bottom:318.986539pt;}
.y12d{bottom:320.427200pt;}
.yaa{bottom:322.507200pt;}
.y105{bottom:324.907200pt;}
.y60{bottom:326.826536pt;}
.y198{bottom:328.106535pt;}
.y14c{bottom:330.666534pt;}
.yd9{bottom:333.227200pt;}
.y1b2{bottom:336.586532pt;}
.y12b{bottom:339.467200pt;}
.y103{bottom:343.947200pt;}
.y83{bottom:344.906529pt;}
.y3e{bottom:347.626528pt;}
.y197{bottom:349.386527pt;}
.y14b{bottom:352.106526pt;}
.yd7{bottom:352.267200pt;}
.y172{bottom:357.866524pt;}
.y129{bottom:358.507200pt;}
.ya9{bottom:358.666523pt;}
.y5f{bottom:359.786523pt;}
.y101{bottom:362.987200pt;}
.y82{bottom:366.186520pt;}
.y3d{bottom:366.666520pt;}
.yd5{bottom:371.467200pt;}
.y196{bottom:371.946518pt;}
.y1b1{bottom:372.106518pt;}
.y31{bottom:373.066517pt;}
.y127{bottom:377.547200pt;}
.yff{bottom:382.027200pt;}
.y14a{bottom:383.946513pt;}
.y171{bottom:389.866511pt;}
.yd3{bottom:390.507200pt;}
.ya8{bottom:390.666510pt;}
.y195{bottom:393.066509pt;}
.y81{bottom:399.146507pt;}
.y5e{bottom:399.626507pt;}
.y30{bottom:400.906506pt;}
.yfd{bottom:401.067200pt;}
.y149{bottom:405.386505pt;}
.y1b0{bottom:407.786504pt;}
.y3c{bottom:409.386503pt;}
.y170{bottom:411.146502pt;}
.ya7{bottom:411.946502pt;}
.y126{bottom:413.706501pt;}
.y194{bottom:415.626500pt;}
.y2f{bottom:416.586500pt;}
.y5d{bottom:420.906498pt;}
.yd2{bottom:426.666496pt;}
.y3b{bottom:428.266495pt;}
.y2e{bottom:432.266494pt;}
.ya6{bottom:433.226493pt;}
.y80{bottom:433.706493pt;}
.y193{bottom:436.906492pt;}
.yfc{bottom:437.226492pt;}
.y5c{bottom:442.186490pt;}
.y16f{bottom:443.146489pt;}
.y1af{bottom:443.306489pt;}
.y125{bottom:445.706488pt;}
.y2d{bottom:446.986488pt;}
.y3a{bottom:447.146488pt;}
.ya5{bottom:454.506485pt;}
.y7f{bottom:454.986485pt;}
.yd1{bottom:458.666483pt;}
.y192{bottom:459.466483pt;}
.y5b{bottom:463.626481pt;}
.y16e{bottom:464.426481pt;}
.y39{bottom:466.026480pt;}
.yfb{bottom:469.226479pt;}
.y2c{bottom:473.546477pt;}
.y7e{bottom:476.266476pt;}
.y124{bottom:477.706476pt;}
.y1ae{bottom:478.826475pt;}
.yd0{bottom:479.946475pt;}
.y191{bottom:480.586474pt;}
.y38{bottom:484.746473pt;}
.y5a{bottom:484.906473pt;}
.ya4{bottom:486.506472pt;}
.yfa{bottom:490.506470pt;}
.y16d{bottom:496.426468pt;}
.y7d{bottom:497.546468pt;}
.y123{bottom:498.986467pt;}
.y2b{bottom:500.106467pt;}
.y148{bottom:501.226466pt;}
.y190{bottom:503.306465pt;}
.y37{bottom:503.626465pt;}
.y59{bottom:506.186464pt;}
.ya3{bottom:507.946463pt;}
.ycf{bottom:511.946462pt;}
.y1ad{bottom:514.346461pt;}
.y16c{bottom:517.706460pt;}
.y36{bottom:522.506458pt;}
.y18f{bottom:524.426457pt;}
.y2a{bottom:526.826456pt;}
.y58{bottom:527.466456pt;}
.y7c{bottom:530.666454pt;}
.y122{bottom:530.986454pt;}
.yce{bottom:533.226453pt;}
.y34{bottom:538.986451pt;}
.ya2{bottom:539.786451pt;}
.y35{bottom:541.386450pt;}
.y29{bottom:542.986449pt;}
.yf9{bottom:543.786449pt;}
.y18e{bottom:546.826448pt;}
.y57{bottom:548.746447pt;}
.y146{bottom:548.747200pt;}
.y16b{bottom:549.706447pt;}
.y1ac{bottom:549.866447pt;}
.y121{bottom:552.266446pt;}
.ya1{bottom:561.226442pt;}
.ycd{bottom:565.226441pt;}
.y7b{bottom:567.466440pt;}
.y145{bottom:567.787200pt;}
.y26{bottom:568.747200pt;}
.y18d{bottom:569.386439pt;}
.y16a{bottom:570.986438pt;}
.y24{bottom:572.106438pt;}
.y25{bottom:572.266438pt;}
.y120{bottom:573.546437pt;}
.y28{bottom:574.826437pt;}
.yf8{bottom:575.786436pt;}
.y56{bottom:581.866434pt;}
.ya0{bottom:582.506434pt;}
.y1ab{bottom:585.386433pt;}
.y7a{bottom:585.866432pt;}
.ycc{bottom:586.506432pt;}
.y143{bottom:586.827200pt;}
.y19{bottom:591.786430pt;}
.y18c{bottom:591.946430pt;}
.yf7{bottom:597.226428pt;}
.y169{bottom:602.986425pt;}
.y9f{bottom:603.786425pt;}
.y79{bottom:604.266425pt;}
.y11f{bottom:605.546424pt;}
.y141{bottom:606.027200pt;}
.ycb{bottom:607.786424pt;}
.y18b{bottom:613.066421pt;}
.y1aa{bottom:620.906418pt;}
.y55{bottom:621.706418pt;}
.y168{bottom:624.266417pt;}
.y13f{bottom:625.067200pt;}
.y11e{bottom:626.826416pt;}
.yf6{bottom:629.066415pt;}
.y18{bottom:629.706415pt;}
.y9e{bottom:635.786412pt;}
.y78{bottom:637.386412pt;}
.yca{bottom:639.786411pt;}
.y54{bottom:642.986409pt;}
.y13d{bottom:644.107200pt;}
.y17{bottom:645.066409pt;}
.y11d{bottom:648.266407pt;}
.yf5{bottom:650.506406pt;}
.y9c{bottom:651.307200pt;}
.y1a9{bottom:655.466404pt;}
.y167{bottom:656.266404pt;}
.y18a{bottom:656.906404pt;}
.y16{bottom:660.426402pt;}
.yc9{bottom:661.066402pt;}
.y53{bottom:664.266401pt;}
.y9a{bottom:670.347200pt;}
.y77{bottom:671.626398pt;}
.yf4{bottom:671.786398pt;}
.y1a8{bottom:676.746396pt;}
.y166{bottom:677.546396pt;}
.y189{bottom:679.466395pt;}
.y11c{bottom:680.106395pt;}
.y13c{bottom:680.266395pt;}
.yc8{bottom:682.346394pt;}
.y52{bottom:685.546392pt;}
.y98{bottom:689.387200pt;}
.y76{bottom:692.906390pt;}
.y15{bottom:694.826389pt;}
.y1a7{bottom:698.026387pt;}
.y165{bottom:698.986387pt;}
.y188{bottom:700.586386pt;}
.y11b{bottom:701.546386pt;}
.yf3{bottom:703.786385pt;}
.y51{bottom:706.986384pt;}
.y96{bottom:708.427200pt;}
.y14{bottom:712.106382pt;}
.y13b{bottom:712.266382pt;}
.y75{bottom:714.026381pt;}
.yc7{bottom:714.346381pt;}
.y1a6{bottom:719.306379pt;}
.yf1{bottom:719.307200pt;}
.y11a{bottom:722.826378pt;}
.y187{bottom:723.146377pt;}
.y13{bottom:727.466376pt;}
.y94{bottom:727.627200pt;}
.y50{bottom:728.266375pt;}
.yc5{bottom:729.867200pt;}
.y164{bottom:730.826374pt;}
.yef{bottom:738.347200pt;}
.y1a5{bottom:740.746370pt;}
.y12{bottom:742.826370pt;}
.y13a{bottom:744.266369pt;}
.y186{bottom:745.546368pt;}
.y74{bottom:746.986368pt;}
.yc3{bottom:749.067200pt;}
.y4f{bottom:749.546367pt;}
.y163{bottom:752.266366pt;}
.y119{bottom:754.826365pt;}
.yed{bottom:757.387200pt;}
.y1a4{bottom:762.026362pt;}
.y93{bottom:763.786361pt;}
.y139{bottom:765.546360pt;}
.y185{bottom:768.106359pt;}
.yc1{bottom:768.107200pt;}
.y117{bottom:770.347200pt;}
.y162{bottom:773.546357pt;}
.yeb{bottom:776.427200pt;}
.y11{bottom:777.226356pt;}
.y4e{bottom:782.506354pt;}
.y1a3{bottom:783.306353pt;}
.y73{bottom:786.826352pt;}
.ybf{bottom:787.147200pt;}
.y115{bottom:789.387200pt;}
.y184{bottom:790.666350pt;}
.y10{bottom:794.506349pt;}
.ye9{bottom:795.467200pt;}
.y92{bottom:796.746348pt;}
.y138{bottom:797.546348pt;}
.y1a2{bottom:804.586345pt;}
.y161{bottom:805.546344pt;}
.ybd{bottom:806.187200pt;}
.y72{bottom:808.106343pt;}
.y113{bottom:808.427200pt;}
.yf{bottom:809.866343pt;}
.y183{bottom:811.786342pt;}
.ye7{bottom:814.667200pt;}
.y137{bottom:818.826339pt;}
.y15f{bottom:821.067200pt;}
.y4d{bottom:822.346338pt;}
.ybb{bottom:825.227200pt;}
.y1a1{bottom:825.866336pt;}
.y111{bottom:827.467200pt;}
.y71{bottom:829.546335pt;}
.y182{bottom:834.346333pt;}
.y91{bottom:836.586332pt;}
.y136{bottom:840.106331pt;}
.y15d{bottom:840.107200pt;}
.y4c{bottom:843.626329pt;}
.y10f{bottom:846.507200pt;}
.y1a0{bottom:847.306328pt;}
.ye{bottom:848.426327pt;}
.y70{bottom:850.826326pt;}
.y181{bottom:855.626324pt;}
.yba{bottom:861.386322pt;}
.y15c{bottom:862.026322pt;}
.y4b{bottom:865.066321pt;}
.y90{bottom:868.586319pt;}
.y6f{bottom:872.106318pt;}
.yd{bottom:873.226317pt;}
.y15a{bottom:877.547200pt;}
.y180{bottom:878.026315pt;}
.ye6{bottom:882.666314pt;}
.y4a{bottom:886.346312pt;}
.y8f{bottom:889.866311pt;}
.y6e{bottom:893.386309pt;}
.y158{bottom:896.587200pt;}
.y17f{bottom:900.586306pt;}
.y1b{bottom:902.987200pt;}
.y49{bottom:907.626304pt;}
.y8e{bottom:911.146302pt;}
.yb9{bottom:914.666301pt;}
.y22{bottom:917.226300pt;}
.y157{bottom:918.506299pt;}
.y17e{bottom:921.866298pt;}
.y6d{bottom:925.386297pt;}
.y48{bottom:928.906295pt;}
.y8d{bottom:932.426294pt;}
.y21{bottom:933.546293pt;}
.y155{bottom:934.027200pt;}
.ye5{bottom:936.106292pt;}
.y17d{bottom:944.426289pt;}
.y6c{bottom:946.666288pt;}
.y20{bottom:949.866287pt;}
.y47{bottom:950.186287pt;}
.y153{bottom:953.227200pt;}
.y8c{bottom:953.866285pt;}
.y1e{bottom:962.667200pt;}
.y17c{bottom:965.546280pt;}
.y6b{bottom:967.946279pt;}
.y23{bottom:982.666274pt;}
.y1d{bottom:983.146273pt;}
.y46{bottom:984.426273pt;}
.y8b{bottom:986.826272pt;}
.y17b{bottom:988.106271pt;}
.y6a{bottom:989.386271pt;}
.y4{bottom:1008.586263pt;}
.yc{bottom:1034.346253pt;}
.y3{bottom:1037.866252pt;}
.y2{bottom:1053.226245pt;}
.y1{bottom:1068.586239pt;}
.h3{height:5.120000pt;}
.hf{height:14.880000pt;}
.h1a{height:17.920000pt;}
.hc{height:18.720000pt;}
.h5{height:19.520000pt;}
.h10{height:31.992175pt;}
.h14{height:32.554674pt;}
.h7{height:32.624987pt;}
.h15{height:34.453111pt;}
.h13{height:34.945299pt;}
.h16{height:35.404673pt;}
.h12{height:35.819673pt;}
.he{height:36.260610pt;}
.h1{height:36.909048pt;}
.h6{height:38.128110pt;}
.ha{height:39.295297pt;}
.hd{height:42.656233pt;}
.h11{height:43.156233pt;}
.h17{height:43.374983pt;}
.hb{height:44.468732pt;}
.h4{height:44.716232pt;}
.h2{height:45.937482pt;}
.h18{height:46.593731pt;}
.h8{height:50.748730pt;}
.h19{height:52.028417pt;}
.h9{height:57.688727pt;}
.h0{height:1122.666667pt;}
.w3{width:2.880000pt;}
.w3c{width:3.680000pt;}
.w1a{width:4.000000pt;}
.w21{width:4.160000pt;}
.w48{width:4.480000pt;}
.w29{width:5.280000pt;}
.w10{width:7.040000pt;}
.w11{width:7.200000pt;}
.w4{width:7.360000pt;}
.w8{width:8.000000pt;}
.w42{width:8.160000pt;}
.wb{width:8.960000pt;}
.w2{width:9.440000pt;}
.we{width:10.720000pt;}
.w1f{width:10.880000pt;}
.w4e{width:11.680000pt;}
.w2b{width:12.000000pt;}
.w6{width:12.800000pt;}
.w3f{width:13.440000pt;}
.wd{width:16.000000pt;}
.w18{width:19.840000pt;}
.w2f{width:21.280000pt;}
.w17{width:23.360000pt;}
.w2e{width:23.840000pt;}
.w14{width:24.000000pt;}
.w19{width:24.320000pt;}
.w1b{width:26.720000pt;}
.w3b{width:27.200000pt;}
.w12{width:27.520000pt;}
.w47{width:28.320000pt;}
.w1d{width:28.480000pt;}
.w28{width:29.760000pt;}
.w13{width:32.640000pt;}
.w35{width:36.640000pt;}
.w2d{width:44.480000pt;}
.wc{width:44.800000pt;}
.wf{width:45.280000pt;}
.w49{width:46.560000pt;}
.wa{width:47.040000pt;}
.w2a{width:47.200000pt;}
.w16{width:48.000000pt;}
.w1c{width:48.480000pt;}
.w31{width:52.000000pt;}
.w2c{width:55.040000pt;}
.w15{width:58.720000pt;}
.w24{width:59.840000pt;}
.w7{width:62.720000pt;}
.w23{width:63.520000pt;}
.w37{width:64.800000pt;}
.w3e{width:67.200000pt;}
.w22{width:67.520000pt;}
.w3d{width:68.160000pt;}
.w39{width:68.800000pt;}
.w20{width:69.600000pt;}
.w4d{width:75.840000pt;}
.w4a{width:77.920000pt;}
.w30{width:81.920000pt;}
.w45{width:84.000000pt;}
.w43{width:85.600000pt;}
.w34{width:88.800000pt;}
.w41{width:93.440000pt;}
.w32{width:94.720000pt;}
.w38{width:95.520000pt;}
.w26{width:96.960000pt;}
.w4b{width:104.640000pt;}
.w27{width:105.440000pt;}
.w46{width:115.360000pt;}
.w1e{width:116.160000pt;}
.w44{width:122.880000pt;}
.w36{width:123.040000pt;}
.w9{width:127.040000pt;}
.w33{width:132.000000pt;}
.w25{width:139.040000pt;}
.w4c{width:146.080000pt;}
.w3a{width:172.640000pt;}
.w40{width:177.760000pt;}
.w5{width:223.520000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3c{left:93.760000pt;}
.x1{left:95.999962pt;}
.x24{left:103.520000pt;}
.x19{left:105.439958pt;}
.x17{left:107.199957pt;}
.x16{left:109.439956pt;}
.x2a{left:112.480000pt;}
.x2d{left:114.240000pt;}
.x3{left:117.919953pt;}
.x1b{left:120.479952pt;}
.x10{left:123.839950pt;}
.x15{left:126.239950pt;}
.x36{left:127.520000pt;}
.x48{left:128.800000pt;}
.x31{left:131.040000pt;}
.x38{left:132.000000pt;}
.x5b{left:134.400000pt;}
.x32{left:136.160000pt;}
.x56{left:140.160000pt;}
.x47{left:141.760000pt;}
.x1f{left:143.999942pt;}
.x1a{left:148.639941pt;}
.x66{left:150.080000pt;}
.x37{left:152.000000pt;}
.x18{left:157.599937pt;}
.x2e{left:159.520000pt;}
.x34{left:162.240000pt;}
.x25{left:166.240000pt;}
.x58{left:168.320000pt;}
.x3b{left:171.040000pt;}
.x59{left:172.320000pt;}
.x2f{left:173.760000pt;}
.x49{left:176.000000pt;}
.x3a{left:177.280000pt;}
.x6c{left:179.360000pt;}
.x61{left:189.120000pt;}
.x40{left:190.720000pt;}
.x55{left:192.000000pt;}
.x62{left:193.280000pt;}
.x5f{left:196.640000pt;}
.x53{left:198.240000pt;}
.x44{left:199.200000pt;}
.x22{left:203.359919pt;}
.x60{left:204.800000pt;}
.x5c{left:206.560000pt;}
.x68{left:208.160000pt;}
.x23{left:209.599916pt;}
.x69{left:212.320000pt;}
.x65{left:215.520000pt;}
.x11{left:216.639913pt;}
.x12{left:219.199912pt;}
.x8{left:223.520000pt;}
.x63{left:226.400000pt;}
.x67{left:228.000000pt;}
.x64{left:230.560000pt;}
.x1c{left:232.479866pt;}
.x54{left:235.520000pt;}
.x6a{left:249.600000pt;}
.x13{left:251.360000pt;}
.x6b{left:256.800000pt;}
.x2{left:268.959892pt;}
.xc{left:270.239892pt;}
.x14{left:271.353225pt;}
.x5d{left:273.760000pt;}
.x9{left:276.959889pt;}
.x20{left:277.919889pt;}
.x5a{left:280.320000pt;}
.x1e{left:286.079886pt;}
.x5e{left:287.200000pt;}
.x1d{left:295.999882pt;}
.x21{left:300.479880pt;}
.x41{left:301.600000pt;}
.x26{left:303.520000pt;}
.x45{left:309.600000pt;}
.x4c{left:311.840000pt;}
.x4b{left:315.840000pt;}
.x42{left:317.600000pt;}
.x2b{left:319.840000pt;}
.x4d{left:327.360000pt;}
.x4e{left:331.360000pt;}
.x4f{left:352.640000pt;}
.x50{left:356.640000pt;}
.xb{left:358.239857pt;}
.xa{left:364.960000pt;}
.xd{left:376.799849pt;}
.x39{left:419.680000pt;}
.x57{left:426.560000pt;}
.x27{left:430.560000pt;}
.x51{left:438.560000pt;}
.x3d{left:440.320000pt;}
.xe{left:462.239815pt;}
.x28{left:504.160000pt;}
.x30{left:512.160000pt;}
.x2c{left:520.160000pt;}
.x33{left:528.160000pt;}
.x3e{left:537.920000pt;}
.x46{left:545.920000pt;}
.x29{left:551.200000pt;}
.x35{left:552.160000pt;}
.x43{left:553.920000pt;}
.x52{left:556.160000pt;}
.x4a{left:561.920000pt;}
.x3f{left:584.960000pt;}
.x6{left:592.159763pt;}
.x7{left:615.359754pt;}
.xf{left:644.799968pt;}
.x4{left:670.239732pt;}
.x5{left:694.560000pt;}
}




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