
    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_3f287428f2055913d599a900.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e1080546aff7dbd3bc1bbe3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bd35cdca86c0caab7cf9fd96.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_38a1254e4b02b9d37941ec5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0398020d1f726d4e4715a801.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_b1c287be4f543f2dfd15dcee.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_cd98ef8ad03f71bc60b410cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120605;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;}
.m3{transform:matrix(0.000000,-0.201049,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.201049,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.201049,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.310869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310869,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:-23.940000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.940000px;}
.ls34{letter-spacing:-0.990000px;}
.ls16{letter-spacing:-0.960000px;}
.ls2e{letter-spacing:-0.660000px;}
.ls43{letter-spacing:-0.579600px;}
.ls24{letter-spacing:-0.544800px;}
.ls5{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.303000px;}
.ls44{letter-spacing:-0.286800px;}
.ls26{letter-spacing:-0.272400px;}
.ls10{letter-spacing:-0.240600px;}
.ls8{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.214800px;}
.ls23{letter-spacing:-0.208800px;}
.ls27{letter-spacing:-0.204600px;}
.ls2a{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.ls15{letter-spacing:-0.107400px;}
.ls33{letter-spacing:-0.078600px;}
.ls3b{letter-spacing:-0.064800px;}
.lsb{letter-spacing:-0.058320px;}
.ls22{letter-spacing:-0.055440px;}
.ls42{letter-spacing:-0.038160px;}
.ls7{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls2c{letter-spacing:0.060600px;}
.ls38{letter-spacing:0.067200px;}
.ls41{letter-spacing:0.075000px;}
.ls25{letter-spacing:0.078000px;}
.ls2b{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls40{letter-spacing:0.169200px;}
.lse{letter-spacing:0.174000px;}
.ls21{letter-spacing:0.174240px;}
.ls32{letter-spacing:0.175200px;}
.ls2d{letter-spacing:0.179280px;}
.ls17{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.192240px;}
.lsf{letter-spacing:0.274800px;}
.lsd{letter-spacing:0.306000px;}
.ls1a{letter-spacing:0.314400px;}
.lsa{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.447600px;}
.ls1d{letter-spacing:0.447840px;}
.ls45{letter-spacing:0.479520px;}
.ls29{letter-spacing:0.617760px;}
.ls3a{letter-spacing:0.642000px;}
.ls39{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.912240px;}
.ls28{letter-spacing:2.106720px;}
.ls1e{letter-spacing:5.706720px;}
.ls3f{letter-spacing:12.186720px;}
.ls1c{letter-spacing:15.786720px;}
.ls13{letter-spacing:17.226720px;}
.ls3c{letter-spacing:17.946720px;}
.ls14{letter-spacing:20.106720px;}
.ls12{letter-spacing:21.546720px;}
.ls37{letter-spacing:22.266720px;}
.ls1b{letter-spacing:22.986720px;}
.ls1{letter-spacing:38.106720px;}
.ls3e{letter-spacing:42.426720px;}
.ls3d{letter-spacing:46.170720px;}
.ls30{letter-spacing:64.890720px;}
.ls36{letter-spacing:66.330720px;}
.ls2f{letter-spacing:67.770720px;}
.ls31{letter-spacing:71.370720px;}
.ls11{letter-spacing:84.330720px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws1a{word-spacing:-14.165760px;}
.ws10{word-spacing:-13.820160px;}
.wsa{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.780560px;}
.ws15{word-spacing:-13.685040px;}
.ws16{word-spacing:-13.680960px;}
.ws1d{word-spacing:-13.674960px;}
.ws19{word-spacing:-13.572960px;}
.ws7{word-spacing:-13.505760px;}
.ws1b{word-spacing:-13.467600px;}
.ws11{word-spacing:-13.450320px;}
.ws8{word-spacing:-13.447440px;}
.ws1c{word-spacing:-13.440960px;}
.ws17{word-spacing:-13.427160px;}
.ws14{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.ws12{word-spacing:-13.296960px;}
.wsf{word-spacing:-13.290960px;}
.wsd{word-spacing:-13.265160px;}
.ws1e{word-spacing:-13.218960px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-9.146880px;}
.ws5{word-spacing:-8.786880px;}
.ws13{word-spacing:-8.582280px;}
.ws18{word-spacing:-8.158017px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-295.659120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._22{margin-left:-48.382560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._38{margin-left:-10.115280px;}
._29{margin-left:-4.441920px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._31{width:2.396040px;}
._30{width:3.455400px;}
._2f{width:4.661280px;}
._2e{width:6.095520px;}
._2d{width:7.709040px;}
._2c{width:8.863200px;}
._32{width:10.251360px;}
._34{width:11.901600px;}
._33{width:16.087560px;}
._3c{width:17.447400px;}
._2a{width:19.343520px;}
._2b{width:20.524080px;}
._3d{width:39.142800px;}
._37{width:151.462800px;}
._35{width:160.635360px;}
._3b{width:168.832080px;}
._39{width:174.312000px;}
._3a{width:188.893440px;}
._36{width:202.470240px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fsa{font-size:30.860798px;}
.fs2{font-size:36.000000px;}
.fs8{font-size:36.097419px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs9{font-size:44.886275px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y106{bottom:-10.980000px;}
.y101{bottom:-10.800000px;}
.y16c{bottom:-7.950000px;}
.y104{bottom:-7.920000px;}
.y14a{bottom:-7.785000px;}
.yff{bottom:-7.740000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:3.465000px;}
.yc9{bottom:3.960000px;}
.y138{bottom:5.308804px;}
.ycc{bottom:5.760000px;}
.y2f{bottom:6.660000px;}
.y111{bottom:6.705000px;}
.yd2{bottom:7.740000px;}
.ye8{bottom:10.080000px;}
.y2d{bottom:18.180000px;}
.y137{bottom:22.630753px;}
.yce{bottom:24.525000px;}
.yc8{bottom:25.020000px;}
.ycb{bottom:26.820000px;}
.y136{bottom:27.059614px;}
.yd1{bottom:28.800000px;}
.y12f{bottom:50.774605px;}
.y6{bottom:61.380000px;}
.y130{bottom:73.811107px;}
.y31{bottom:88.200000px;}
.y1a1{bottom:92.160000px;}
.yc6{bottom:94.500000px;}
.y131{bottom:96.849104px;}
.y13e{bottom:98.820000px;}
.y121{bottom:102.780000px;}
.y96{bottom:103.500000px;}
.y19c{bottom:108.900000px;}
.y30{bottom:110.700000px;}
.y1a0{bottom:113.220000px;}
.yc5{bottom:116.280000px;}
.y16e{bottom:117.000000px;}
.y13d{bottom:119.880000px;}
.y132{bottom:119.886353px;}
.y64{bottom:120.600000px;}
.y120{bottom:123.840000px;}
.y95{bottom:124.560000px;}
.ye9{bottom:126.540000px;}
.y19b{bottom:129.960000px;}
.y1a2{bottom:130.860000px;}
.y2c{bottom:133.200000px;}
.y19f{bottom:134.280000px;}
.yc4{bottom:137.340000px;}
.y16d{bottom:138.060000px;}
.y13c{bottom:140.940000px;}
.y63{bottom:141.660000px;}
.y133{bottom:142.923602px;}
.y11f{bottom:144.900000px;}
.y94{bottom:145.620000px;}
.y19a{bottom:151.020000px;}
.y16b{bottom:152.490000px;}
.y19e{bottom:155.370000px;}
.y2e{bottom:155.730000px;}
.yc3{bottom:158.430000px;}
.y13b{bottom:162.030000px;}
.y16a{bottom:162.390000px;}
.y62{bottom:162.750000px;}
.ye7{bottom:165.630000px;}
.y134{bottom:165.953379px;}
.y11e{bottom:165.990000px;}
.y93{bottom:166.710000px;}
.y169{bottom:169.050000px;}
.y199{bottom:172.110000px;}
.y19d{bottom:176.430000px;}
.yc2{bottom:179.490000px;}
.y13a{bottom:183.090000px;}
.y61{bottom:183.810000px;}
.y2b{bottom:184.890000px;}
.y11d{bottom:187.050000px;}
.y92{bottom:187.590000px;}
.y135{bottom:188.923377px;}
.y168{bottom:190.110000px;}
.y198{bottom:193.170000px;}
.ye6{bottom:197.490000px;}
.y139{bottom:200.190000px;}
.y12e{bottom:200.265000px;}
.yc1{bottom:200.550000px;}
.y60{bottom:204.870000px;}
.y2a{bottom:205.950000px;}
.y11c{bottom:208.110000px;}
.y91{bottom:208.650000px;}
.y167{bottom:211.170000px;}
.y197{bottom:214.230000px;}
.ye5{bottom:218.550000px;}
.yc0{bottom:221.610000px;}
.y11b{bottom:225.750000px;}
.y5f{bottom:225.930000px;}
.y29{bottom:227.010000px;}
.y90{bottom:229.710000px;}
.y166{bottom:232.230000px;}
.y11a{bottom:232.410000px;}
.y196{bottom:235.290000px;}
.ye4{bottom:239.610000px;}
.ybf{bottom:242.670000px;}
.y5e{bottom:246.990000px;}
.y28{bottom:248.070000px;}
.y165{bottom:253.290000px;}
.y119{bottom:253.470000px;}
.y195{bottom:256.350000px;}
.y8f{bottom:259.770000px;}
.ye3{bottom:260.670000px;}
.ybe{bottom:263.730000px;}
.y5d{bottom:268.050000px;}
.y27{bottom:269.130000px;}
.y164{bottom:274.350000px;}
.y118{bottom:274.530000px;}
.y194{bottom:277.410000px;}
.y8e{bottom:280.830000px;}
.ye2{bottom:281.730000px;}
.ybd{bottom:284.790000px;}
.y5c{bottom:289.110000px;}
.y26{bottom:290.190000px;}
.y163{bottom:295.410000px;}
.y117{bottom:295.590000px;}
.y193{bottom:298.470000px;}
.y8d{bottom:301.890000px;}
.ye1{bottom:302.790000px;}
.ybc{bottom:305.850000px;}
.y5b{bottom:310.170000px;}
.y25{bottom:311.250000px;}
.y162{bottom:316.470000px;}
.y116{bottom:316.650000px;}
.y192{bottom:319.530000px;}
.y8c{bottom:322.950000px;}
.ye0{bottom:323.850000px;}
.y161{bottom:326.370000px;}
.ybb{bottom:326.910000px;}
.y5a{bottom:331.230000px;}
.y24{bottom:332.310000px;}
.y160{bottom:332.850000px;}
.y115{bottom:337.710000px;}
.y191{bottom:340.590000px;}
.y8b{bottom:344.010000px;}
.ydf{bottom:344.910000px;}
.yba{bottom:347.970000px;}
.y59{bottom:352.110000px;}
.y23{bottom:353.370000px;}
.y15f{bottom:353.910000px;}
.y114{bottom:358.770000px;}
.y190{bottom:361.650000px;}
.y15e{bottom:363.810000px;}
.y8a{bottom:365.070000px;}
.yde{bottom:365.970000px;}
.yb9{bottom:369.030000px;}
.y15d{bottom:370.470000px;}
.y58{bottom:373.170000px;}
.y22{bottom:374.430000px;}
.y113{bottom:379.830000px;}
.y18f{bottom:382.710000px;}
.y89{bottom:386.130000px;}
.ydd{bottom:387.030000px;}
.y112{bottom:389.730000px;}
.yb8{bottom:390.090000px;}
.y57{bottom:394.230000px;}
.y21{bottom:395.310000px;}
.y110{bottom:396.390000px;}
.y15c{bottom:398.190000px;}
.ycd{bottom:399.990000px;}
.y18e{bottom:403.815000px;}
.y12d{bottom:404.355000px;}
.y88{bottom:407.235000px;}
.ydc{bottom:408.135000px;}
.yb7{bottom:411.195000px;}
.y56{bottom:415.335000px;}
.y20{bottom:416.415000px;}
.y10f{bottom:417.495000px;}
.y15b{bottom:419.295000px;}
.y18d{bottom:424.875000px;}
.y12c{bottom:425.415000px;}
.y10e{bottom:427.395000px;}
.y87{bottom:428.295000px;}
.ydb{bottom:429.195000px;}
.yb6{bottom:432.255000px;}
.y10d{bottom:433.875000px;}
.y55{bottom:436.395000px;}
.y1f{bottom:437.475000px;}
.y18c{bottom:445.935000px;}
.y12b{bottom:446.475000px;}
.y86{bottom:449.355000px;}
.yda{bottom:450.255000px;}
.yb5{bottom:453.315000px;}
.y10c{bottom:454.935000px;}
.y54{bottom:457.455000px;}
.y1e{bottom:458.535000px;}
.y10b{bottom:464.835000px;}
.y18b{bottom:466.995000px;}
.y12a{bottom:467.535000px;}
.y85{bottom:470.415000px;}
.yd9{bottom:471.315000px;}
.y10a{bottom:471.495000px;}
.yca{bottom:472.215000px;}
.yb4{bottom:474.375000px;}
.yd0{bottom:475.635000px;}
.y53{bottom:478.515000px;}
.y1d{bottom:479.595000px;}
.y18a{bottom:488.055000px;}
.y129{bottom:488.595000px;}
.y84{bottom:491.475000px;}
.yd8{bottom:492.375000px;}
.y109{bottom:492.555000px;}
.yb3{bottom:495.435000px;}
.y52{bottom:499.575000px;}
.y1c{bottom:500.655000px;}
.y189{bottom:509.115000px;}
.y128{bottom:509.655000px;}
.y83{bottom:512.535000px;}
.yd7{bottom:513.435000px;}
.y108{bottom:513.615000px;}
.yb2{bottom:516.495000px;}
.y51{bottom:520.635000px;}
.y1b{bottom:521.715000px;}
.y188{bottom:530.175000px;}
.y127{bottom:530.715000px;}
.y82{bottom:533.595000px;}
.yd6{bottom:534.495000px;}
.y107{bottom:534.675000px;}
.yb1{bottom:537.555000px;}
.y50{bottom:541.695000px;}
.y1a{bottom:542.775000px;}
.yc7{bottom:546.735000px;}
.y187{bottom:551.235000px;}
.y126{bottom:551.775000px;}
.y81{bottom:554.655000px;}
.yd5{bottom:555.555000px;}
.y105{bottom:555.735000px;}
.yb0{bottom:558.615000px;}
.y4f{bottom:562.755000px;}
.y103{bottom:565.635000px;}
.y125{bottom:566.895000px;}
.y102{bottom:572.115000px;}
.y186{bottom:572.295000px;}
.y80{bottom:575.715000px;}
.yd4{bottom:576.615000px;}
.yaf{bottom:579.675000px;}
.y4e{bottom:583.815000px;}
.y19{bottom:587.415000px;}
.y124{bottom:588.675000px;}
.y100{bottom:593.175000px;}
.y185{bottom:593.355000px;}
.y15a{bottom:596.775000px;}
.y7f{bottom:596.955000px;}
.yd3{bottom:597.675000px;}
.yae{bottom:600.735000px;}
.yfe{bottom:603.075000px;}
.y4d{bottom:604.875000px;}
.yfd{bottom:609.735000px;}
.y123{bottom:610.455000px;}
.y18{bottom:617.295000px;}
.y159{bottom:617.835000px;}
.y7e{bottom:618.735000px;}
.yad{bottom:621.795000px;}
.y184{bottom:623.415000px;}
.y4c{bottom:625.935000px;}
.yfc{bottom:630.795000px;}
.y122{bottom:632.235000px;}
.y17{bottom:638.355000px;}
.y158{bottom:638.895000px;}
.y7d{bottom:639.795000px;}
.yac{bottom:642.855000px;}
.y183{bottom:644.475000px;}
.y4b{bottom:646.995000px;}
.yfb{bottom:651.885000px;}
.y16{bottom:659.445000px;}
.y157{bottom:659.985000px;}
.y7c{bottom:660.885000px;}
.yab{bottom:663.945000px;}
.y182{bottom:665.565000px;}
.y4a{bottom:668.085000px;}
.yfa{bottom:672.945000px;}
.y15{bottom:680.505000px;}
.y156{bottom:681.045000px;}
.y7b{bottom:681.945000px;}
.yaa{bottom:685.005000px;}
.y181{bottom:686.625000px;}
.y49{bottom:689.145000px;}
.yf9{bottom:694.005000px;}
.y14{bottom:701.565000px;}
.y155{bottom:702.105000px;}
.y7a{bottom:703.005000px;}
.ya9{bottom:706.065000px;}
.y180{bottom:707.505000px;}
.y48{bottom:710.205000px;}
.yf8{bottom:715.065000px;}
.y13{bottom:722.625000px;}
.y154{bottom:723.165000px;}
.y79{bottom:724.065000px;}
.ya8{bottom:727.125000px;}
.y17f{bottom:728.565000px;}
.y47{bottom:731.265000px;}
.yf7{bottom:736.125000px;}
.y12{bottom:743.685000px;}
.y153{bottom:744.225000px;}
.y78{bottom:745.125000px;}
.ya7{bottom:748.005000px;}
.y17e{bottom:749.625000px;}
.y46{bottom:752.325000px;}
.yf6{bottom:763.845000px;}
.y17d{bottom:764.025000px;}
.y11{bottom:764.745000px;}
.y152{bottom:765.285000px;}
.y77{bottom:766.005000px;}
.ya6{bottom:769.065000px;}
.y45{bottom:773.385000px;}
.y17c{bottom:773.925000px;}
.y17b{bottom:780.585000px;}
.yf5{bottom:784.905000px;}
.y10{bottom:785.805000px;}
.y151{bottom:786.345000px;}
.y76{bottom:787.065000px;}
.ya5{bottom:790.125000px;}
.y44{bottom:794.445000px;}
.y17a{bottom:801.645000px;}
.y150{bottom:803.985000px;}
.yf4{bottom:805.965000px;}
.yf{bottom:806.865000px;}
.y75{bottom:808.125000px;}
.y14f{bottom:810.645000px;}
.ya4{bottom:811.185000px;}
.y43{bottom:815.505000px;}
.y179{bottom:822.705000px;}
.yf3{bottom:827.025000px;}
.ye{bottom:827.925000px;}
.y74{bottom:829.185000px;}
.y14e{bottom:831.705000px;}
.ya3{bottom:832.245000px;}
.y42{bottom:836.565000px;}
.y178{bottom:843.765000px;}
.yf2{bottom:848.085000px;}
.y73{bottom:850.245000px;}
.yd{bottom:851.145000px;}
.y14d{bottom:852.765000px;}
.ya2{bottom:853.305000px;}
.y41{bottom:857.625000px;}
.y177{bottom:864.825000px;}
.yf1{bottom:869.145000px;}
.y72{bottom:871.305000px;}
.y14c{bottom:873.825000px;}
.yc{bottom:877.425000px;}
.y40{bottom:878.685000px;}
.ya1{bottom:883.365000px;}
.y176{bottom:885.885000px;}
.yf0{bottom:890.205000px;}
.y71{bottom:892.365000px;}
.yb{bottom:894.165000px;}
.y14b{bottom:894.885000px;}
.y3f{bottom:899.790000px;}
.ya0{bottom:904.470000px;}
.y149{bottom:904.830000px;}
.y175{bottom:906.990000px;}
.yef{bottom:911.310000px;}
.y148{bottom:911.490000px;}
.y70{bottom:913.470000px;}
.ya{bottom:916.530000px;}
.y3e{bottom:920.850000px;}
.y9f{bottom:925.530000px;}
.y174{bottom:928.050000px;}
.yee{bottom:932.370000px;}
.y147{bottom:932.550000px;}
.y6f{bottom:934.530000px;}
.y173{bottom:937.950000px;}
.y9{bottom:941.730000px;}
.y3d{bottom:941.910000px;}
.y146{bottom:942.450000px;}
.y172{bottom:944.610000px;}
.y9e{bottom:946.590000px;}
.y145{bottom:948.930000px;}
.yed{bottom:953.430000px;}
.y6e{bottom:955.590000px;}
.y3c{bottom:957.030000px;}
.y171{bottom:965.670000px;}
.y9d{bottom:967.650000px;}
.y144{bottom:969.990000px;}
.yec{bottom:974.490000px;}
.y8{bottom:975.390000px;}
.y170{bottom:975.570000px;}
.y6d{bottom:976.650000px;}
.y3b{bottom:979.530000px;}
.y16f{bottom:982.050000px;}
.y9c{bottom:988.710000px;}
.yeb{bottom:989.610000px;}
.y143{bottom:991.050000px;}
.y6c{bottom:997.710000px;}
.y3a{bottom:1002.030000px;}
.y7{bottom:1009.050000px;}
.y9b{bottom:1009.770000px;}
.yea{bottom:1011.390000px;}
.y142{bottom:1012.110000px;}
.y6b{bottom:1018.770000px;}
.y39{bottom:1024.530000px;}
.y9a{bottom:1030.830000px;}
.y141{bottom:1033.170000px;}
.y6a{bottom:1039.830000px;}
.y38{bottom:1047.030000px;}
.y5{bottom:1049.190000px;}
.y99{bottom:1051.890000px;}
.y140{bottom:1054.230000px;}
.y69{bottom:1060.890000px;}
.y37{bottom:1069.530000px;}
.y98{bottom:1072.950000px;}
.y13f{bottom:1075.290000px;}
.y4{bottom:1081.410000px;}
.y68{bottom:1081.950000px;}
.y36{bottom:1092.030000px;}
.y97{bottom:1094.010000px;}
.y67{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y35{bottom:1114.530000px;}
.y66{bottom:1124.070000px;}
.y34{bottom:1137.030000px;}
.y65{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h1d{height:3.420000px;}
.h1b{height:3.600000px;}
.h22{height:3.636000px;}
.h24{height:6.479850px;}
.h1c{height:6.480000px;}
.h23{height:6.659850px;}
.h1a{height:6.660000px;}
.h18{height:21.060000px;}
.h19{height:21.096000px;}
.hb{height:21.600000px;}
.hc{height:21.636000px;}
.he{height:21.780000px;}
.hd{height:21.816000px;}
.h17{height:23.256000px;}
.h16{height:24.480000px;}
.h21{height:30.695041px;}
.h1f{height:35.903537px;}
.h7{height:38.671172px;}
.h13{height:38.916000px;}
.h11{height:39.420000px;}
.h10{height:39.810234px;}
.h12{height:41.220000px;}
.h14{height:44.100000px;}
.ha{height:44.136000px;}
.h20{height:44.645187px;}
.hf{height:45.578672px;}
.h8{height:45.637031px;}
.h9{height:59.439023px;}
.h15{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h1e{height:197.471743px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:49.680000px;}
.w18{width:60.660000px;}
.wf{width:71.136000px;}
.w7{width:71.280000px;}
.w6{width:71.316000px;}
.w14{width:78.660000px;}
.w15{width:86.256000px;}
.w11{width:86.400000px;}
.wa{width:93.780000px;}
.wc{width:125.640000px;}
.w13{width:144.036000px;}
.wb{width:147.996000px;}
.wd{width:148.176000px;}
.w1a{width:151.230000px;}
.w19{width:155.190000px;}
.w1b{width:155.550000px;}
.w16{width:164.910000px;}
.w17{width:172.650000px;}
.w3{width:179.670000px;}
.w9{width:263.550000px;}
.w8{width:263.775000px;}
.w10{width:308.955000px;}
.w4{width:337.755000px;}
.w1c{width:367.504772px;}
.we{width:395.355000px;}
.w12{width:466.485000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:3.324199px;}
.x9{left:7.740000px;}
.x25{left:26.905952px;}
.x15{left:48.240000px;}
.x6{left:53.999987px;}
.x35{left:59.039987px;}
.x10{left:62.496000px;}
.x26{left:68.334791px;}
.x18{left:70.199987px;}
.x7{left:75.599987px;}
.xf{left:83.160000px;}
.x12{left:84.600000px;}
.xe{left:86.075987px;}
.x27{left:89.127725px;}
.x36{left:102.275987px;}
.x28{left:109.827742px;}
.x13{left:119.190000px;}
.x11{left:120.990000px;}
.x16{left:123.660000px;}
.x29{left:130.557493px;}
.x2a{left:151.259369px;}
.x5{left:168.509987px;}
.x2b{left:171.961244px;}
.x1f{left:183.990000px;}
.x8{left:187.590000px;}
.x2c{left:192.756037px;}
.x1b{left:213.330000px;}
.x2d{left:234.187663px;}
.x20{left:245.550000px;}
.x2e{left:254.889539px;}
.x23{left:270.839980px;}
.x3{left:272.234987px;}
.x2f{left:275.591415px;}
.x30{left:296.386207px;}
.x19{left:309.315000px;}
.x31{left:317.115958px;}
.x17{left:325.335000px;}
.x32{left:337.817834px;}
.x2{left:350.534987px;}
.x1e{left:357.375000px;}
.x33{left:358.519710px;}
.xa{left:367.995000px;}
.x21{left:401.655000px;}
.x4{left:419.114987px;}
.x1a{left:435.675000px;}
.x14{left:458.565000px;}
.x1{left:479.264987px;}
.xb{left:490.425000px;}
.x1d{left:522.285000px;}
.x22{left:553.605000px;}
.xc{left:562.425000px;}
.x1c{left:608.685000px;}
.xd{left:634.470000px;}
.x34{left:638.429987px;}
.x37{left:839.339987px;}
@media print{
.v2{vertical-align:-21.280000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.280000pt;}
.ls34{letter-spacing:-0.880000pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls2e{letter-spacing:-0.586667pt;}
.ls43{letter-spacing:-0.515200pt;}
.ls24{letter-spacing:-0.484267pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.269333pt;}
.ls44{letter-spacing:-0.254933pt;}
.ls26{letter-spacing:-0.242133pt;}
.ls10{letter-spacing:-0.213867pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.190933pt;}
.ls23{letter-spacing:-0.185600pt;}
.ls27{letter-spacing:-0.181867pt;}
.ls2a{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls15{letter-spacing:-0.095467pt;}
.ls33{letter-spacing:-0.069867pt;}
.ls3b{letter-spacing:-0.057600pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls22{letter-spacing:-0.049280pt;}
.ls42{letter-spacing:-0.033920pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls2c{letter-spacing:0.053867pt;}
.ls38{letter-spacing:0.059733pt;}
.ls41{letter-spacing:0.066667pt;}
.ls25{letter-spacing:0.069333pt;}
.ls2b{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls40{letter-spacing:0.150400pt;}
.lse{letter-spacing:0.154667pt;}
.ls21{letter-spacing:0.154880pt;}
.ls32{letter-spacing:0.155733pt;}
.ls2d{letter-spacing:0.159360pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.170880pt;}
.lsf{letter-spacing:0.244267pt;}
.lsd{letter-spacing:0.272000pt;}
.ls1a{letter-spacing:0.279467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.397867pt;}
.ls1d{letter-spacing:0.398080pt;}
.ls45{letter-spacing:0.426240pt;}
.ls29{letter-spacing:0.549120pt;}
.ls3a{letter-spacing:0.570667pt;}
.ls39{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.810880pt;}
.ls28{letter-spacing:1.872640pt;}
.ls1e{letter-spacing:5.072640pt;}
.ls3f{letter-spacing:10.832640pt;}
.ls1c{letter-spacing:14.032640pt;}
.ls13{letter-spacing:15.312640pt;}
.ls3c{letter-spacing:15.952640pt;}
.ls14{letter-spacing:17.872640pt;}
.ls12{letter-spacing:19.152640pt;}
.ls37{letter-spacing:19.792640pt;}
.ls1b{letter-spacing:20.432640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls3e{letter-spacing:37.712640pt;}
.ls3d{letter-spacing:41.040640pt;}
.ls30{letter-spacing:57.680640pt;}
.ls36{letter-spacing:58.960640pt;}
.ls2f{letter-spacing:60.240640pt;}
.ls31{letter-spacing:63.440640pt;}
.ls11{letter-spacing:74.960640pt;}
.wse{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws1a{word-spacing:-12.591787pt;}
.ws10{word-spacing:-12.284587pt;}
.wsa{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.249387pt;}
.ws15{word-spacing:-12.164480pt;}
.ws16{word-spacing:-12.160853pt;}
.ws1d{word-spacing:-12.155520pt;}
.ws19{word-spacing:-12.064853pt;}
.ws7{word-spacing:-12.005120pt;}
.ws1b{word-spacing:-11.971200pt;}
.ws11{word-spacing:-11.955840pt;}
.ws8{word-spacing:-11.953280pt;}
.ws1c{word-spacing:-11.947520pt;}
.ws17{word-spacing:-11.935253pt;}
.ws14{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.ws12{word-spacing:-11.819520pt;}
.wsf{word-spacing:-11.814187pt;}
.wsd{word-spacing:-11.791253pt;}
.ws1e{word-spacing:-11.750187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-8.130560pt;}
.ws5{word-spacing:-7.810560pt;}
.ws13{word-spacing:-7.628693pt;}
.ws18{word-spacing:-7.251570pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-262.808107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._22{margin-left:-43.006720pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._38{margin-left:-8.991360pt;}
._29{margin-left:-3.948373pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._31{width:2.129813pt;}
._30{width:3.071467pt;}
._2f{width:4.143360pt;}
._2e{width:5.418240pt;}
._2d{width:6.852480pt;}
._2c{width:7.878400pt;}
._32{width:9.112320pt;}
._34{width:10.579200pt;}
._33{width:14.300053pt;}
._3c{width:15.508800pt;}
._2a{width:17.194240pt;}
._2b{width:18.243627pt;}
._3d{width:34.793600pt;}
._37{width:134.633600pt;}
._35{width:142.786987pt;}
._3b{width:150.072960pt;}
._39{width:154.944000pt;}
._3a{width:167.905280pt;}
._36{width:179.973547pt;}
.fsa{font-size:27.431820pt;}
.fs2{font-size:32.000000pt;}
.fs8{font-size:32.086595pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs9{font-size:39.898911pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y106{bottom:-9.760000pt;}
.y101{bottom:-9.600000pt;}
.y16c{bottom:-7.066667pt;}
.y104{bottom:-7.040000pt;}
.y14a{bottom:-6.920000pt;}
.yff{bottom:-6.880000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.080000pt;}
.yc9{bottom:3.520000pt;}
.y138{bottom:4.718937pt;}
.ycc{bottom:5.120000pt;}
.y2f{bottom:5.920000pt;}
.y111{bottom:5.960000pt;}
.yd2{bottom:6.880000pt;}
.ye8{bottom:8.960000pt;}
.y2d{bottom:16.160000pt;}
.y137{bottom:20.116225pt;}
.yce{bottom:21.800000pt;}
.yc8{bottom:22.240000pt;}
.ycb{bottom:23.840000pt;}
.y136{bottom:24.052990pt;}
.yd1{bottom:25.600000pt;}
.y12f{bottom:45.132983pt;}
.y6{bottom:54.560000pt;}
.y130{bottom:65.609873pt;}
.y31{bottom:78.400000pt;}
.y1a1{bottom:81.920000pt;}
.yc6{bottom:84.000000pt;}
.y131{bottom:86.088092pt;}
.y13e{bottom:87.840000pt;}
.y121{bottom:91.360000pt;}
.y96{bottom:92.000000pt;}
.y19c{bottom:96.800000pt;}
.y30{bottom:98.400000pt;}
.y1a0{bottom:100.640000pt;}
.yc5{bottom:103.360000pt;}
.y16e{bottom:104.000000pt;}
.y13d{bottom:106.560000pt;}
.y132{bottom:106.565647pt;}
.y64{bottom:107.200000pt;}
.y120{bottom:110.080000pt;}
.y95{bottom:110.720000pt;}
.ye9{bottom:112.480000pt;}
.y19b{bottom:115.520000pt;}
.y1a2{bottom:116.320000pt;}
.y2c{bottom:118.400000pt;}
.y19f{bottom:119.360000pt;}
.yc4{bottom:122.080000pt;}
.y16d{bottom:122.720000pt;}
.y13c{bottom:125.280000pt;}
.y63{bottom:125.920000pt;}
.y133{bottom:127.043202pt;}
.y11f{bottom:128.800000pt;}
.y94{bottom:129.440000pt;}
.y19a{bottom:134.240000pt;}
.y16b{bottom:135.546667pt;}
.y19e{bottom:138.106667pt;}
.y2e{bottom:138.426667pt;}
.yc3{bottom:140.826667pt;}
.y13b{bottom:144.026667pt;}
.y16a{bottom:144.346667pt;}
.y62{bottom:144.666667pt;}
.ye7{bottom:147.226667pt;}
.y134{bottom:147.514115pt;}
.y11e{bottom:147.546667pt;}
.y93{bottom:148.186667pt;}
.y169{bottom:150.266667pt;}
.y199{bottom:152.986667pt;}
.y19d{bottom:156.826667pt;}
.yc2{bottom:159.546667pt;}
.y13a{bottom:162.746667pt;}
.y61{bottom:163.386667pt;}
.y2b{bottom:164.346667pt;}
.y11d{bottom:166.266667pt;}
.y92{bottom:166.746667pt;}
.y135{bottom:167.931891pt;}
.y168{bottom:168.986667pt;}
.y198{bottom:171.706667pt;}
.ye6{bottom:175.546667pt;}
.y139{bottom:177.946667pt;}
.y12e{bottom:178.013333pt;}
.yc1{bottom:178.266667pt;}
.y60{bottom:182.106667pt;}
.y2a{bottom:183.066667pt;}
.y11c{bottom:184.986667pt;}
.y91{bottom:185.466667pt;}
.y167{bottom:187.706667pt;}
.y197{bottom:190.426667pt;}
.ye5{bottom:194.266667pt;}
.yc0{bottom:196.986667pt;}
.y11b{bottom:200.666667pt;}
.y5f{bottom:200.826667pt;}
.y29{bottom:201.786667pt;}
.y90{bottom:204.186667pt;}
.y166{bottom:206.426667pt;}
.y11a{bottom:206.586667pt;}
.y196{bottom:209.146667pt;}
.ye4{bottom:212.986667pt;}
.ybf{bottom:215.706667pt;}
.y5e{bottom:219.546667pt;}
.y28{bottom:220.506667pt;}
.y165{bottom:225.146667pt;}
.y119{bottom:225.306667pt;}
.y195{bottom:227.866667pt;}
.y8f{bottom:230.906667pt;}
.ye3{bottom:231.706667pt;}
.ybe{bottom:234.426667pt;}
.y5d{bottom:238.266667pt;}
.y27{bottom:239.226667pt;}
.y164{bottom:243.866667pt;}
.y118{bottom:244.026667pt;}
.y194{bottom:246.586667pt;}
.y8e{bottom:249.626667pt;}
.ye2{bottom:250.426667pt;}
.ybd{bottom:253.146667pt;}
.y5c{bottom:256.986667pt;}
.y26{bottom:257.946667pt;}
.y163{bottom:262.586667pt;}
.y117{bottom:262.746667pt;}
.y193{bottom:265.306667pt;}
.y8d{bottom:268.346667pt;}
.ye1{bottom:269.146667pt;}
.ybc{bottom:271.866667pt;}
.y5b{bottom:275.706667pt;}
.y25{bottom:276.666667pt;}
.y162{bottom:281.306667pt;}
.y116{bottom:281.466667pt;}
.y192{bottom:284.026667pt;}
.y8c{bottom:287.066667pt;}
.ye0{bottom:287.866667pt;}
.y161{bottom:290.106667pt;}
.ybb{bottom:290.586667pt;}
.y5a{bottom:294.426667pt;}
.y24{bottom:295.386667pt;}
.y160{bottom:295.866667pt;}
.y115{bottom:300.186667pt;}
.y191{bottom:302.746667pt;}
.y8b{bottom:305.786667pt;}
.ydf{bottom:306.586667pt;}
.yba{bottom:309.306667pt;}
.y59{bottom:312.986667pt;}
.y23{bottom:314.106667pt;}
.y15f{bottom:314.586667pt;}
.y114{bottom:318.906667pt;}
.y190{bottom:321.466667pt;}
.y15e{bottom:323.386667pt;}
.y8a{bottom:324.506667pt;}
.yde{bottom:325.306667pt;}
.yb9{bottom:328.026667pt;}
.y15d{bottom:329.306667pt;}
.y58{bottom:331.706667pt;}
.y22{bottom:332.826667pt;}
.y113{bottom:337.626667pt;}
.y18f{bottom:340.186667pt;}
.y89{bottom:343.226667pt;}
.ydd{bottom:344.026667pt;}
.y112{bottom:346.426667pt;}
.yb8{bottom:346.746667pt;}
.y57{bottom:350.426667pt;}
.y21{bottom:351.386667pt;}
.y110{bottom:352.346667pt;}
.y15c{bottom:353.946667pt;}
.ycd{bottom:355.546667pt;}
.y18e{bottom:358.946667pt;}
.y12d{bottom:359.426667pt;}
.y88{bottom:361.986667pt;}
.ydc{bottom:362.786667pt;}
.yb7{bottom:365.506667pt;}
.y56{bottom:369.186667pt;}
.y20{bottom:370.146667pt;}
.y10f{bottom:371.106667pt;}
.y15b{bottom:372.706667pt;}
.y18d{bottom:377.666667pt;}
.y12c{bottom:378.146667pt;}
.y10e{bottom:379.906667pt;}
.y87{bottom:380.706667pt;}
.ydb{bottom:381.506667pt;}
.yb6{bottom:384.226667pt;}
.y10d{bottom:385.666667pt;}
.y55{bottom:387.906667pt;}
.y1f{bottom:388.866667pt;}
.y18c{bottom:396.386667pt;}
.y12b{bottom:396.866667pt;}
.y86{bottom:399.426667pt;}
.yda{bottom:400.226667pt;}
.yb5{bottom:402.946667pt;}
.y10c{bottom:404.386667pt;}
.y54{bottom:406.626667pt;}
.y1e{bottom:407.586667pt;}
.y10b{bottom:413.186667pt;}
.y18b{bottom:415.106667pt;}
.y12a{bottom:415.586667pt;}
.y85{bottom:418.146667pt;}
.yd9{bottom:418.946667pt;}
.y10a{bottom:419.106667pt;}
.yca{bottom:419.746667pt;}
.yb4{bottom:421.666667pt;}
.yd0{bottom:422.786667pt;}
.y53{bottom:425.346667pt;}
.y1d{bottom:426.306667pt;}
.y18a{bottom:433.826667pt;}
.y129{bottom:434.306667pt;}
.y84{bottom:436.866667pt;}
.yd8{bottom:437.666667pt;}
.y109{bottom:437.826667pt;}
.yb3{bottom:440.386667pt;}
.y52{bottom:444.066667pt;}
.y1c{bottom:445.026667pt;}
.y189{bottom:452.546667pt;}
.y128{bottom:453.026667pt;}
.y83{bottom:455.586667pt;}
.yd7{bottom:456.386667pt;}
.y108{bottom:456.546667pt;}
.yb2{bottom:459.106667pt;}
.y51{bottom:462.786667pt;}
.y1b{bottom:463.746667pt;}
.y188{bottom:471.266667pt;}
.y127{bottom:471.746667pt;}
.y82{bottom:474.306667pt;}
.yd6{bottom:475.106667pt;}
.y107{bottom:475.266667pt;}
.yb1{bottom:477.826667pt;}
.y50{bottom:481.506667pt;}
.y1a{bottom:482.466667pt;}
.yc7{bottom:485.986667pt;}
.y187{bottom:489.986667pt;}
.y126{bottom:490.466667pt;}
.y81{bottom:493.026667pt;}
.yd5{bottom:493.826667pt;}
.y105{bottom:493.986667pt;}
.yb0{bottom:496.546667pt;}
.y4f{bottom:500.226667pt;}
.y103{bottom:502.786667pt;}
.y125{bottom:503.906667pt;}
.y102{bottom:508.546667pt;}
.y186{bottom:508.706667pt;}
.y80{bottom:511.746667pt;}
.yd4{bottom:512.546667pt;}
.yaf{bottom:515.266667pt;}
.y4e{bottom:518.946667pt;}
.y19{bottom:522.146667pt;}
.y124{bottom:523.266667pt;}
.y100{bottom:527.266667pt;}
.y185{bottom:527.426667pt;}
.y15a{bottom:530.466667pt;}
.y7f{bottom:530.626667pt;}
.yd3{bottom:531.266667pt;}
.yae{bottom:533.986667pt;}
.yfe{bottom:536.066667pt;}
.y4d{bottom:537.666667pt;}
.yfd{bottom:541.986667pt;}
.y123{bottom:542.626667pt;}
.y18{bottom:548.706667pt;}
.y159{bottom:549.186667pt;}
.y7e{bottom:549.986667pt;}
.yad{bottom:552.706667pt;}
.y184{bottom:554.146667pt;}
.y4c{bottom:556.386667pt;}
.yfc{bottom:560.706667pt;}
.y122{bottom:561.986667pt;}
.y17{bottom:567.426667pt;}
.y158{bottom:567.906667pt;}
.y7d{bottom:568.706667pt;}
.yac{bottom:571.426667pt;}
.y183{bottom:572.866667pt;}
.y4b{bottom:575.106667pt;}
.yfb{bottom:579.453333pt;}
.y16{bottom:586.173333pt;}
.y157{bottom:586.653333pt;}
.y7c{bottom:587.453333pt;}
.yab{bottom:590.173333pt;}
.y182{bottom:591.613333pt;}
.y4a{bottom:593.853333pt;}
.yfa{bottom:598.173333pt;}
.y15{bottom:604.893333pt;}
.y156{bottom:605.373333pt;}
.y7b{bottom:606.173333pt;}
.yaa{bottom:608.893333pt;}
.y181{bottom:610.333333pt;}
.y49{bottom:612.573333pt;}
.yf9{bottom:616.893333pt;}
.y14{bottom:623.613333pt;}
.y155{bottom:624.093333pt;}
.y7a{bottom:624.893333pt;}
.ya9{bottom:627.613333pt;}
.y180{bottom:628.893333pt;}
.y48{bottom:631.293333pt;}
.yf8{bottom:635.613333pt;}
.y13{bottom:642.333333pt;}
.y154{bottom:642.813333pt;}
.y79{bottom:643.613333pt;}
.ya8{bottom:646.333333pt;}
.y17f{bottom:647.613333pt;}
.y47{bottom:650.013333pt;}
.yf7{bottom:654.333333pt;}
.y12{bottom:661.053333pt;}
.y153{bottom:661.533333pt;}
.y78{bottom:662.333333pt;}
.ya7{bottom:664.893333pt;}
.y17e{bottom:666.333333pt;}
.y46{bottom:668.733333pt;}
.yf6{bottom:678.973333pt;}
.y17d{bottom:679.133333pt;}
.y11{bottom:679.773333pt;}
.y152{bottom:680.253333pt;}
.y77{bottom:680.893333pt;}
.ya6{bottom:683.613333pt;}
.y45{bottom:687.453333pt;}
.y17c{bottom:687.933333pt;}
.y17b{bottom:693.853333pt;}
.yf5{bottom:697.693333pt;}
.y10{bottom:698.493333pt;}
.y151{bottom:698.973333pt;}
.y76{bottom:699.613333pt;}
.ya5{bottom:702.333333pt;}
.y44{bottom:706.173333pt;}
.y17a{bottom:712.573333pt;}
.y150{bottom:714.653333pt;}
.yf4{bottom:716.413333pt;}
.yf{bottom:717.213333pt;}
.y75{bottom:718.333333pt;}
.y14f{bottom:720.573333pt;}
.ya4{bottom:721.053333pt;}
.y43{bottom:724.893333pt;}
.y179{bottom:731.293333pt;}
.yf3{bottom:735.133333pt;}
.ye{bottom:735.933333pt;}
.y74{bottom:737.053333pt;}
.y14e{bottom:739.293333pt;}
.ya3{bottom:739.773333pt;}
.y42{bottom:743.613333pt;}
.y178{bottom:750.013333pt;}
.yf2{bottom:753.853333pt;}
.y73{bottom:755.773333pt;}
.yd{bottom:756.573333pt;}
.y14d{bottom:758.013333pt;}
.ya2{bottom:758.493333pt;}
.y41{bottom:762.333333pt;}
.y177{bottom:768.733333pt;}
.yf1{bottom:772.573333pt;}
.y72{bottom:774.493333pt;}
.y14c{bottom:776.733333pt;}
.yc{bottom:779.933333pt;}
.y40{bottom:781.053333pt;}
.ya1{bottom:785.213333pt;}
.y176{bottom:787.453333pt;}
.yf0{bottom:791.293333pt;}
.y71{bottom:793.213333pt;}
.yb{bottom:794.813333pt;}
.y14b{bottom:795.453333pt;}
.y3f{bottom:799.813333pt;}
.ya0{bottom:803.973333pt;}
.y149{bottom:804.293333pt;}
.y175{bottom:806.213333pt;}
.yef{bottom:810.053333pt;}
.y148{bottom:810.213333pt;}
.y70{bottom:811.973333pt;}
.ya{bottom:814.693333pt;}
.y3e{bottom:818.533333pt;}
.y9f{bottom:822.693333pt;}
.y174{bottom:824.933333pt;}
.yee{bottom:828.773333pt;}
.y147{bottom:828.933333pt;}
.y6f{bottom:830.693333pt;}
.y173{bottom:833.733333pt;}
.y9{bottom:837.093333pt;}
.y3d{bottom:837.253333pt;}
.y146{bottom:837.733333pt;}
.y172{bottom:839.653333pt;}
.y9e{bottom:841.413333pt;}
.y145{bottom:843.493333pt;}
.yed{bottom:847.493333pt;}
.y6e{bottom:849.413333pt;}
.y3c{bottom:850.693333pt;}
.y171{bottom:858.373333pt;}
.y9d{bottom:860.133333pt;}
.y144{bottom:862.213333pt;}
.yec{bottom:866.213333pt;}
.y8{bottom:867.013333pt;}
.y170{bottom:867.173333pt;}
.y6d{bottom:868.133333pt;}
.y3b{bottom:870.693333pt;}
.y16f{bottom:872.933333pt;}
.y9c{bottom:878.853333pt;}
.yeb{bottom:879.653333pt;}
.y143{bottom:880.933333pt;}
.y6c{bottom:886.853333pt;}
.y3a{bottom:890.693333pt;}
.y7{bottom:896.933333pt;}
.y9b{bottom:897.573333pt;}
.yea{bottom:899.013333pt;}
.y142{bottom:899.653333pt;}
.y6b{bottom:905.573333pt;}
.y39{bottom:910.693333pt;}
.y9a{bottom:916.293333pt;}
.y141{bottom:918.373333pt;}
.y6a{bottom:924.293333pt;}
.y38{bottom:930.693333pt;}
.y5{bottom:932.613333pt;}
.y99{bottom:935.013333pt;}
.y140{bottom:937.093333pt;}
.y69{bottom:943.013333pt;}
.y37{bottom:950.693333pt;}
.y98{bottom:953.733333pt;}
.y13f{bottom:955.813333pt;}
.y4{bottom:961.253333pt;}
.y68{bottom:961.733333pt;}
.y36{bottom:970.693333pt;}
.y97{bottom:972.453333pt;}
.y67{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y35{bottom:990.693333pt;}
.y66{bottom:999.173333pt;}
.y34{bottom:1010.693333pt;}
.y65{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h1d{height:3.040000pt;}
.h1b{height:3.200000pt;}
.h22{height:3.232000pt;}
.h24{height:5.759867pt;}
.h1c{height:5.760000pt;}
.h23{height:5.919867pt;}
.h1a{height:5.920000pt;}
.h18{height:18.720000pt;}
.h19{height:18.752000pt;}
.hb{height:19.200000pt;}
.hc{height:19.232000pt;}
.he{height:19.360000pt;}
.hd{height:19.392000pt;}
.h17{height:20.672000pt;}
.h16{height:21.760000pt;}
.h21{height:27.284481pt;}
.h1f{height:31.914255pt;}
.h7{height:34.374375pt;}
.h13{height:34.592000pt;}
.h11{height:35.040000pt;}
.h10{height:35.386875pt;}
.h12{height:36.640000pt;}
.h14{height:39.200000pt;}
.ha{height:39.232000pt;}
.h20{height:39.684610pt;}
.hf{height:40.514375pt;}
.h8{height:40.566250pt;}
.h9{height:52.834688pt;}
.h15{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h1e{height:175.530438pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:44.160000pt;}
.w18{width:53.920000pt;}
.wf{width:63.232000pt;}
.w7{width:63.360000pt;}
.w6{width:63.392000pt;}
.w14{width:69.920000pt;}
.w15{width:76.672000pt;}
.w11{width:76.800000pt;}
.wa{width:83.360000pt;}
.wc{width:111.680000pt;}
.w13{width:128.032000pt;}
.wb{width:131.552000pt;}
.wd{width:131.712000pt;}
.w1a{width:134.426667pt;}
.w19{width:137.946667pt;}
.w1b{width:138.266667pt;}
.w16{width:146.586667pt;}
.w17{width:153.466667pt;}
.w3{width:159.706667pt;}
.w9{width:234.266667pt;}
.w8{width:234.466667pt;}
.w10{width:274.626667pt;}
.w4{width:300.226667pt;}
.w1c{width:326.670909pt;}
.we{width:351.426667pt;}
.w12{width:414.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:2.954844pt;}
.x9{left:6.880000pt;}
.x25{left:23.916402pt;}
.x15{left:42.880000pt;}
.x6{left:47.999988pt;}
.x35{left:52.479988pt;}
.x10{left:55.552000pt;}
.x26{left:60.742036pt;}
.x18{left:62.399988pt;}
.x7{left:67.199988pt;}
.xf{left:73.920000pt;}
.x12{left:75.200000pt;}
.xe{left:76.511988pt;}
.x27{left:79.224644pt;}
.x36{left:90.911988pt;}
.x28{left:97.624660pt;}
.x13{left:105.946667pt;}
.x11{left:107.546667pt;}
.x16{left:109.920000pt;}
.x29{left:116.051105pt;}
.x2a{left:134.452772pt;}
.x5{left:149.786655pt;}
.x2b{left:152.854439pt;}
.x1f{left:163.546667pt;}
.x8{left:166.746667pt;}
.x2c{left:171.338700pt;}
.x1b{left:189.626667pt;}
.x2d{left:208.166812pt;}
.x20{left:218.266667pt;}
.x2e{left:226.568479pt;}
.x23{left:240.746649pt;}
.x3{left:241.986655pt;}
.x2f{left:244.970146pt;}
.x30{left:263.454407pt;}
.x19{left:274.946667pt;}
.x31{left:281.880852pt;}
.x17{left:289.186667pt;}
.x32{left:300.282519pt;}
.x2{left:311.586655pt;}
.x1e{left:317.666667pt;}
.x33{left:318.684187pt;}
.xa{left:327.106667pt;}
.x21{left:357.026667pt;}
.x4{left:372.546655pt;}
.x1a{left:387.266667pt;}
.x14{left:407.613333pt;}
.x1{left:426.013322pt;}
.xb{left:435.933333pt;}
.x1d{left:464.253333pt;}
.x22{left:492.093333pt;}
.xc{left:499.933333pt;}
.x1c{left:541.053333pt;}
.xd{left:563.973333pt;}
.x34{left:567.493322pt;}
.x37{left:746.079988pt;}
}




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