
    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_0e91035ea51e01bbaf4a1dee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_4cbe672da693dbbc984818fc.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_199897f7e9caafb4bef57222.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_7965ca68b7794ae02803d301.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_c1c33204a3a3695b431f0628.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cba96ef18b6d5219a70e22b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_f9682a1f3e476a7a5d4f1070.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ae2aadd1e0b4315a3b30917e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_c41a93ab37aef8309a72c330.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003418;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_bb8af7c0fd9210aec46be209.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_330c1ba61a89e4dcd8a67cca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851074;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_c02213afee4cab411b249bda.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.088379;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_96222c2e066ede117a23479e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_117f78194565153e495d1d55.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.221590,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.221590,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.221590,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.223957,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.223957,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.223957,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.209302,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.209302,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.209302,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.209303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209303,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.211208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211208,0.000000,0.000000,0.250000,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);}
.m9{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:-119.520000px;}
.v1{vertical-align:-90.000000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.056000px;}
.ls1c{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.294000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.105120px;}
.ls23{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.175800px;}
.ls10{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.285120px;}
.ls9{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.369000px;}
.ls25{letter-spacing:0.504000px;}
.ls4{letter-spacing:1.308000px;}
.lsd{letter-spacing:53.429760px;}
.ls26{letter-spacing:64.002720px;}
.lse{letter-spacing:64.229760px;}
.ls13{letter-spacing:87.984000px;}
.ls24{letter-spacing:89.400000px;}
.lsc{letter-spacing:90.149760px;}
.ls11{letter-spacing:379.704000px;}
.ls6{letter-spacing:1178.952000px;}
.ls0{letter-spacing:2202.120000px;}
.ls1{letter-spacing:4267.673760px;}
.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;}
}
.ws17{word-spacing:-59.760000px;}
.ws0{word-spacing:-25.020000px;}
.wsa{word-spacing:-17.749560px;}
.wse{word-spacing:-16.632000px;}
.ws12{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.488000px;}
.ws15{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.200000px;}
.ws8{word-spacing:-16.128000px;}
.ws11{word-spacing:-16.056000px;}
.ws13{word-spacing:-15.984000px;}
.ws10{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.768000px;}
.wsf{word-spacing:-15.624000px;}
.ws16{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.480000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.276000px;}
.wsb{word-spacing:-12.186000px;}
.ws4{word-spacing:-12.024000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-15.852000px;}
._1b{margin-left:-13.308000px;}
._1a{margin-left:-11.796000px;}
._17{margin-left:-10.140000px;}
._19{margin-left:-8.628000px;}
._1d{margin-left:-7.548000px;}
._18{margin-left:-6.468000px;}
._2{margin-left:-5.214240px;}
._3{margin-left:-4.191840px;}
._1{margin-left:-3.169440px;}
._4{margin-left:-1.920960px;}
._0{width:1.530000px;}
._7{width:3.078960px;}
._5{width:4.756320px;}
._8{width:6.043680px;}
._16{width:7.416000px;}
._1e{width:8.472960px;}
._20{width:9.483120px;}
._14{width:10.800000px;}
._13{width:11.808000px;}
._1f{width:12.816000px;}
._10{width:13.903920px;}
._f{width:14.904000px;}
._21{width:17.598960px;}
._15{width:18.864000px;}
._b{width:19.872000px;}
._9{width:20.880000px;}
._a{width:22.008960px;}
._c{width:23.040000px;}
._e{width:24.192000px;}
._22{width:25.488000px;}
._23{width:26.598960px;}
._35{width:28.064880px;}
._34{width:29.376000px;}
._26{width:30.961920px;}
._25{width:32.400000px;}
._24{width:34.104000px;}
._12{width:35.640000px;}
._11{width:36.792000px;}
._2b{width:38.874000px;}
._2e{width:43.848000px;}
._2d{width:45.144000px;}
._38{width:49.680000px;}
._3b{width:51.336000px;}
._3a{width:52.776000px;}
._37{width:54.709920px;}
._36{width:56.088000px;}
._2a{width:78.048000px;}
._39{width:86.688000px;}
._30{width:91.512000px;}
._2f{width:92.592000px;}
._32{width:93.936960px;}
._31{width:94.968000px;}
._3c{width:120.672000px;}
._28{width:140.976000px;}
._27{width:151.200000px;}
._2c{width:250.128000px;}
._33{width:315.504000px;}
._29{width:579.468000px;}
._d{width:847.884000px;}
._6{width:1178.952000px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(104,104,103);}
.fc2{color:rgb(152,153,153);}
.fc1{color:rgb(129,130,129);}
.fc5{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:1.440000px;}
.y139{bottom:14.400000px;}
.y146{bottom:14.445000px;}
.y12d{bottom:14.580000px;}
.y134{bottom:14.625000px;}
.y12b{bottom:15.840000px;}
.y162{bottom:15.885000px;}
.y158{bottom:16.020000px;}
.y18a{bottom:34.020000px;}
.y3b{bottom:42.510000px;}
.y170{bottom:42.660000px;}
.y3d{bottom:44.100000px;}
.y36{bottom:44.136000px;}
.y15b{bottom:48.774000px;}
.y155{bottom:48.780000px;}
.y15d{bottom:48.810000px;}
.y161{bottom:48.825000px;}
.y157{bottom:48.960000px;}
.y35{bottom:61.560000px;}
.y189{bottom:66.960000px;}
.y3f{bottom:74.016000px;}
.y104{bottom:74.916000px;}
.y16f{bottom:75.600000px;}
.y154{bottom:81.720000px;}
.y186{bottom:81.765000px;}
.y188{bottom:99.930000px;}
.y34{bottom:102.636000px;}
.y16e{bottom:108.540000px;}
.y185{bottom:114.885000px;}
.y115{bottom:115.056000px;}
.y11f{bottom:117.756000px;}
.y62{bottom:120.276000px;}
.y33{bottom:120.456000px;}
.y3a{bottom:121.170000px;}
.y14b{bottom:124.416000px;}
.yd5{bottom:126.576000px;}
.y15a{bottom:126.756000px;}
.y37{bottom:128.550000px;}
.y61{bottom:141.156000px;}
.y16d{bottom:141.510000px;}
.yec{bottom:141.516000px;}
.y1a5{bottom:143.496000px;}
.y32{bottom:145.656000px;}
.y184{bottom:147.825000px;}
.y114{bottom:147.996000px;}
.y152{bottom:149.256000px;}
.y8e{bottom:150.150000px;}
.y11e{bottom:150.690000px;}
.yc0{bottom:153.570000px;}
.y14a{bottom:157.350000px;}
.y31{bottom:163.110000px;}
.yd4{bottom:168.510000px;}
.y60{bottom:170.310000px;}
.y149{bottom:175.350000px;}
.y1a4{bottom:176.430000px;}
.y30{bottom:180.570000px;}
.y183{bottom:180.765000px;}
.y113{bottom:180.930000px;}
.y1a6{bottom:182.190000px;}
.yeb{bottom:183.450000px;}
.yab{bottom:183.630000px;}
.y16a{bottom:183.990000px;}
.ybf{bottom:186.510000px;}
.y8d{bottom:192.090000px;}
.y2f{bottom:197.850000px;}
.y5f{bottom:199.650000px;}
.yd3{bottom:201.450000px;}
.y148{bottom:207.750000px;}
.y159{bottom:208.470000px;}
.y1a3{bottom:209.370000px;}
.y182{bottom:213.705000px;}
.y112{bottom:213.870000px;}
.y171{bottom:215.850000px;}
.yaa{bottom:216.570000px;}
.y2e{bottom:216.750000px;}
.yea{bottom:225.390000px;}
.ybe{bottom:228.450000px;}
.y5e{bottom:228.990000px;}
.y103{bottom:231.510000px;}
.y3e{bottom:231.705000px;}
.y8c{bottom:234.030000px;}
.yd2{bottom:234.570000px;}
.y2d{bottom:237.270000px;}
.y147{bottom:240.150000px;}
.y1a2{bottom:242.490000px;}
.y181{bottom:246.645000px;}
.y111{bottom:246.810000px;}
.ya9{bottom:249.510000px;}
.y2c{bottom:254.730000px;}
.y5d{bottom:258.330000px;}
.y102{bottom:264.450000px;}
.y169{bottom:265.710000px;}
.ye9{bottom:267.330000px;}
.yd1{bottom:267.510000px;}
.ybd{bottom:270.390000px;}
.y2b{bottom:272.010000px;}
.y145{bottom:272.550000px;}
.y1a1{bottom:275.475000px;}
.y8b{bottom:276.015000px;}
.y180{bottom:279.585000px;}
.y110{bottom:279.795000px;}
.ya8{bottom:282.495000px;}
.y5c{bottom:287.535000px;}
.y2a{bottom:289.470000px;}
.y156{bottom:290.055000px;}
.y101{bottom:297.615000px;}
.yd0{bottom:300.495000px;}
.y144{bottom:304.995000px;}
.y29{bottom:306.930000px;}
.y1a0{bottom:308.415000px;}
.ye8{bottom:309.315000px;}
.ybc{bottom:312.375000px;}
.y17f{bottom:312.525000px;}
.y10f{bottom:312.735000px;}
.ya7{bottom:315.615000px;}
.y5b{bottom:316.155000px;}
.y8a{bottom:317.955000px;}
.y3c{bottom:318.810000px;}
.y28{bottom:324.210000px;}
.y100{bottom:330.555000px;}
.ycf{bottom:333.435000px;}
.y143{bottom:337.395000px;}
.y19f{bottom:341.355000px;}
.y27{bottom:341.670000px;}
.y5a{bottom:342.615000px;}
.ybb{bottom:345.315000px;}
.y17e{bottom:345.495000px;}
.y10e{bottom:345.675000px;}
.y168{bottom:347.475000px;}
.ya6{bottom:348.555000px;}
.ye7{bottom:351.255000px;}
.y26{bottom:359.130000px;}
.y89{bottom:359.895000px;}
.yff{bottom:363.495000px;}
.yce{bottom:366.375000px;}
.y142{bottom:369.795000px;}
.y59{bottom:371.775000px;}
.y19e{bottom:374.295000px;}
.y25{bottom:376.455000px;}
.yba{bottom:378.255000px;}
.y17d{bottom:378.435000px;}
.y10d{bottom:378.615000px;}
.ya5{bottom:381.495000px;}
.ye6{bottom:393.195000px;}
.y24{bottom:393.915000px;}
.yfe{bottom:396.435000px;}
.ycd{bottom:399.315000px;}
.y58{bottom:400.395000px;}
.y88{bottom:401.835000px;}
.y19d{bottom:407.235000px;}
.y23{bottom:411.195000px;}
.y17c{bottom:411.555000px;}
.y10c{bottom:411.735000px;}
.y129{bottom:412.995000px;}
.ya4{bottom:414.435000px;}
.y141{bottom:419.295000px;}
.yb9{bottom:420.195000px;}
.y57{bottom:425.955000px;}
.y22{bottom:428.655000px;}
.y167{bottom:429.015000px;}
.yfd{bottom:429.375000px;}
.ycc{bottom:432.255000px;}
.ye5{bottom:435.135000px;}
.y19c{bottom:440.175000px;}
.y87{bottom:443.775000px;}
.y17b{bottom:444.495000px;}
.y10b{bottom:444.675000px;}
.y21{bottom:446.115000px;}
.ya3{bottom:447.375000px;}
.y56{bottom:451.515000px;}
.y140{bottom:452.235000px;}
.y153{bottom:453.495000px;}
.yb8{bottom:462.135000px;}
.yfc{bottom:462.315000px;}
.y20{bottom:463.395000px;}
.ycb{bottom:465.195000px;}
.y19b{bottom:473.115000px;}
.y86{bottom:476.895000px;}
.ye4{bottom:477.075000px;}
.y55{bottom:477.255000px;}
.y17a{bottom:477.435000px;}
.y10a{bottom:477.615000px;}
.ya2{bottom:480.315000px;}
.y1f{bottom:480.855000px;}
.y13f{bottom:485.175000px;}
.yfb{bottom:495.255000px;}
.yca{bottom:498.135000px;}
.y1e{bottom:498.315000px;}
.y54{bottom:503.715000px;}
.yb7{bottom:504.075000px;}
.y19a{bottom:506.055000px;}
.y85{bottom:509.835000px;}
.y179{bottom:510.375000px;}
.y109{bottom:510.555000px;}
.y166{bottom:510.735000px;}
.ya1{bottom:513.255000px;}
.y1d{bottom:515.595000px;}
.y13e{bottom:518.115000px;}
.ye3{bottom:519.195000px;}
.yfa{bottom:528.195000px;}
.yc9{bottom:531.075000px;}
.y1c{bottom:533.055000px;}
.y13d{bottom:536.115000px;}
.y199{bottom:539.175000px;}
.y84{bottom:542.775000px;}
.y178{bottom:543.315000px;}
.y108{bottom:543.495000px;}
.ya0{bottom:546.195000px;}
.y1b{bottom:551.955000px;}
.ye2{bottom:561.165000px;}
.y53{bottom:562.245000px;}
.yc8{bottom:564.225000px;}
.y13c{bottom:568.545000px;}
.y198{bottom:572.145000px;}
.y1a{bottom:572.475000px;}
.y83{bottom:575.745000px;}
.y177{bottom:576.255000px;}
.y107{bottom:576.465000px;}
.y9f{bottom:579.165000px;}
.yb6{bottom:588.165000px;}
.y19{bottom:589.755000px;}
.y52{bottom:591.585000px;}
.y165{bottom:592.485000px;}
.yf9{bottom:594.105000px;}
.yc7{bottom:597.165000px;}
.y72{bottom:598.785000px;}
.y13b{bottom:600.945000px;}
.ye1{bottom:603.105000px;}
.y197{bottom:605.085000px;}
.y18{bottom:608.655000px;}
.y82{bottom:608.685000px;}
.y176{bottom:609.195000px;}
.y106{bottom:609.405000px;}
.y150{bottom:610.665000px;}
.y38{bottom:611.895000px;}
.y9e{bottom:612.105000px;}
.y51{bottom:620.925000px;}
.yb5{bottom:621.105000px;}
.y71{bottom:626.325000px;}
.yf8{bottom:627.225000px;}
.y17{bottom:629.175000px;}
.yc6{bottom:630.105000px;}
.y13a{bottom:633.345000px;}
.y196{bottom:638.025000px;}
.y81{bottom:641.625000px;}
.y175{bottom:642.180000px;}
.y118{bottom:642.345000px;}
.y105{bottom:643.785000px;}
.ye0{bottom:645.045000px;}
.y9d{bottom:645.225000px;}
.y16{bottom:646.635000px;}
.y50{bottom:650.265000px;}
.y70{bottom:656.205000px;}
.yf7{bottom:660.165000px;}
.yb4{bottom:663.045000px;}
.y15{bottom:663.945000px;}
.y138{bottom:665.745000px;}
.y195{bottom:670.965000px;}
.yc5{bottom:672.045000px;}
.y164{bottom:674.205000px;}
.y80{bottom:674.565000px;}
.y174{bottom:675.120000px;}
.y117{bottom:675.285000px;}
.y9c{bottom:678.165000px;}
.y4f{bottom:679.425000px;}
.y14{bottom:681.405000px;}
.ydf{bottom:686.985000px;}
.yf6{bottom:693.105000px;}
.y137{bottom:698.145000px;}
.y13{bottom:698.865000px;}
.y194{bottom:703.905000px;}
.yb3{bottom:704.985000px;}
.y7f{bottom:707.505000px;}
.y173{bottom:708.060000px;}
.y11c{bottom:708.405000px;}
.y4e{bottom:708.765000px;}
.y116{bottom:709.665000px;}
.y9b{bottom:711.105000px;}
.yc4{bottom:713.985000px;}
.y12{bottom:716.145000px;}
.y6f{bottom:717.045000px;}
.yf5{bottom:726.045000px;}
.yde{bottom:728.925000px;}
.y11{bottom:733.605000px;}
.y193{bottom:736.845000px;}
.y4d{bottom:738.105000px;}
.y7e{bottom:740.445000px;}
.y172{bottom:741.180000px;}
.y11b{bottom:741.345000px;}
.y11d{bottom:742.605000px;}
.y9a{bottom:744.045000px;}
.yb2{bottom:746.925000px;}
.y10{bottom:750.885000px;}
.y163{bottom:755.745000px;}
.y6e{bottom:758.985000px;}
.y4c{bottom:765.825000px;}
.y136{bottom:766.005000px;}
.y192{bottom:769.785000px;}
.ydd{bottom:770.865000px;}
.yf{bottom:771.405000px;}
.y7d{bottom:773.565000px;}
.y11a{bottom:774.285000px;}
.y99{bottom:776.985000px;}
.yc3{bottom:779.865000px;}
.yb1{bottom:788.865000px;}
.y4b{bottom:790.125000px;}
.yf4{bottom:791.925000px;}
.y135{bottom:798.405000px;}
.y6d{bottom:800.925000px;}
.ye{bottom:801.105000px;}
.y191{bottom:802.725000px;}
.y7c{bottom:806.505000px;}
.y126{bottom:807.225000px;}
.y119{bottom:808.485000px;}
.y98{bottom:809.925000px;}
.ydc{bottom:812.805000px;}
.y4a{bottom:814.605000px;}
.yc2{bottom:821.805000px;}
.yf3{bottom:824.865000px;}
.yd{bottom:830.625000px;}
.yb0{bottom:830.805000px;}
.y6c{bottom:833.865000px;}
.y190{bottom:835.665000px;}
.y160{bottom:837.465000px;}
.y49{bottom:838.950000px;}
.y7b{bottom:839.490000px;}
.y125{bottom:840.210000px;}
.y127{bottom:841.470000px;}
.y97{bottom:842.910000px;}
.ydb{bottom:854.790000px;}
.yf2{bottom:857.850000px;}
.y48{bottom:863.250000px;}
.yc1{bottom:863.790000px;}
.y6b{bottom:866.850000px;}
.y18f{bottom:868.830000px;}
.y7a{bottom:872.430000px;}
.yaf{bottom:872.790000px;}
.y124{bottom:873.150000px;}
.y96{bottom:875.850000px;}
.y47{bottom:887.550000px;}
.yc{bottom:890.025000px;}
.yf1{bottom:890.790000px;}
.y133{bottom:895.650000px;}
.yda{bottom:896.910000px;}
.y6a{bottom:899.790000px;}
.y18e{bottom:903.030000px;}
.y79{bottom:905.370000px;}
.yae{bottom:905.910000px;}
.y123{bottom:906.090000px;}
.y95{bottom:908.790000px;}
.y46{bottom:912.030000px;}
.y15f{bottom:919.230000px;}
.yf0{bottom:923.910000px;}
.y132{bottom:928.050000px;}
.y69{bottom:932.910000px;}
.yb{bottom:935.610000px;}
.y45{bottom:936.330000px;}
.y78{bottom:938.310000px;}
.y18d{bottom:938.670000px;}
.yd9{bottom:938.850000px;}
.y122{bottom:939.030000px;}
.y128{bottom:940.470000px;}
.y94{bottom:941.910000px;}
.y16c{bottom:942.450000px;}
.yad{bottom:947.850000px;}
.yef{bottom:956.850000px;}
.y44{bottom:960.630000px;}
.y131{bottom:960.990000px;}
.y68{bottom:965.850000px;}
.ya{bottom:966.750000px;}
.y77{bottom:971.250000px;}
.y121{bottom:971.970000px;}
.y18c{bottom:973.050000px;}
.y93{bottom:974.850000px;}
.y16b{bottom:975.570000px;}
.yd8{bottom:980.790000px;}
.y43{bottom:985.110000px;}
.yac{bottom:989.790000px;}
.y130{bottom:993.390000px;}
.y9{bottom:997.170000px;}
.y67{bottom:998.790000px;}
.y15e{bottom:1000.770000px;}
.y76{bottom:1004.190000px;}
.y120{bottom:1004.910000px;}
.y18b{bottom:1006.170000px;}
.y151{bottom:1006.350000px;}
.y92{bottom:1007.790000px;}
.y42{bottom:1009.410000px;}
.yd7{bottom:1013.730000px;}
.yee{bottom:1022.730000px;}
.y12f{bottom:1025.790000px;}
.y187{bottom:1031.370000px;}
.y66{bottom:1031.730000px;}
.y41{bottom:1033.710000px;}
.y75{bottom:1037.130000px;}
.y14f{bottom:1038.030000px;}
.y8{bottom:1039.290000px;}
.y91{bottom:1040.730000px;}
.y40{bottom:1053.150000px;}
.yd6{bottom:1055.670000px;}
.y12e{bottom:1058.190000px;}
.y65{bottom:1064.670000px;}
.y7{bottom:1066.650000px;}
.y74{bottom:1070.070000px;}
.y14e{bottom:1070.970000px;}
.y90{bottom:1073.670000px;}
.y15c{bottom:1082.490000px;}
.yed{bottom:1088.610000px;}
.y12c{bottom:1090.590000px;}
.y6{bottom:1092.930000px;}
.y64{bottom:1097.610000px;}
.y73{bottom:1100.310000px;}
.y14d{bottom:1103.910000px;}
.y8f{bottom:1106.610000px;}
.y5{bottom:1116.150000px;}
.y12a{bottom:1123.020000px;}
.y14c{bottom:1138.140000px;}
.y63{bottom:1139.580000px;}
.y4{bottom:1143.690000px;}
.y3{bottom:1170.150000px;}
.y2{bottom:1196.610000px;}
.y1{bottom:1254.780000px;}
.h22{height:31.500000px;}
.h23{height:31.536000px;}
.h1d{height:31.680000px;}
.h1b{height:31.716000px;}
.h1f{height:32.220000px;}
.h1a{height:32.940000px;}
.h21{height:34.740000px;}
.h8{height:44.820000px;}
.h17{height:54.421875px;}
.h2c{height:59.378906px;}
.h9{height:59.439023px;}
.h1e{height:60.679688px;}
.h1c{height:60.960938px;}
.hd{height:61.189805px;}
.h2{height:61.423863px;}
.h20{height:62.648438px;}
.h11{height:63.180000px;}
.h25{height:65.880000px;}
.hb{height:65.884219px;}
.h27{height:65.916000px;}
.h26{height:66.060000px;}
.h3{height:67.500000px;}
.h4{height:71.613281px;}
.h16{height:73.722656px;}
.h18{height:74.953125px;}
.h2b{height:79.620469px;}
.h19{height:80.949375px;}
.h15{height:83.787539px;}
.h14{height:86.255508px;}
.h5{height:89.516602px;}
.h12{height:95.245664px;}
.h13{height:98.051133px;}
.h24{height:98.820000px;}
.h6{height:101.690859px;}
.h7{height:104.686172px;}
.h2a{height:117.036000px;}
.h28{height:158.610000px;}
.ha{height:168.870000px;}
.he{height:248.430000px;}
.hc{height:477.795000px;}
.h29{height:758.265000px;}
.h10{height:1263.000000px;}
.hf{height:1263.060000px;}
.h1{height:1335.750000px;}
.h0{height:1335.780000px;}
.w3{width:21.780000px;}
.w5{width:25.200000px;}
.w4{width:37.440000px;}
.w11{width:56.520000px;}
.w13{width:56.880000px;}
.w12{width:72.396000px;}
.w10{width:80.856000px;}
.w16{width:94.176000px;}
.w15{width:95.580000px;}
.wf{width:105.840000px;}
.w14{width:110.916000px;}
.wa{width:248.970000px;}
.wb{width:294.555000px;}
.wd{width:329.475000px;}
.we{width:398.595000px;}
.w9{width:543.885000px;}
.w17{width:678.390000px;}
.wc{width:728.430000px;}
.w8{width:892.439987px;}
.w6{width:892.440000px;}
.w7{width:892.500000px;}
.w2{width:2075.219969px;}
.w0{width:2075.220000px;}
.w1{width:2075.250000px;}
.x0{left:0.000000px;}
.x36{left:1.080000px;}
.x29{left:4.860000px;}
.x30{left:7.200000px;}
.x14{left:15.120000px;}
.x17{left:16.920000px;}
.x12{left:18.360000px;}
.x15{left:32.220000px;}
.x38{left:49.674000px;}
.x16{left:58.320000px;}
.x26{left:91.074000px;}
.x25{left:92.555987px;}
.x1c{left:106.415987px;}
.x28{left:108.570000px;}
.x3b{left:111.995987px;}
.x21{left:122.975987px;}
.x2c{left:130.674000px;}
.x39{left:133.595987px;}
.x23{left:139.355987px;}
.x1e{left:140.795987px;}
.x18{left:148.895987px;}
.x24{left:160.409987px;}
.x20{left:165.449987px;}
.x3c{left:176.249987px;}
.x22{left:182.009987px;}
.x2a{left:185.799000px;}
.x2b{left:187.419000px;}
.x3a{left:191.549987px;}
.x31{left:213.690000px;}
.x1f{left:247.889987px;}
.x2e{left:257.979000px;}
.x2f{left:278.139000px;}
.x32{left:295.275000px;}
.x1a{left:319.034987px;}
.x9{left:345.449969px;}
.x1d{left:353.234987px;}
.x27{left:356.475000px;}
.x1b{left:361.694987px;}
.x33{left:425.625000px;}
.x2d{left:436.965000px;}
.x34{left:483.225000px;}
.x19{left:537.224987px;}
.x35{left:594.870000px;}
.x37{left:691.350000px;}
.x13{left:1053.825000px;}
.x11{left:1060.845000px;}
.x1{left:1094.684969px;}
.xc{left:1417.064969px;}
.xa{left:1418.144969px;}
.x2{left:1429.844969px;}
.xd{left:1470.929969px;}
.xe{left:1475.069969px;}
.xf{left:1488.029969px;}
.x10{left:1492.169969px;}
.x3{left:1546.889969px;}
.x4{left:1555.169969px;}
.x5{left:1577.669969px;}
.x6{left:1585.949969px;}
.x7{left:1641.029969px;}
.x8{left:1658.489969px;}
.xb{left:1736.969969px;}
@media print{
.v2{vertical-align:-106.240000pt;}
.v1{vertical-align:-80.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.938667pt;}
.ls1c{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.261333pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.093440pt;}
.ls23{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.156267pt;}
.ls10{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.253440pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.328000pt;}
.ls25{letter-spacing:0.448000pt;}
.ls4{letter-spacing:1.162667pt;}
.lsd{letter-spacing:47.493120pt;}
.ls26{letter-spacing:56.891307pt;}
.lse{letter-spacing:57.093120pt;}
.ls13{letter-spacing:78.208000pt;}
.ls24{letter-spacing:79.466667pt;}
.lsc{letter-spacing:80.133120pt;}
.ls11{letter-spacing:337.514667pt;}
.ls6{letter-spacing:1047.957333pt;}
.ls0{letter-spacing:1957.440000pt;}
.ls1{letter-spacing:3793.487787pt;}
.ws17{word-spacing:-53.120000pt;}
.ws0{word-spacing:-22.240000pt;}
.wsa{word-spacing:-15.777387pt;}
.wse{word-spacing:-14.784000pt;}
.ws12{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws15{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.400000pt;}
.ws8{word-spacing:-14.336000pt;}
.ws11{word-spacing:-14.272000pt;}
.ws13{word-spacing:-14.208000pt;}
.ws10{word-spacing:-14.144000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws14{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.888000pt;}
.ws16{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.760000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.005120pt;}
.ws6{word-spacing:-10.912000pt;}
.wsb{word-spacing:-10.832000pt;}
.ws4{word-spacing:-10.688000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-14.090667pt;}
._1b{margin-left:-11.829333pt;}
._1a{margin-left:-10.485333pt;}
._17{margin-left:-9.013333pt;}
._19{margin-left:-7.669333pt;}
._1d{margin-left:-6.709333pt;}
._18{margin-left:-5.749333pt;}
._2{margin-left:-4.634880pt;}
._3{margin-left:-3.726080pt;}
._1{margin-left:-2.817280pt;}
._4{margin-left:-1.707520pt;}
._0{width:1.360000pt;}
._7{width:2.736853pt;}
._5{width:4.227840pt;}
._8{width:5.372160pt;}
._16{width:6.592000pt;}
._1e{width:7.531520pt;}
._20{width:8.429440pt;}
._14{width:9.600000pt;}
._13{width:10.496000pt;}
._1f{width:11.392000pt;}
._10{width:12.359040pt;}
._f{width:13.248000pt;}
._21{width:15.643520pt;}
._15{width:16.768000pt;}
._b{width:17.664000pt;}
._9{width:18.560000pt;}
._a{width:19.563520pt;}
._c{width:20.480000pt;}
._e{width:21.504000pt;}
._22{width:22.656000pt;}
._23{width:23.643520pt;}
._35{width:24.946560pt;}
._34{width:26.112000pt;}
._26{width:27.521707pt;}
._25{width:28.800000pt;}
._24{width:30.314667pt;}
._12{width:31.680000pt;}
._11{width:32.704000pt;}
._2b{width:34.554667pt;}
._2e{width:38.976000pt;}
._2d{width:40.128000pt;}
._38{width:44.160000pt;}
._3b{width:45.632000pt;}
._3a{width:46.912000pt;}
._37{width:48.631040pt;}
._36{width:49.856000pt;}
._2a{width:69.376000pt;}
._39{width:77.056000pt;}
._30{width:81.344000pt;}
._2f{width:82.304000pt;}
._32{width:83.499520pt;}
._31{width:84.416000pt;}
._3c{width:107.264000pt;}
._28{width:125.312000pt;}
._27{width:134.400000pt;}
._2c{width:222.336000pt;}
._33{width:280.448000pt;}
._29{width:515.082667pt;}
._d{width:753.674667pt;}
._6{width:1047.957333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:1.280000pt;}
.y139{bottom:12.800000pt;}
.y146{bottom:12.840000pt;}
.y12d{bottom:12.960000pt;}
.y134{bottom:13.000000pt;}
.y12b{bottom:14.080000pt;}
.y162{bottom:14.120000pt;}
.y158{bottom:14.240000pt;}
.y18a{bottom:30.240000pt;}
.y3b{bottom:37.786667pt;}
.y170{bottom:37.920000pt;}
.y3d{bottom:39.200000pt;}
.y36{bottom:39.232000pt;}
.y15b{bottom:43.354667pt;}
.y155{bottom:43.360000pt;}
.y15d{bottom:43.386667pt;}
.y161{bottom:43.400000pt;}
.y157{bottom:43.520000pt;}
.y35{bottom:54.720000pt;}
.y189{bottom:59.520000pt;}
.y3f{bottom:65.792000pt;}
.y104{bottom:66.592000pt;}
.y16f{bottom:67.200000pt;}
.y154{bottom:72.640000pt;}
.y186{bottom:72.680000pt;}
.y188{bottom:88.826667pt;}
.y34{bottom:91.232000pt;}
.y16e{bottom:96.480000pt;}
.y185{bottom:102.120000pt;}
.y115{bottom:102.272000pt;}
.y11f{bottom:104.672000pt;}
.y62{bottom:106.912000pt;}
.y33{bottom:107.072000pt;}
.y3a{bottom:107.706667pt;}
.y14b{bottom:110.592000pt;}
.yd5{bottom:112.512000pt;}
.y15a{bottom:112.672000pt;}
.y37{bottom:114.266667pt;}
.y61{bottom:125.472000pt;}
.y16d{bottom:125.786667pt;}
.yec{bottom:125.792000pt;}
.y1a5{bottom:127.552000pt;}
.y32{bottom:129.472000pt;}
.y184{bottom:131.400000pt;}
.y114{bottom:131.552000pt;}
.y152{bottom:132.672000pt;}
.y8e{bottom:133.466667pt;}
.y11e{bottom:133.946667pt;}
.yc0{bottom:136.506667pt;}
.y14a{bottom:139.866667pt;}
.y31{bottom:144.986667pt;}
.yd4{bottom:149.786667pt;}
.y60{bottom:151.386667pt;}
.y149{bottom:155.866667pt;}
.y1a4{bottom:156.826667pt;}
.y30{bottom:160.506667pt;}
.y183{bottom:160.680000pt;}
.y113{bottom:160.826667pt;}
.y1a6{bottom:161.946667pt;}
.yeb{bottom:163.066667pt;}
.yab{bottom:163.226667pt;}
.y16a{bottom:163.546667pt;}
.ybf{bottom:165.786667pt;}
.y8d{bottom:170.746667pt;}
.y2f{bottom:175.866667pt;}
.y5f{bottom:177.466667pt;}
.yd3{bottom:179.066667pt;}
.y148{bottom:184.666667pt;}
.y159{bottom:185.306667pt;}
.y1a3{bottom:186.106667pt;}
.y182{bottom:189.960000pt;}
.y112{bottom:190.106667pt;}
.y171{bottom:191.866667pt;}
.yaa{bottom:192.506667pt;}
.y2e{bottom:192.666667pt;}
.yea{bottom:200.346667pt;}
.ybe{bottom:203.066667pt;}
.y5e{bottom:203.546667pt;}
.y103{bottom:205.786667pt;}
.y3e{bottom:205.960000pt;}
.y8c{bottom:208.026667pt;}
.yd2{bottom:208.506667pt;}
.y2d{bottom:210.906667pt;}
.y147{bottom:213.466667pt;}
.y1a2{bottom:215.546667pt;}
.y181{bottom:219.240000pt;}
.y111{bottom:219.386667pt;}
.ya9{bottom:221.786667pt;}
.y2c{bottom:226.426667pt;}
.y5d{bottom:229.626667pt;}
.y102{bottom:235.066667pt;}
.y169{bottom:236.186667pt;}
.ye9{bottom:237.626667pt;}
.yd1{bottom:237.786667pt;}
.ybd{bottom:240.346667pt;}
.y2b{bottom:241.786667pt;}
.y145{bottom:242.266667pt;}
.y1a1{bottom:244.866667pt;}
.y8b{bottom:245.346667pt;}
.y180{bottom:248.520000pt;}
.y110{bottom:248.706667pt;}
.ya8{bottom:251.106667pt;}
.y5c{bottom:255.586667pt;}
.y2a{bottom:257.306667pt;}
.y156{bottom:257.826667pt;}
.y101{bottom:264.546667pt;}
.yd0{bottom:267.106667pt;}
.y144{bottom:271.106667pt;}
.y29{bottom:272.826667pt;}
.y1a0{bottom:274.146667pt;}
.ye8{bottom:274.946667pt;}
.ybc{bottom:277.666667pt;}
.y17f{bottom:277.800000pt;}
.y10f{bottom:277.986667pt;}
.ya7{bottom:280.546667pt;}
.y5b{bottom:281.026667pt;}
.y8a{bottom:282.626667pt;}
.y3c{bottom:283.386667pt;}
.y28{bottom:288.186667pt;}
.y100{bottom:293.826667pt;}
.ycf{bottom:296.386667pt;}
.y143{bottom:299.906667pt;}
.y19f{bottom:303.426667pt;}
.y27{bottom:303.706667pt;}
.y5a{bottom:304.546667pt;}
.ybb{bottom:306.946667pt;}
.y17e{bottom:307.106667pt;}
.y10e{bottom:307.266667pt;}
.y168{bottom:308.866667pt;}
.ya6{bottom:309.826667pt;}
.ye7{bottom:312.226667pt;}
.y26{bottom:319.226667pt;}
.y89{bottom:319.906667pt;}
.yff{bottom:323.106667pt;}
.yce{bottom:325.666667pt;}
.y142{bottom:328.706667pt;}
.y59{bottom:330.466667pt;}
.y19e{bottom:332.706667pt;}
.y25{bottom:334.626667pt;}
.yba{bottom:336.226667pt;}
.y17d{bottom:336.386667pt;}
.y10d{bottom:336.546667pt;}
.ya5{bottom:339.106667pt;}
.ye6{bottom:349.506667pt;}
.y24{bottom:350.146667pt;}
.yfe{bottom:352.386667pt;}
.ycd{bottom:354.946667pt;}
.y58{bottom:355.906667pt;}
.y88{bottom:357.186667pt;}
.y19d{bottom:361.986667pt;}
.y23{bottom:365.506667pt;}
.y17c{bottom:365.826667pt;}
.y10c{bottom:365.986667pt;}
.y129{bottom:367.106667pt;}
.ya4{bottom:368.386667pt;}
.y141{bottom:372.706667pt;}
.yb9{bottom:373.506667pt;}
.y57{bottom:378.626667pt;}
.y22{bottom:381.026667pt;}
.y167{bottom:381.346667pt;}
.yfd{bottom:381.666667pt;}
.ycc{bottom:384.226667pt;}
.ye5{bottom:386.786667pt;}
.y19c{bottom:391.266667pt;}
.y87{bottom:394.466667pt;}
.y17b{bottom:395.106667pt;}
.y10b{bottom:395.266667pt;}
.y21{bottom:396.546667pt;}
.ya3{bottom:397.666667pt;}
.y56{bottom:401.346667pt;}
.y140{bottom:401.986667pt;}
.y153{bottom:403.106667pt;}
.yb8{bottom:410.786667pt;}
.yfc{bottom:410.946667pt;}
.y20{bottom:411.906667pt;}
.ycb{bottom:413.506667pt;}
.y19b{bottom:420.546667pt;}
.y86{bottom:423.906667pt;}
.ye4{bottom:424.066667pt;}
.y55{bottom:424.226667pt;}
.y17a{bottom:424.386667pt;}
.y10a{bottom:424.546667pt;}
.ya2{bottom:426.946667pt;}
.y1f{bottom:427.426667pt;}
.y13f{bottom:431.266667pt;}
.yfb{bottom:440.226667pt;}
.yca{bottom:442.786667pt;}
.y1e{bottom:442.946667pt;}
.y54{bottom:447.746667pt;}
.yb7{bottom:448.066667pt;}
.y19a{bottom:449.826667pt;}
.y85{bottom:453.186667pt;}
.y179{bottom:453.666667pt;}
.y109{bottom:453.826667pt;}
.y166{bottom:453.986667pt;}
.ya1{bottom:456.226667pt;}
.y1d{bottom:458.306667pt;}
.y13e{bottom:460.546667pt;}
.ye3{bottom:461.506667pt;}
.yfa{bottom:469.506667pt;}
.yc9{bottom:472.066667pt;}
.y1c{bottom:473.826667pt;}
.y13d{bottom:476.546667pt;}
.y199{bottom:479.266667pt;}
.y84{bottom:482.466667pt;}
.y178{bottom:482.946667pt;}
.y108{bottom:483.106667pt;}
.ya0{bottom:485.506667pt;}
.y1b{bottom:490.626667pt;}
.ye2{bottom:498.813333pt;}
.y53{bottom:499.773333pt;}
.yc8{bottom:501.533333pt;}
.y13c{bottom:505.373333pt;}
.y198{bottom:508.573333pt;}
.y1a{bottom:508.866667pt;}
.y83{bottom:511.773333pt;}
.y177{bottom:512.226667pt;}
.y107{bottom:512.413333pt;}
.y9f{bottom:514.813333pt;}
.yb6{bottom:522.813333pt;}
.y19{bottom:524.226667pt;}
.y52{bottom:525.853333pt;}
.y165{bottom:526.653333pt;}
.yf9{bottom:528.093333pt;}
.yc7{bottom:530.813333pt;}
.y72{bottom:532.253333pt;}
.y13b{bottom:534.173333pt;}
.ye1{bottom:536.093333pt;}
.y197{bottom:537.853333pt;}
.y18{bottom:541.026667pt;}
.y82{bottom:541.053333pt;}
.y176{bottom:541.506667pt;}
.y106{bottom:541.693333pt;}
.y150{bottom:542.813333pt;}
.y38{bottom:543.906667pt;}
.y9e{bottom:544.093333pt;}
.y51{bottom:551.933333pt;}
.yb5{bottom:552.093333pt;}
.y71{bottom:556.733333pt;}
.yf8{bottom:557.533333pt;}
.y17{bottom:559.266667pt;}
.yc6{bottom:560.093333pt;}
.y13a{bottom:562.973333pt;}
.y196{bottom:567.133333pt;}
.y81{bottom:570.333333pt;}
.y175{bottom:570.826667pt;}
.y118{bottom:570.973333pt;}
.y105{bottom:572.253333pt;}
.ye0{bottom:573.373333pt;}
.y9d{bottom:573.533333pt;}
.y16{bottom:574.786667pt;}
.y50{bottom:578.013333pt;}
.y70{bottom:583.293333pt;}
.yf7{bottom:586.813333pt;}
.yb4{bottom:589.373333pt;}
.y15{bottom:590.173333pt;}
.y138{bottom:591.773333pt;}
.y195{bottom:596.413333pt;}
.yc5{bottom:597.373333pt;}
.y164{bottom:599.293333pt;}
.y80{bottom:599.613333pt;}
.y174{bottom:600.106667pt;}
.y117{bottom:600.253333pt;}
.y9c{bottom:602.813333pt;}
.y4f{bottom:603.933333pt;}
.y14{bottom:605.693333pt;}
.ydf{bottom:610.653333pt;}
.yf6{bottom:616.093333pt;}
.y137{bottom:620.573333pt;}
.y13{bottom:621.213333pt;}
.y194{bottom:625.693333pt;}
.yb3{bottom:626.653333pt;}
.y7f{bottom:628.893333pt;}
.y173{bottom:629.386667pt;}
.y11c{bottom:629.693333pt;}
.y4e{bottom:630.013333pt;}
.y116{bottom:630.813333pt;}
.y9b{bottom:632.093333pt;}
.yc4{bottom:634.653333pt;}
.y12{bottom:636.573333pt;}
.y6f{bottom:637.373333pt;}
.yf5{bottom:645.373333pt;}
.yde{bottom:647.933333pt;}
.y11{bottom:652.093333pt;}
.y193{bottom:654.973333pt;}
.y4d{bottom:656.093333pt;}
.y7e{bottom:658.173333pt;}
.y172{bottom:658.826667pt;}
.y11b{bottom:658.973333pt;}
.y11d{bottom:660.093333pt;}
.y9a{bottom:661.373333pt;}
.yb2{bottom:663.933333pt;}
.y10{bottom:667.453333pt;}
.y163{bottom:671.773333pt;}
.y6e{bottom:674.653333pt;}
.y4c{bottom:680.733333pt;}
.y136{bottom:680.893333pt;}
.y192{bottom:684.253333pt;}
.ydd{bottom:685.213333pt;}
.yf{bottom:685.693333pt;}
.y7d{bottom:687.613333pt;}
.y11a{bottom:688.253333pt;}
.y99{bottom:690.653333pt;}
.yc3{bottom:693.213333pt;}
.yb1{bottom:701.213333pt;}
.y4b{bottom:702.333333pt;}
.yf4{bottom:703.933333pt;}
.y135{bottom:709.693333pt;}
.y6d{bottom:711.933333pt;}
.ye{bottom:712.093333pt;}
.y191{bottom:713.533333pt;}
.y7c{bottom:716.893333pt;}
.y126{bottom:717.533333pt;}
.y119{bottom:718.653333pt;}
.y98{bottom:719.933333pt;}
.ydc{bottom:722.493333pt;}
.y4a{bottom:724.093333pt;}
.yc2{bottom:730.493333pt;}
.yf3{bottom:733.213333pt;}
.yd{bottom:738.333333pt;}
.yb0{bottom:738.493333pt;}
.y6c{bottom:741.213333pt;}
.y190{bottom:742.813333pt;}
.y160{bottom:744.413333pt;}
.y49{bottom:745.733333pt;}
.y7b{bottom:746.213333pt;}
.y125{bottom:746.853333pt;}
.y127{bottom:747.973333pt;}
.y97{bottom:749.253333pt;}
.ydb{bottom:759.813333pt;}
.yf2{bottom:762.533333pt;}
.y48{bottom:767.333333pt;}
.yc1{bottom:767.813333pt;}
.y6b{bottom:770.533333pt;}
.y18f{bottom:772.293333pt;}
.y7a{bottom:775.493333pt;}
.yaf{bottom:775.813333pt;}
.y124{bottom:776.133333pt;}
.y96{bottom:778.533333pt;}
.y47{bottom:788.933333pt;}
.yc{bottom:791.133333pt;}
.yf1{bottom:791.813333pt;}
.y133{bottom:796.133333pt;}
.yda{bottom:797.253333pt;}
.y6a{bottom:799.813333pt;}
.y18e{bottom:802.693333pt;}
.y79{bottom:804.773333pt;}
.yae{bottom:805.253333pt;}
.y123{bottom:805.413333pt;}
.y95{bottom:807.813333pt;}
.y46{bottom:810.693333pt;}
.y15f{bottom:817.093333pt;}
.yf0{bottom:821.253333pt;}
.y132{bottom:824.933333pt;}
.y69{bottom:829.253333pt;}
.yb{bottom:831.653333pt;}
.y45{bottom:832.293333pt;}
.y78{bottom:834.053333pt;}
.y18d{bottom:834.373333pt;}
.yd9{bottom:834.533333pt;}
.y122{bottom:834.693333pt;}
.y128{bottom:835.973333pt;}
.y94{bottom:837.253333pt;}
.y16c{bottom:837.733333pt;}
.yad{bottom:842.533333pt;}
.yef{bottom:850.533333pt;}
.y44{bottom:853.893333pt;}
.y131{bottom:854.213333pt;}
.y68{bottom:858.533333pt;}
.ya{bottom:859.333333pt;}
.y77{bottom:863.333333pt;}
.y121{bottom:863.973333pt;}
.y18c{bottom:864.933333pt;}
.y93{bottom:866.533333pt;}
.y16b{bottom:867.173333pt;}
.yd8{bottom:871.813333pt;}
.y43{bottom:875.653333pt;}
.yac{bottom:879.813333pt;}
.y130{bottom:883.013333pt;}
.y9{bottom:886.373333pt;}
.y67{bottom:887.813333pt;}
.y15e{bottom:889.573333pt;}
.y76{bottom:892.613333pt;}
.y120{bottom:893.253333pt;}
.y18b{bottom:894.373333pt;}
.y151{bottom:894.533333pt;}
.y92{bottom:895.813333pt;}
.y42{bottom:897.253333pt;}
.yd7{bottom:901.093333pt;}
.yee{bottom:909.093333pt;}
.y12f{bottom:911.813333pt;}
.y187{bottom:916.773333pt;}
.y66{bottom:917.093333pt;}
.y41{bottom:918.853333pt;}
.y75{bottom:921.893333pt;}
.y14f{bottom:922.693333pt;}
.y8{bottom:923.813333pt;}
.y91{bottom:925.093333pt;}
.y40{bottom:936.133333pt;}
.yd6{bottom:938.373333pt;}
.y12e{bottom:940.613333pt;}
.y65{bottom:946.373333pt;}
.y7{bottom:948.133333pt;}
.y74{bottom:951.173333pt;}
.y14e{bottom:951.973333pt;}
.y90{bottom:954.373333pt;}
.y15c{bottom:962.213333pt;}
.yed{bottom:967.653333pt;}
.y12c{bottom:969.413333pt;}
.y6{bottom:971.493333pt;}
.y64{bottom:975.653333pt;}
.y73{bottom:978.053333pt;}
.y14d{bottom:981.253333pt;}
.y8f{bottom:983.653333pt;}
.y5{bottom:992.133333pt;}
.y12a{bottom:998.240000pt;}
.y14c{bottom:1011.680000pt;}
.y63{bottom:1012.960000pt;}
.y4{bottom:1016.613333pt;}
.y3{bottom:1040.133333pt;}
.y2{bottom:1063.653333pt;}
.y1{bottom:1115.360000pt;}
.h22{height:28.000000pt;}
.h23{height:28.032000pt;}
.h1d{height:28.160000pt;}
.h1b{height:28.192000pt;}
.h1f{height:28.640000pt;}
.h1a{height:29.280000pt;}
.h21{height:30.880000pt;}
.h8{height:39.840000pt;}
.h17{height:48.375000pt;}
.h2c{height:52.781250pt;}
.h9{height:52.834688pt;}
.h1e{height:53.937500pt;}
.h1c{height:54.187500pt;}
.hd{height:54.390938pt;}
.h2{height:54.598989pt;}
.h20{height:55.687500pt;}
.h11{height:56.160000pt;}
.h25{height:58.560000pt;}
.hb{height:58.563750pt;}
.h27{height:58.592000pt;}
.h26{height:58.720000pt;}
.h3{height:60.000000pt;}
.h4{height:63.656250pt;}
.h16{height:65.531250pt;}
.h18{height:66.625000pt;}
.h2b{height:70.773750pt;}
.h19{height:71.955000pt;}
.h15{height:74.477812pt;}
.h14{height:76.671562pt;}
.h5{height:79.570312pt;}
.h12{height:84.662813pt;}
.h13{height:87.156562pt;}
.h24{height:87.840000pt;}
.h6{height:90.391875pt;}
.h7{height:93.054375pt;}
.h2a{height:104.032000pt;}
.h28{height:140.986667pt;}
.ha{height:150.106667pt;}
.he{height:220.826667pt;}
.hc{height:424.706667pt;}
.h29{height:674.013333pt;}
.h10{height:1122.666667pt;}
.hf{height:1122.720000pt;}
.h1{height:1187.333333pt;}
.h0{height:1187.360000pt;}
.w3{width:19.360000pt;}
.w5{width:22.400000pt;}
.w4{width:33.280000pt;}
.w11{width:50.240000pt;}
.w13{width:50.560000pt;}
.w12{width:64.352000pt;}
.w10{width:71.872000pt;}
.w16{width:83.712000pt;}
.w15{width:84.960000pt;}
.wf{width:94.080000pt;}
.w14{width:98.592000pt;}
.wa{width:221.306667pt;}
.wb{width:261.826667pt;}
.wd{width:292.866667pt;}
.we{width:354.306667pt;}
.w9{width:483.453333pt;}
.w17{width:603.013333pt;}
.wc{width:647.493333pt;}
.w8{width:793.279988pt;}
.w6{width:793.280000pt;}
.w7{width:793.333333pt;}
.w2{width:1844.639973pt;}
.w0{width:1844.640000pt;}
.w1{width:1844.666667pt;}
.x0{left:0.000000pt;}
.x36{left:0.960000pt;}
.x29{left:4.320000pt;}
.x30{left:6.400000pt;}
.x14{left:13.440000pt;}
.x17{left:15.040000pt;}
.x12{left:16.320000pt;}
.x15{left:28.640000pt;}
.x38{left:44.154667pt;}
.x16{left:51.840000pt;}
.x26{left:80.954667pt;}
.x25{left:82.271988pt;}
.x1c{left:94.591988pt;}
.x28{left:96.506667pt;}
.x3b{left:99.551988pt;}
.x21{left:109.311988pt;}
.x2c{left:116.154667pt;}
.x39{left:118.751988pt;}
.x23{left:123.871988pt;}
.x1e{left:125.151988pt;}
.x18{left:132.351988pt;}
.x24{left:142.586655pt;}
.x20{left:147.066655pt;}
.x3c{left:156.666655pt;}
.x22{left:161.786655pt;}
.x2a{left:165.154667pt;}
.x2b{left:166.594667pt;}
.x3a{left:170.266655pt;}
.x31{left:189.946667pt;}
.x1f{left:220.346655pt;}
.x2e{left:229.314667pt;}
.x2f{left:247.234667pt;}
.x32{left:262.466667pt;}
.x1a{left:283.586655pt;}
.x9{left:307.066639pt;}
.x1d{left:313.986655pt;}
.x27{left:316.866667pt;}
.x1b{left:321.506655pt;}
.x33{left:378.333333pt;}
.x2d{left:388.413333pt;}
.x34{left:429.533333pt;}
.x19{left:477.533322pt;}
.x35{left:528.773333pt;}
.x37{left:614.533333pt;}
.x13{left:936.733333pt;}
.x11{left:942.973333pt;}
.x1{left:973.053306pt;}
.xc{left:1259.613306pt;}
.xa{left:1260.573306pt;}
.x2{left:1270.973306pt;}
.xd{left:1307.493306pt;}
.xe{left:1311.173306pt;}
.xf{left:1322.693306pt;}
.x10{left:1326.373306pt;}
.x3{left:1375.013306pt;}
.x4{left:1382.373306pt;}
.x5{left:1402.373306pt;}
.x6{left:1409.733306pt;}
.x7{left:1458.693306pt;}
.x8{left:1474.213306pt;}
.xb{left:1543.973306pt;}
}




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