
    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_6643b8c9d1d2bc9d8f8f20a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_be7b5c41074effe1981ab194.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014000;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_e50efa4c5a53c3eff5fa1c51.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024000;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_57e44bf7b1e1030de177f666.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.127000;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_83ba5181faad8540bb0318ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125000;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_27de6bf22c60840d79b3e368.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.830000;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_01cd60c8a7ca01a26767ca3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_2c6d99b827dad1c3e1aa813c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.737000;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_987c16d7834150950a6f56bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.127000;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_20feeb792d472ae7e509d670.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125000;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_db710873cee80ee415d76877.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.127000;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_9235752077d9dad57acaff82.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734000;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_6899f1dbea3c6c93c01ec44b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983000;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_208923acd277e58fe0f9718f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.024000;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_7ce4f65e8eaa5907b14de370.woff2')format("woff");}.fff{font-family:fff;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_56048b44b8a23f09f507282d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.963400px;}
.v3{vertical-align:19.811400px;}
.v4{vertical-align:25.740000px;}
.v1{vertical-align:46.946400px;}
.ls13{letter-spacing:-2.376000px;}
.ls19{letter-spacing:-1.800000px;}
.ls14{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.313200px;}
.ls10{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.278400px;}
.ls2{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.174000px;}
.lsb{letter-spacing:-0.096000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.960000px;}
.lsc{letter-spacing:2.496000px;}
.lsa{letter-spacing:4.620000px;}
.ls12{letter-spacing:6.000000px;}
.ls16{letter-spacing:6.120000px;}
.ls3{letter-spacing:10.140000px;}
.ls6{letter-spacing:42.240000px;}
.ls4{letter-spacing:67.344000px;}
.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:-35.820000px;}
.ws0{word-spacing:-12.000000px;}
.ws1c{word-spacing:-11.700000px;}
.ws1{word-spacing:-11.040000px;}
.ws1a{word-spacing:-10.740000px;}
.ws9{word-spacing:-10.440000px;}
.wsa{word-spacing:-10.224000px;}
.ws7{word-spacing:-9.600000px;}
.wsc{word-spacing:-9.360000px;}
.ws6{word-spacing:-8.592000px;}
.wse{word-spacing:-8.352000px;}
.ws2{word-spacing:-0.060000px;}
.ws10{word-spacing:-0.048000px;}
.ws5{word-spacing:-0.034800px;}
.ws14{word-spacing:-0.031320px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.139200px;}
.ws12{word-spacing:0.243600px;}
.ws20{word-spacing:0.432000px;}
.wsd{word-spacing:34.050600px;}
.ws13{word-spacing:35.562600px;}
.ws16{word-spacing:37.938600px;}
.wsf{word-spacing:40.314600px;}
.ws11{word-spacing:40.854600px;}
.ws1f{word-spacing:46.578600px;}
.ws18{word-spacing:60.834600px;}
.ws1d{word-spacing:62.346600px;}
.ws1e{word-spacing:64.722600px;}
.ws19{word-spacing:67.098600px;}
.ws1b{word-spacing:67.638600px;}
.ws8{word-spacing:79.086600px;}
.wsb{word-spacing:81.462600px;}
.ws4{word-spacing:84.378600px;}
._f{margin-left:-77.184000px;}
._d{margin-left:-12.000000px;}
._18{margin-left:-9.192000px;}
._17{margin-left:-7.141200px;}
._14{margin-left:-5.533200px;}
._12{margin-left:-4.320000px;}
._e{margin-left:-3.240000px;}
._7{margin-left:-2.160000px;}
._6{margin-left:-1.080000px;}
._1{width:1.200000px;}
._0{width:2.220000px;}
._3{width:3.960000px;}
._5{width:5.760000px;}
._4{width:6.900000px;}
._2{width:8.700000px;}
._8{width:10.050000px;}
._b{width:11.280000px;}
._10{width:12.540000px;}
._c{width:13.980000px;}
._11{width:15.720000px;}
._9{width:16.950000px;}
._15{width:18.930000px;}
._19{width:20.790000px;}
._16{width:22.512000px;}
._13{width:42.240000px;}
._a{width:67.104000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.320000px;}
.fs7{font-size:34.800000px;}
.fs3{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:45.240000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:78.000000px;}
.fsb{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:37.722150px;}
.y1{bottom:37.987050px;}
.ye{bottom:120.457650px;}
.y184{bottom:120.464100px;}
.ycd{bottom:120.466500px;}
.y1d9{bottom:120.469650px;}
.y1ed{bottom:120.469800px;}
.y197{bottom:120.475350px;}
.y1f2{bottom:120.475800px;}
.yfa{bottom:120.481350px;}
.y7a{bottom:120.481650px;}
.y1ce{bottom:120.481800px;}
.y187{bottom:120.487350px;}
.yf3{bottom:120.487800px;}
.y13b{bottom:120.499800px;}
.y219{bottom:120.500100px;}
.y37{bottom:120.505800px;}
.y92{bottom:120.511800px;}
.y57{bottom:120.517800px;}
.y168{bottom:120.529800px;}
.yc9{bottom:120.547650px;}
.y11c{bottom:120.553950px;}
.y183{bottom:134.708100px;}
.y1f1{bottom:134.719800px;}
.yf9{bottom:134.725350px;}
.y79{bottom:134.725650px;}
.y1ec{bottom:134.725800px;}
.y186{bottom:134.731350px;}
.yf2{bottom:134.731800px;}
.y1cd{bottom:134.737800px;}
.y13a{bottom:134.743800px;}
.y36{bottom:134.749800px;}
.y91{bottom:134.755800px;}
.y56{bottom:134.761800px;}
.y167{bottom:134.773800px;}
.yc8{bottom:134.791650px;}
.y11b{bottom:134.797950px;}
.y16f{bottom:141.079350px;}
.yd{bottom:141.082650px;}
.ycc{bottom:141.091500px;}
.y20d{bottom:141.098700px;}
.y218{bottom:141.116100px;}
.y5f{bottom:147.486900px;}
.y182{bottom:148.964100px;}
.y185{bottom:148.975350px;}
.yf1{bottom:148.975800px;}
.y78{bottom:148.981650px;}
.y1cc{bottom:148.981800px;}
.y139{bottom:148.987800px;}
.y124{bottom:148.993800px;}
.y90{bottom:148.999800px;}
.y35{bottom:149.005800px;}
.y166{bottom:149.029800px;}
.yc7{bottom:149.035650px;}
.y11a{bottom:149.041950px;}
.y16e{bottom:156.082350px;}
.yc{bottom:161.707650px;}
.y1ae{bottom:161.713500px;}
.ycb{bottom:161.716500px;}
.y5e{bottom:162.489900px;}
.y1f0{bottom:163.219800px;}
.y181{bottom:163.220100px;}
.y77{bottom:163.225650px;}
.y1cb{bottom:163.225800px;}
.yf0{bottom:163.231800px;}
.y14e{bottom:163.243800px;}
.y34{bottom:163.249800px;}
.y8f{bottom:163.255800px;}
.y165{bottom:163.273800px;}
.yc6{bottom:163.279650px;}
.y119{bottom:163.285950px;}
.y16d{bottom:171.085350px;}
.yef{bottom:177.475800px;}
.y180{bottom:177.476100px;}
.y1ca{bottom:177.481800px;}
.y14d{bottom:177.487800px;}
.y5d{bottom:177.492900px;}
.y33{bottom:177.493800px;}
.y8e{bottom:177.499800px;}
.y164{bottom:177.517800px;}
.yc5{bottom:177.535650px;}
.y118{bottom:177.541950px;}
.y201{bottom:182.320800px;}
.y1d8{bottom:182.326650px;}
.yf8{bottom:182.329650px;}
.yb{bottom:182.332650px;}
.y1ad{bottom:182.338500px;}
.yca{bottom:182.341500px;}
.y20c{bottom:182.342700px;}
.y217{bottom:182.360100px;}
.y19a{bottom:183.584550px;}
.y16c{bottom:186.088350px;}
.yee{bottom:191.719800px;}
.y17f{bottom:191.720100px;}
.y138{bottom:191.731800px;}
.y32{bottom:191.737800px;}
.y8d{bottom:191.743800px;}
.ya9{bottom:191.749800px;}
.y163{bottom:191.773800px;}
.yc4{bottom:191.779650px;}
.y117{bottom:191.785950px;}
.y5c{bottom:192.495900px;}
.y199{bottom:198.587550px;}
.y16b{bottom:201.091350px;}
.y1ac{bottom:202.874850px;}
.y200{bottom:202.945800px;}
.y1d7{bottom:202.951650px;}
.yf7{bottom:202.954650px;}
.ya{bottom:202.957650px;}
.y76{bottom:202.960500px;}
.y216{bottom:202.976100px;}
.yed{bottom:205.975800px;}
.y17e{bottom:205.976100px;}
.y55{bottom:205.981800px;}
.y8c{bottom:205.987800px;}
.y31{bottom:205.993800px;}
.y162{bottom:206.017800px;}
.yc3{bottom:206.023650px;}
.y116{bottom:206.029950px;}
.y5b{bottom:207.498900px;}
.y198{bottom:213.590550px;}
.y16a{bottom:216.094350px;}
.y137{bottom:220.219800px;}
.y54{bottom:220.225800px;}
.y8b{bottom:220.231800px;}
.y30{bottom:220.237800px;}
.y161{bottom:220.261800px;}
.yc2{bottom:220.267650px;}
.y115{bottom:220.273950px;}
.y5a{bottom:222.501900px;}
.y1ab{bottom:223.499850px;}
.y1ff{bottom:223.570800px;}
.y75{bottom:223.573650px;}
.y1d6{bottom:223.576650px;}
.yf6{bottom:223.579650px;}
.y9{bottom:223.582650px;}
.y20b{bottom:223.586700px;}
.y13{bottom:228.828300px;}
.y169{bottom:231.097350px;}
.yd5{bottom:233.412150px;}
.y136{bottom:234.475800px;}
.y2f{bottom:234.481800px;}
.y8a{bottom:234.487800px;}
.ya8{bottom:234.493800px;}
.y160{bottom:234.505800px;}
.yc1{bottom:234.511650px;}
.y114{bottom:234.517950px;}
.y59{bottom:237.504900px;}
.y1aa{bottom:244.124850px;}
.y1eb{bottom:244.145550px;}
.y14c{bottom:244.178100px;}
.y17d{bottom:244.186950px;}
.y1fe{bottom:244.195800px;}
.y74{bottom:244.198650px;}
.y1d5{bottom:244.201650px;}
.yf5{bottom:244.204650px;}
.y8{bottom:244.207650px;}
.y215{bottom:244.220100px;}
.yd4{bottom:248.415150px;}
.y2e{bottom:248.725800px;}
.y89{bottom:248.731800px;}
.ya7{bottom:248.737800px;}
.yc0{bottom:248.755650px;}
.y15f{bottom:248.761800px;}
.y113{bottom:248.761950px;}
.y58{bottom:252.507900px;}
.y88{bottom:262.975800px;}
.y53{bottom:262.981800px;}
.ybf{bottom:262.999650px;}
.y15e{bottom:263.005800px;}
.y112{bottom:263.005950px;}
.yd3{bottom:263.418150px;}
.y1a9{bottom:264.749850px;}
.y1ea{bottom:264.770550px;}
.y14b{bottom:264.803100px;}
.y17c{bottom:264.811950px;}
.yec{bottom:264.817800px;}
.y1c9{bottom:264.820800px;}
.y73{bottom:264.823650px;}
.y1d4{bottom:264.826650px;}
.yf4{bottom:264.829650px;}
.y214{bottom:264.836100px;}
.y52{bottom:277.225800px;}
.ybe{bottom:277.243650px;}
.y15d{bottom:277.249800px;}
.y111{bottom:277.249950px;}
.yd2{bottom:278.421150px;}
.y1a8{bottom:285.374850px;}
.y1e9{bottom:285.395550px;}
.y14a{bottom:285.428100px;}
.y2d{bottom:285.433950px;}
.y17b{bottom:285.436950px;}
.y171{bottom:285.439800px;}
.yeb{bottom:285.442800px;}
.y1c8{bottom:285.445800px;}
.y72{bottom:285.448650px;}
.y1d3{bottom:285.451650px;}
.y213{bottom:285.464100px;}
.ybd{bottom:291.487650px;}
.y15c{bottom:291.493800px;}
.y110{bottom:291.493950px;}
.yd1{bottom:293.424150px;}
.y193{bottom:295.784400px;}
.y12{bottom:304.254900px;}
.ybc{bottom:305.731650px;}
.y15b{bottom:305.737800px;}
.y10f{bottom:305.749950px;}
.y1a7{bottom:305.999850px;}
.y1e8{bottom:306.020550px;}
.y87{bottom:306.026400px;}
.y1be{bottom:306.029400px;}
.y204{bottom:306.037950px;}
.y149{bottom:306.053100px;}
.y2c{bottom:306.058950px;}
.y17a{bottom:306.061950px;}
.y71{bottom:306.064800px;}
.yea{bottom:306.067800px;}
.y1c7{bottom:306.070800px;}
.y135{bottom:306.073650px;}
.y212{bottom:306.080100px;}
.yff{bottom:307.618050px;}
.yd0{bottom:308.427150px;}
.y192{bottom:310.787400px;}
.y11{bottom:319.257900px;}
.ybb{bottom:319.975650px;}
.y15a{bottom:319.981800px;}
.y10e{bottom:320.005950px;}
.yfe{bottom:322.621050px;}
.ycf{bottom:323.430150px;}
.y191{bottom:325.790400px;}
.y1a6{bottom:326.624850px;}
.y1e7{bottom:326.645550px;}
.y86{bottom:326.651400px;}
.y1bd{bottom:326.654400px;}
.y203{bottom:326.665950px;}
.y51{bottom:326.669100px;}
.y148{bottom:326.678100px;}
.y1c6{bottom:326.680950px;}
.y2b{bottom:326.683950px;}
.y179{bottom:326.686950px;}
.y70{bottom:326.689800px;}
.ye9{bottom:326.692800px;}
.y1d2{bottom:326.695800px;}
.y159{bottom:334.225800px;}
.y10d{bottom:334.249950px;}
.y10{bottom:334.260900px;}
.yfd{bottom:337.624050px;}
.yce{bottom:338.433150px;}
.y190{bottom:340.793400px;}
.y1fd{bottom:347.247000px;}
.y1a5{bottom:347.249850px;}
.y1e6{bottom:347.270550px;}
.y85{bottom:347.276400px;}
.y1bc{bottom:347.279400px;}
.y134{bottom:347.293950px;}
.y50{bottom:347.294100px;}
.y147{bottom:347.303100px;}
.y1c5{bottom:347.305950px;}
.y2a{bottom:347.308950px;}
.y178{bottom:347.311950px;}
.y6f{bottom:347.314800px;}
.ye8{bottom:347.317800px;}
.y211{bottom:347.324100px;}
.y10c{bottom:348.493950px;}
.yf{bottom:349.263900px;}
.yfc{bottom:352.627050px;}
.y18f{bottom:355.796400px;}
.y10b{bottom:362.737950px;}
.yfb{bottom:367.630050px;}
.y1fc{bottom:367.872000px;}
.y1a4{bottom:367.874850px;}
.ye7{bottom:367.886700px;}
.y1e5{bottom:367.895550px;}
.yba{bottom:367.898550px;}
.y84{bottom:367.901400px;}
.y1bb{bottom:367.904400px;}
.y4f{bottom:367.919100px;}
.y133{bottom:367.921950px;}
.y146{bottom:367.928100px;}
.y1c4{bottom:367.930950px;}
.y29{bottom:367.933950px;}
.y170{bottom:367.936950px;}
.y6e{bottom:367.939800px;}
.y210{bottom:367.940100px;}
.y18e{bottom:370.799400px;}
.y10a{bottom:376.981950px;}
.y18d{bottom:385.802400px;}
.y1fb{bottom:388.497000px;}
.y1a3{bottom:388.499850px;}
.ye6{bottom:388.511700px;}
.y1e4{bottom:388.520550px;}
.yb9{bottom:388.523550px;}
.y83{bottom:388.526400px;}
.y1ba{bottom:388.529400px;}
.y1d1{bottom:388.535400px;}
.y4e{bottom:388.544100px;}
.y123{bottom:388.547100px;}
.y132{bottom:388.549950px;}
.y145{bottom:388.553100px;}
.y1c3{bottom:388.555950px;}
.y28{bottom:388.558950px;}
.y20f{bottom:388.568100px;}
.y109{bottom:391.225950px;}
.y18c{bottom:400.805400px;}
.y1fa{bottom:409.122000px;}
.y1a2{bottom:409.124850px;}
.ya6{bottom:409.130700px;}
.ye5{bottom:409.136700px;}
.y1e3{bottom:409.145550px;}
.yb8{bottom:409.148550px;}
.y82{bottom:409.151400px;}
.y1b9{bottom:409.154400px;}
.y1d0{bottom:409.160400px;}
.y4d{bottom:409.169100px;}
.y122{bottom:409.172100px;}
.y131{bottom:409.177950px;}
.y144{bottom:409.178100px;}
.y1c2{bottom:409.180950px;}
.y27{bottom:409.183950px;}
.y20e{bottom:409.184100px;}
.y18b{bottom:415.808400px;}
.y1f9{bottom:429.747000px;}
.y1a1{bottom:429.749850px;}
.ya5{bottom:429.755700px;}
.ye4{bottom:429.761700px;}
.y1e2{bottom:429.770550px;}
.yb7{bottom:429.773550px;}
.y81{bottom:429.776400px;}
.y1b8{bottom:429.779400px;}
.y108{bottom:429.785400px;}
.y158{bottom:429.791250px;}
.y4c{bottom:429.794100px;}
.y121{bottom:429.797100px;}
.y1c1{bottom:429.800100px;}
.y143{bottom:429.803100px;}
.y130{bottom:429.805950px;}
.y18a{bottom:430.811400px;}
.y189{bottom:445.814400px;}
.y1f8{bottom:450.372000px;}
.y1a0{bottom:450.374850px;}
.ya4{bottom:450.380700px;}
.ye3{bottom:450.386700px;}
.y1e1{bottom:450.395550px;}
.yb6{bottom:450.398550px;}
.y80{bottom:450.401400px;}
.y1b7{bottom:450.404400px;}
.y107{bottom:450.410400px;}
.y157{bottom:450.416250px;}
.y4b{bottom:450.419100px;}
.y120{bottom:450.422100px;}
.y1c0{bottom:450.425100px;}
.y26{bottom:450.428100px;}
.y188{bottom:460.817400px;}
.y6d{bottom:470.991000px;}
.y1f7{bottom:470.997000px;}
.y19f{bottom:470.999850px;}
.ya3{bottom:471.005700px;}
.ye2{bottom:471.011700px;}
.y1e0{bottom:471.020550px;}
.yb5{bottom:471.023550px;}
.y7f{bottom:471.026400px;}
.y1b6{bottom:471.029400px;}
.y106{bottom:471.035400px;}
.y156{bottom:471.041250px;}
.y4a{bottom:471.044100px;}
.y11f{bottom:471.047100px;}
.y1bf{bottom:471.050100px;}
.y6c{bottom:491.616000px;}
.y1f6{bottom:491.622000px;}
.y19e{bottom:491.624850px;}
.ya2{bottom:491.630700px;}
.ye1{bottom:491.636700px;}
.y20a{bottom:491.642550px;}
.y1df{bottom:491.645550px;}
.yb4{bottom:491.648550px;}
.y7e{bottom:491.651400px;}
.y1b5{bottom:491.654400px;}
.y105{bottom:491.660400px;}
.y196{bottom:491.663250px;}
.y11e{bottom:491.666250px;}
.y49{bottom:491.669100px;}
.y6b{bottom:512.241000px;}
.y1f5{bottom:512.247000px;}
.y19d{bottom:512.249850px;}
.ya1{bottom:512.255700px;}
.ye0{bottom:512.261700px;}
.y209{bottom:512.267550px;}
.y1de{bottom:512.270550px;}
.yb3{bottom:512.273550px;}
.y25{bottom:512.276400px;}
.y1b4{bottom:512.279400px;}
.y48{bottom:512.282400px;}
.y104{bottom:512.285400px;}
.y195{bottom:512.288250px;}
.y11d{bottom:512.291250px;}
.y6a{bottom:532.866000px;}
.y1f4{bottom:532.872000px;}
.ya0{bottom:532.880700px;}
.ydf{bottom:532.886700px;}
.y208{bottom:532.892550px;}
.y1dd{bottom:532.895550px;}
.yb2{bottom:532.898550px;}
.y24{bottom:532.901400px;}
.y1b3{bottom:532.904400px;}
.y47{bottom:532.907400px;}
.y103{bottom:532.910400px;}
.y194{bottom:532.913250px;}
.y1ef{bottom:532.916250px;}
.y69{bottom:553.491000px;}
.y1f3{bottom:553.497000px;}
.y19c{bottom:553.499850px;}
.y9f{bottom:553.505700px;}
.yde{bottom:553.511700px;}
.y207{bottom:553.517550px;}
.y1dc{bottom:553.520550px;}
.yb1{bottom:553.523550px;}
.y23{bottom:553.526400px;}
.y1b2{bottom:553.529400px;}
.y46{bottom:553.532400px;}
.y102{bottom:553.535400px;}
.y68{bottom:574.116000px;}
.y1cf{bottom:574.122000px;}
.y12f{bottom:574.124850px;}
.y9e{bottom:574.130700px;}
.ydd{bottom:574.136700px;}
.y142{bottom:574.139700px;}
.y177{bottom:574.142550px;}
.y1db{bottom:574.145550px;}
.yb0{bottom:574.148550px;}
.y22{bottom:574.151400px;}
.y101{bottom:574.154400px;}
.y45{bottom:574.157400px;}
.y1ee{bottom:574.160400px;}
.y67{bottom:594.741000px;}
.y44{bottom:594.747000px;}
.y12e{bottom:594.749850px;}
.y9d{bottom:594.755700px;}
.ydc{bottom:594.761700px;}
.y141{bottom:594.764700px;}
.y176{bottom:594.767550px;}
.y1da{bottom:594.770550px;}
.yaf{bottom:594.773550px;}
.y21{bottom:594.776400px;}
.y100{bottom:594.779400px;}
.y66{bottom:615.366000px;}
.y43{bottom:615.372000px;}
.y12d{bottom:615.374850px;}
.y9c{bottom:615.380700px;}
.ydb{bottom:615.386700px;}
.y140{bottom:615.389700px;}
.y175{bottom:615.392550px;}
.y1b1{bottom:615.395550px;}
.yae{bottom:615.398550px;}
.y20{bottom:615.401400px;}
.y65{bottom:635.991000px;}
.y42{bottom:635.997000px;}
.y12c{bottom:635.999850px;}
.y9b{bottom:636.005700px;}
.yda{bottom:636.011700px;}
.y7d{bottom:636.014700px;}
.y1f{bottom:636.017550px;}
.y1b0{bottom:636.020550px;}
.yad{bottom:636.023550px;}
.y64{bottom:656.616000px;}
.y41{bottom:656.622000px;}
.y12b{bottom:656.624850px;}
.y155{bottom:656.627850px;}
.y9a{bottom:656.630700px;}
.yd9{bottom:656.636700px;}
.y7c{bottom:656.639700px;}
.y1e{bottom:656.642550px;}
.y1af{bottom:656.645550px;}
.y7{bottom:677.241000px;}
.y40{bottom:677.247000px;}
.y12a{bottom:677.249850px;}
.y154{bottom:677.252850px;}
.y99{bottom:677.255700px;}
.yd8{bottom:677.261700px;}
.y7b{bottom:677.264700px;}
.y1d{bottom:677.267550px;}
.y202{bottom:677.270550px;}
.y63{bottom:697.866000px;}
.y3f{bottom:697.872000px;}
.y129{bottom:697.874850px;}
.y153{bottom:697.877850px;}
.y98{bottom:697.880700px;}
.y174{bottom:697.883850px;}
.yd7{bottom:697.886700px;}
.y1c{bottom:697.889700px;}
.y206{bottom:697.892550px;}
.y6{bottom:718.491000px;}
.y3e{bottom:718.497000px;}
.y128{bottom:718.499850px;}
.y152{bottom:718.502850px;}
.y97{bottom:718.505700px;}
.y173{bottom:718.508850px;}
.yd6{bottom:718.511700px;}
.y1b{bottom:718.514700px;}
.y62{bottom:739.116000px;}
.y3d{bottom:739.122000px;}
.y127{bottom:739.124850px;}
.y151{bottom:739.127850px;}
.y96{bottom:739.130700px;}
.y172{bottom:739.133850px;}
.y205{bottom:739.136700px;}
.y1a{bottom:759.723000px;}
.y13f{bottom:759.740850px;}
.y5{bottom:759.741000px;}
.y3c{bottom:759.747000px;}
.y126{bottom:759.749850px;}
.y150{bottom:759.752850px;}
.y95{bottom:759.755700px;}
.yac{bottom:759.758850px;}
.y19{bottom:780.351000px;}
.y61{bottom:780.366000px;}
.y13e{bottom:780.368850px;}
.y3b{bottom:780.372000px;}
.y94{bottom:780.374850px;}
.y14f{bottom:780.377850px;}
.y18{bottom:800.979000px;}
.y4{bottom:800.991000px;}
.y13d{bottom:800.996850px;}
.y3a{bottom:800.997000px;}
.y93{bottom:800.999850px;}
.y17{bottom:821.607000px;}
.y60{bottom:821.616000px;}
.yab{bottom:821.619000px;}
.y39{bottom:821.622000px;}
.y13c{bottom:821.624850px;}
.y16{bottom:842.235000px;}
.y3{bottom:842.241000px;}
.yaa{bottom:842.244000px;}
.y125{bottom:842.247000px;}
.y19b{bottom:862.860000px;}
.y15{bottom:862.863000px;}
.y38{bottom:862.866000px;}
.y2{bottom:883.491000px;}
.h7{height:28.008000px;}
.h6{height:28.044000px;}
.h8{height:31.668000px;}
.h29{height:40.320000px;}
.hd{height:41.904000px;}
.h20{height:44.100000px;}
.h9{height:47.142000px;}
.h1a{height:47.237400px;}
.h5{height:52.380000px;}
.ha{height:52.391400px;}
.h15{height:52.392000px;}
.h13{height:52.403400px;}
.he{height:52.404000px;}
.h1e{height:52.414800px;}
.hb{height:52.415400px;}
.h10{height:52.426800px;}
.h11{height:52.427400px;}
.h1c{height:52.438800px;}
.h24{height:52.439400px;}
.h1b{height:52.450800px;}
.h1d{height:52.451400px;}
.h17{height:52.462200px;}
.h16{height:52.462800px;}
.h12{height:52.474800px;}
.h26{height:52.498200px;}
.hf{height:52.521600px;}
.h19{height:52.522200px;}
.h23{height:52.533600px;}
.h22{height:52.557000px;}
.h1f{height:52.569000px;}
.h18{height:52.581000px;}
.h14{height:52.593000px;}
.h25{height:52.628400px;}
.h21{height:52.734600px;}
.hc{height:62.322000px;}
.h28{height:67.116000px;}
.h2{height:81.432000px;}
.h4{height:93.360000px;}
.h3{height:95.880000px;}
.h27{height:100.800000px;}
.h0{height:956.692500px;}
.h1{height:957.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:41.019600px;}
.x1{left:42.519600px;}
.x6{left:68.031450px;}
.x5{left:102.047250px;}
.x3{left:111.519750px;}
.x8{left:391.181100px;}
.x7{left:474.094500px;}
.x2{left:476.220450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.967467pt;}
.v3{vertical-align:17.610133pt;}
.v4{vertical-align:22.880000pt;}
.v1{vertical-align:41.730133pt;}
.ls13{letter-spacing:-2.112000pt;}
.ls19{letter-spacing:-1.600000pt;}
.ls14{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.278400pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.247467pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.154667pt;}
.lsb{letter-spacing:-0.085333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.853333pt;}
.lsc{letter-spacing:2.218667pt;}
.lsa{letter-spacing:4.106667pt;}
.ls12{letter-spacing:5.333333pt;}
.ls16{letter-spacing:5.440000pt;}
.ls3{letter-spacing:9.013333pt;}
.ls6{letter-spacing:37.546667pt;}
.ls4{letter-spacing:59.861333pt;}
.ws17{word-spacing:-31.840000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.813333pt;}
.ws1a{word-spacing:-9.546667pt;}
.ws9{word-spacing:-9.280000pt;}
.wsa{word-spacing:-9.088000pt;}
.ws7{word-spacing:-8.533333pt;}
.wsc{word-spacing:-8.320000pt;}
.ws6{word-spacing:-7.637333pt;}
.wse{word-spacing:-7.424000pt;}
.ws2{word-spacing:-0.053333pt;}
.ws10{word-spacing:-0.042667pt;}
.ws5{word-spacing:-0.030933pt;}
.ws14{word-spacing:-0.027840pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.123733pt;}
.ws12{word-spacing:0.216533pt;}
.ws20{word-spacing:0.384000pt;}
.wsd{word-spacing:30.267200pt;}
.ws13{word-spacing:31.611200pt;}
.ws16{word-spacing:33.723200pt;}
.wsf{word-spacing:35.835200pt;}
.ws11{word-spacing:36.315200pt;}
.ws1f{word-spacing:41.403200pt;}
.ws18{word-spacing:54.075200pt;}
.ws1d{word-spacing:55.419200pt;}
.ws1e{word-spacing:57.531200pt;}
.ws19{word-spacing:59.643200pt;}
.ws1b{word-spacing:60.123200pt;}
.ws8{word-spacing:70.299200pt;}
.wsb{word-spacing:72.411200pt;}
.ws4{word-spacing:75.003200pt;}
._f{margin-left:-68.608000pt;}
._d{margin-left:-10.666667pt;}
._18{margin-left:-8.170667pt;}
._17{margin-left:-6.347733pt;}
._14{margin-left:-4.918400pt;}
._12{margin-left:-3.840000pt;}
._e{margin-left:-2.880000pt;}
._7{margin-left:-1.920000pt;}
._6{margin-left:-0.960000pt;}
._1{width:1.066667pt;}
._0{width:1.973333pt;}
._3{width:3.520000pt;}
._5{width:5.120000pt;}
._4{width:6.133333pt;}
._2{width:7.733333pt;}
._8{width:8.933333pt;}
._b{width:10.026667pt;}
._10{width:11.146667pt;}
._c{width:12.426667pt;}
._11{width:13.973333pt;}
._9{width:15.066667pt;}
._15{width:16.826667pt;}
._19{width:18.480000pt;}
._16{width:20.010667pt;}
._13{width:37.546667pt;}
._a{width:59.648000pt;}
.fs6{font-size:27.840000pt;}
.fs7{font-size:30.933333pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:40.213333pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:69.333333pt;}
.fsb{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:33.530800pt;}
.y1{bottom:33.766267pt;}
.ye{bottom:107.073467pt;}
.y184{bottom:107.079200pt;}
.ycd{bottom:107.081333pt;}
.y1d9{bottom:107.084133pt;}
.y1ed{bottom:107.084267pt;}
.y197{bottom:107.089200pt;}
.y1f2{bottom:107.089600pt;}
.yfa{bottom:107.094533pt;}
.y7a{bottom:107.094800pt;}
.y1ce{bottom:107.094933pt;}
.y187{bottom:107.099867pt;}
.yf3{bottom:107.100267pt;}
.y13b{bottom:107.110933pt;}
.y219{bottom:107.111200pt;}
.y37{bottom:107.116267pt;}
.y92{bottom:107.121600pt;}
.y57{bottom:107.126933pt;}
.y168{bottom:107.137600pt;}
.yc9{bottom:107.153467pt;}
.y11c{bottom:107.159067pt;}
.y183{bottom:119.740533pt;}
.y1f1{bottom:119.750933pt;}
.yf9{bottom:119.755867pt;}
.y79{bottom:119.756133pt;}
.y1ec{bottom:119.756267pt;}
.y186{bottom:119.761200pt;}
.yf2{bottom:119.761600pt;}
.y1cd{bottom:119.766933pt;}
.y13a{bottom:119.772267pt;}
.y36{bottom:119.777600pt;}
.y91{bottom:119.782933pt;}
.y56{bottom:119.788267pt;}
.y167{bottom:119.798933pt;}
.yc8{bottom:119.814800pt;}
.y11b{bottom:119.820400pt;}
.y16f{bottom:125.403867pt;}
.yd{bottom:125.406800pt;}
.ycc{bottom:125.414667pt;}
.y20d{bottom:125.421067pt;}
.y218{bottom:125.436533pt;}
.y5f{bottom:131.099467pt;}
.y182{bottom:132.412533pt;}
.y185{bottom:132.422533pt;}
.yf1{bottom:132.422933pt;}
.y78{bottom:132.428133pt;}
.y1cc{bottom:132.428267pt;}
.y139{bottom:132.433600pt;}
.y124{bottom:132.438933pt;}
.y90{bottom:132.444267pt;}
.y35{bottom:132.449600pt;}
.y166{bottom:132.470933pt;}
.yc7{bottom:132.476133pt;}
.y11a{bottom:132.481733pt;}
.y16e{bottom:138.739867pt;}
.yc{bottom:143.740133pt;}
.y1ae{bottom:143.745333pt;}
.ycb{bottom:143.748000pt;}
.y5e{bottom:144.435467pt;}
.y1f0{bottom:145.084267pt;}
.y181{bottom:145.084533pt;}
.y77{bottom:145.089467pt;}
.y1cb{bottom:145.089600pt;}
.yf0{bottom:145.094933pt;}
.y14e{bottom:145.105600pt;}
.y34{bottom:145.110933pt;}
.y8f{bottom:145.116267pt;}
.y165{bottom:145.132267pt;}
.yc6{bottom:145.137467pt;}
.y119{bottom:145.143067pt;}
.y16d{bottom:152.075867pt;}
.yef{bottom:157.756267pt;}
.y180{bottom:157.756533pt;}
.y1ca{bottom:157.761600pt;}
.y14d{bottom:157.766933pt;}
.y5d{bottom:157.771467pt;}
.y33{bottom:157.772267pt;}
.y8e{bottom:157.777600pt;}
.y164{bottom:157.793600pt;}
.yc5{bottom:157.809467pt;}
.y118{bottom:157.815067pt;}
.y201{bottom:162.062933pt;}
.y1d8{bottom:162.068133pt;}
.yf8{bottom:162.070800pt;}
.yb{bottom:162.073467pt;}
.y1ad{bottom:162.078667pt;}
.yca{bottom:162.081333pt;}
.y20c{bottom:162.082400pt;}
.y217{bottom:162.097867pt;}
.y19a{bottom:163.186267pt;}
.y16c{bottom:165.411867pt;}
.yee{bottom:170.417600pt;}
.y17f{bottom:170.417867pt;}
.y138{bottom:170.428267pt;}
.y32{bottom:170.433600pt;}
.y8d{bottom:170.438933pt;}
.ya9{bottom:170.444267pt;}
.y163{bottom:170.465600pt;}
.yc4{bottom:170.470800pt;}
.y117{bottom:170.476400pt;}
.y5c{bottom:171.107467pt;}
.y199{bottom:176.522267pt;}
.y16b{bottom:178.747867pt;}
.y1ac{bottom:180.333200pt;}
.y200{bottom:180.396267pt;}
.y1d7{bottom:180.401467pt;}
.yf7{bottom:180.404133pt;}
.ya{bottom:180.406800pt;}
.y76{bottom:180.409333pt;}
.y216{bottom:180.423200pt;}
.yed{bottom:183.089600pt;}
.y17e{bottom:183.089867pt;}
.y55{bottom:183.094933pt;}
.y8c{bottom:183.100267pt;}
.y31{bottom:183.105600pt;}
.y162{bottom:183.126933pt;}
.yc3{bottom:183.132133pt;}
.y116{bottom:183.137733pt;}
.y5b{bottom:184.443467pt;}
.y198{bottom:189.858267pt;}
.y16a{bottom:192.083867pt;}
.y137{bottom:195.750933pt;}
.y54{bottom:195.756267pt;}
.y8b{bottom:195.761600pt;}
.y30{bottom:195.766933pt;}
.y161{bottom:195.788267pt;}
.yc2{bottom:195.793467pt;}
.y115{bottom:195.799067pt;}
.y5a{bottom:197.779467pt;}
.y1ab{bottom:198.666533pt;}
.y1ff{bottom:198.729600pt;}
.y75{bottom:198.732133pt;}
.y1d6{bottom:198.734800pt;}
.yf6{bottom:198.737467pt;}
.y9{bottom:198.740133pt;}
.y20b{bottom:198.743733pt;}
.y13{bottom:203.402933pt;}
.y169{bottom:205.419867pt;}
.yd5{bottom:207.477467pt;}
.y136{bottom:208.422933pt;}
.y2f{bottom:208.428267pt;}
.y8a{bottom:208.433600pt;}
.ya8{bottom:208.438933pt;}
.y160{bottom:208.449600pt;}
.yc1{bottom:208.454800pt;}
.y114{bottom:208.460400pt;}
.y59{bottom:211.115467pt;}
.y1aa{bottom:216.999867pt;}
.y1eb{bottom:217.018267pt;}
.y14c{bottom:217.047200pt;}
.y17d{bottom:217.055067pt;}
.y1fe{bottom:217.062933pt;}
.y74{bottom:217.065467pt;}
.y1d5{bottom:217.068133pt;}
.yf5{bottom:217.070800pt;}
.y8{bottom:217.073467pt;}
.y215{bottom:217.084533pt;}
.yd4{bottom:220.813467pt;}
.y2e{bottom:221.089600pt;}
.y89{bottom:221.094933pt;}
.ya7{bottom:221.100267pt;}
.yc0{bottom:221.116133pt;}
.y15f{bottom:221.121600pt;}
.y113{bottom:221.121733pt;}
.y58{bottom:224.451467pt;}
.y88{bottom:233.756267pt;}
.y53{bottom:233.761600pt;}
.ybf{bottom:233.777467pt;}
.y15e{bottom:233.782933pt;}
.y112{bottom:233.783067pt;}
.yd3{bottom:234.149467pt;}
.y1a9{bottom:235.333200pt;}
.y1ea{bottom:235.351600pt;}
.y14b{bottom:235.380533pt;}
.y17c{bottom:235.388400pt;}
.yec{bottom:235.393600pt;}
.y1c9{bottom:235.396267pt;}
.y73{bottom:235.398800pt;}
.y1d4{bottom:235.401467pt;}
.yf4{bottom:235.404133pt;}
.y214{bottom:235.409867pt;}
.y52{bottom:246.422933pt;}
.ybe{bottom:246.438800pt;}
.y15d{bottom:246.444267pt;}
.y111{bottom:246.444400pt;}
.yd2{bottom:247.485467pt;}
.y1a8{bottom:253.666533pt;}
.y1e9{bottom:253.684933pt;}
.y14a{bottom:253.713867pt;}
.y2d{bottom:253.719067pt;}
.y17b{bottom:253.721733pt;}
.y171{bottom:253.724267pt;}
.yeb{bottom:253.726933pt;}
.y1c8{bottom:253.729600pt;}
.y72{bottom:253.732133pt;}
.y1d3{bottom:253.734800pt;}
.y213{bottom:253.745867pt;}
.ybd{bottom:259.100133pt;}
.y15c{bottom:259.105600pt;}
.y110{bottom:259.105733pt;}
.yd1{bottom:260.821467pt;}
.y193{bottom:262.919467pt;}
.y12{bottom:270.448800pt;}
.ybc{bottom:271.761467pt;}
.y15b{bottom:271.766933pt;}
.y10f{bottom:271.777733pt;}
.y1a7{bottom:271.999867pt;}
.y1e8{bottom:272.018267pt;}
.y87{bottom:272.023467pt;}
.y1be{bottom:272.026133pt;}
.y204{bottom:272.033733pt;}
.y149{bottom:272.047200pt;}
.y2c{bottom:272.052400pt;}
.y17a{bottom:272.055067pt;}
.y71{bottom:272.057600pt;}
.yea{bottom:272.060267pt;}
.y1c7{bottom:272.062933pt;}
.y135{bottom:272.065467pt;}
.y212{bottom:272.071200pt;}
.yff{bottom:273.438267pt;}
.yd0{bottom:274.157467pt;}
.y192{bottom:276.255467pt;}
.y11{bottom:283.784800pt;}
.ybb{bottom:284.422800pt;}
.y15a{bottom:284.428267pt;}
.y10e{bottom:284.449733pt;}
.yfe{bottom:286.774267pt;}
.ycf{bottom:287.493467pt;}
.y191{bottom:289.591467pt;}
.y1a6{bottom:290.333200pt;}
.y1e7{bottom:290.351600pt;}
.y86{bottom:290.356800pt;}
.y1bd{bottom:290.359467pt;}
.y203{bottom:290.369733pt;}
.y51{bottom:290.372533pt;}
.y148{bottom:290.380533pt;}
.y1c6{bottom:290.383067pt;}
.y2b{bottom:290.385733pt;}
.y179{bottom:290.388400pt;}
.y70{bottom:290.390933pt;}
.ye9{bottom:290.393600pt;}
.y1d2{bottom:290.396267pt;}
.y159{bottom:297.089600pt;}
.y10d{bottom:297.111067pt;}
.y10{bottom:297.120800pt;}
.yfd{bottom:300.110267pt;}
.yce{bottom:300.829467pt;}
.y190{bottom:302.927467pt;}
.y1fd{bottom:308.664000pt;}
.y1a5{bottom:308.666533pt;}
.y1e6{bottom:308.684933pt;}
.y85{bottom:308.690133pt;}
.y1bc{bottom:308.692800pt;}
.y134{bottom:308.705733pt;}
.y50{bottom:308.705867pt;}
.y147{bottom:308.713867pt;}
.y1c5{bottom:308.716400pt;}
.y2a{bottom:308.719067pt;}
.y178{bottom:308.721733pt;}
.y6f{bottom:308.724267pt;}
.ye8{bottom:308.726933pt;}
.y211{bottom:308.732533pt;}
.y10c{bottom:309.772400pt;}
.yf{bottom:310.456800pt;}
.yfc{bottom:313.446267pt;}
.y18f{bottom:316.263467pt;}
.y10b{bottom:322.433733pt;}
.yfb{bottom:326.782267pt;}
.y1fc{bottom:326.997333pt;}
.y1a4{bottom:326.999867pt;}
.ye7{bottom:327.010400pt;}
.y1e5{bottom:327.018267pt;}
.yba{bottom:327.020933pt;}
.y84{bottom:327.023467pt;}
.y1bb{bottom:327.026133pt;}
.y4f{bottom:327.039200pt;}
.y133{bottom:327.041733pt;}
.y146{bottom:327.047200pt;}
.y1c4{bottom:327.049733pt;}
.y29{bottom:327.052400pt;}
.y170{bottom:327.055067pt;}
.y6e{bottom:327.057600pt;}
.y210{bottom:327.057867pt;}
.y18e{bottom:329.599467pt;}
.y10a{bottom:335.095067pt;}
.y18d{bottom:342.935467pt;}
.y1fb{bottom:345.330667pt;}
.y1a3{bottom:345.333200pt;}
.ye6{bottom:345.343733pt;}
.y1e4{bottom:345.351600pt;}
.yb9{bottom:345.354267pt;}
.y83{bottom:345.356800pt;}
.y1ba{bottom:345.359467pt;}
.y1d1{bottom:345.364800pt;}
.y4e{bottom:345.372533pt;}
.y123{bottom:345.375200pt;}
.y132{bottom:345.377733pt;}
.y145{bottom:345.380533pt;}
.y1c3{bottom:345.383067pt;}
.y28{bottom:345.385733pt;}
.y20f{bottom:345.393867pt;}
.y109{bottom:347.756400pt;}
.y18c{bottom:356.271467pt;}
.y1fa{bottom:363.664000pt;}
.y1a2{bottom:363.666533pt;}
.ya6{bottom:363.671733pt;}
.ye5{bottom:363.677067pt;}
.y1e3{bottom:363.684933pt;}
.yb8{bottom:363.687600pt;}
.y82{bottom:363.690133pt;}
.y1b9{bottom:363.692800pt;}
.y1d0{bottom:363.698133pt;}
.y4d{bottom:363.705867pt;}
.y122{bottom:363.708533pt;}
.y131{bottom:363.713733pt;}
.y144{bottom:363.713867pt;}
.y1c2{bottom:363.716400pt;}
.y27{bottom:363.719067pt;}
.y20e{bottom:363.719200pt;}
.y18b{bottom:369.607467pt;}
.y1f9{bottom:381.997333pt;}
.y1a1{bottom:381.999867pt;}
.ya5{bottom:382.005067pt;}
.ye4{bottom:382.010400pt;}
.y1e2{bottom:382.018267pt;}
.yb7{bottom:382.020933pt;}
.y81{bottom:382.023467pt;}
.y1b8{bottom:382.026133pt;}
.y108{bottom:382.031467pt;}
.y158{bottom:382.036667pt;}
.y4c{bottom:382.039200pt;}
.y121{bottom:382.041867pt;}
.y1c1{bottom:382.044533pt;}
.y143{bottom:382.047200pt;}
.y130{bottom:382.049733pt;}
.y18a{bottom:382.943467pt;}
.y189{bottom:396.279467pt;}
.y1f8{bottom:400.330667pt;}
.y1a0{bottom:400.333200pt;}
.ya4{bottom:400.338400pt;}
.ye3{bottom:400.343733pt;}
.y1e1{bottom:400.351600pt;}
.yb6{bottom:400.354267pt;}
.y80{bottom:400.356800pt;}
.y1b7{bottom:400.359467pt;}
.y107{bottom:400.364800pt;}
.y157{bottom:400.370000pt;}
.y4b{bottom:400.372533pt;}
.y120{bottom:400.375200pt;}
.y1c0{bottom:400.377867pt;}
.y26{bottom:400.380533pt;}
.y188{bottom:409.615467pt;}
.y6d{bottom:418.658667pt;}
.y1f7{bottom:418.664000pt;}
.y19f{bottom:418.666533pt;}
.ya3{bottom:418.671733pt;}
.ye2{bottom:418.677067pt;}
.y1e0{bottom:418.684933pt;}
.yb5{bottom:418.687600pt;}
.y7f{bottom:418.690133pt;}
.y1b6{bottom:418.692800pt;}
.y106{bottom:418.698133pt;}
.y156{bottom:418.703333pt;}
.y4a{bottom:418.705867pt;}
.y11f{bottom:418.708533pt;}
.y1bf{bottom:418.711200pt;}
.y6c{bottom:436.992000pt;}
.y1f6{bottom:436.997333pt;}
.y19e{bottom:436.999867pt;}
.ya2{bottom:437.005067pt;}
.ye1{bottom:437.010400pt;}
.y20a{bottom:437.015600pt;}
.y1df{bottom:437.018267pt;}
.yb4{bottom:437.020933pt;}
.y7e{bottom:437.023467pt;}
.y1b5{bottom:437.026133pt;}
.y105{bottom:437.031467pt;}
.y196{bottom:437.034000pt;}
.y11e{bottom:437.036667pt;}
.y49{bottom:437.039200pt;}
.y6b{bottom:455.325333pt;}
.y1f5{bottom:455.330667pt;}
.y19d{bottom:455.333200pt;}
.ya1{bottom:455.338400pt;}
.ye0{bottom:455.343733pt;}
.y209{bottom:455.348933pt;}
.y1de{bottom:455.351600pt;}
.yb3{bottom:455.354267pt;}
.y25{bottom:455.356800pt;}
.y1b4{bottom:455.359467pt;}
.y48{bottom:455.362133pt;}
.y104{bottom:455.364800pt;}
.y195{bottom:455.367333pt;}
.y11d{bottom:455.370000pt;}
.y6a{bottom:473.658667pt;}
.y1f4{bottom:473.664000pt;}
.ya0{bottom:473.671733pt;}
.ydf{bottom:473.677067pt;}
.y208{bottom:473.682267pt;}
.y1dd{bottom:473.684933pt;}
.yb2{bottom:473.687600pt;}
.y24{bottom:473.690133pt;}
.y1b3{bottom:473.692800pt;}
.y47{bottom:473.695467pt;}
.y103{bottom:473.698133pt;}
.y194{bottom:473.700667pt;}
.y1ef{bottom:473.703333pt;}
.y69{bottom:491.992000pt;}
.y1f3{bottom:491.997333pt;}
.y19c{bottom:491.999867pt;}
.y9f{bottom:492.005067pt;}
.yde{bottom:492.010400pt;}
.y207{bottom:492.015600pt;}
.y1dc{bottom:492.018267pt;}
.yb1{bottom:492.020933pt;}
.y23{bottom:492.023467pt;}
.y1b2{bottom:492.026133pt;}
.y46{bottom:492.028800pt;}
.y102{bottom:492.031467pt;}
.y68{bottom:510.325333pt;}
.y1cf{bottom:510.330667pt;}
.y12f{bottom:510.333200pt;}
.y9e{bottom:510.338400pt;}
.ydd{bottom:510.343733pt;}
.y142{bottom:510.346400pt;}
.y177{bottom:510.348933pt;}
.y1db{bottom:510.351600pt;}
.yb0{bottom:510.354267pt;}
.y22{bottom:510.356800pt;}
.y101{bottom:510.359467pt;}
.y45{bottom:510.362133pt;}
.y1ee{bottom:510.364800pt;}
.y67{bottom:528.658667pt;}
.y44{bottom:528.664000pt;}
.y12e{bottom:528.666533pt;}
.y9d{bottom:528.671733pt;}
.ydc{bottom:528.677067pt;}
.y141{bottom:528.679733pt;}
.y176{bottom:528.682267pt;}
.y1da{bottom:528.684933pt;}
.yaf{bottom:528.687600pt;}
.y21{bottom:528.690133pt;}
.y100{bottom:528.692800pt;}
.y66{bottom:546.992000pt;}
.y43{bottom:546.997333pt;}
.y12d{bottom:546.999867pt;}
.y9c{bottom:547.005067pt;}
.ydb{bottom:547.010400pt;}
.y140{bottom:547.013067pt;}
.y175{bottom:547.015600pt;}
.y1b1{bottom:547.018267pt;}
.yae{bottom:547.020933pt;}
.y20{bottom:547.023467pt;}
.y65{bottom:565.325333pt;}
.y42{bottom:565.330667pt;}
.y12c{bottom:565.333200pt;}
.y9b{bottom:565.338400pt;}
.yda{bottom:565.343733pt;}
.y7d{bottom:565.346400pt;}
.y1f{bottom:565.348933pt;}
.y1b0{bottom:565.351600pt;}
.yad{bottom:565.354267pt;}
.y64{bottom:583.658667pt;}
.y41{bottom:583.664000pt;}
.y12b{bottom:583.666533pt;}
.y155{bottom:583.669200pt;}
.y9a{bottom:583.671733pt;}
.yd9{bottom:583.677067pt;}
.y7c{bottom:583.679733pt;}
.y1e{bottom:583.682267pt;}
.y1af{bottom:583.684933pt;}
.y7{bottom:601.992000pt;}
.y40{bottom:601.997333pt;}
.y12a{bottom:601.999867pt;}
.y154{bottom:602.002533pt;}
.y99{bottom:602.005067pt;}
.yd8{bottom:602.010400pt;}
.y7b{bottom:602.013067pt;}
.y1d{bottom:602.015600pt;}
.y202{bottom:602.018267pt;}
.y63{bottom:620.325333pt;}
.y3f{bottom:620.330667pt;}
.y129{bottom:620.333200pt;}
.y153{bottom:620.335867pt;}
.y98{bottom:620.338400pt;}
.y174{bottom:620.341200pt;}
.yd7{bottom:620.343733pt;}
.y1c{bottom:620.346400pt;}
.y206{bottom:620.348933pt;}
.y6{bottom:638.658667pt;}
.y3e{bottom:638.664000pt;}
.y128{bottom:638.666533pt;}
.y152{bottom:638.669200pt;}
.y97{bottom:638.671733pt;}
.y173{bottom:638.674533pt;}
.yd6{bottom:638.677067pt;}
.y1b{bottom:638.679733pt;}
.y62{bottom:656.992000pt;}
.y3d{bottom:656.997333pt;}
.y127{bottom:656.999867pt;}
.y151{bottom:657.002533pt;}
.y96{bottom:657.005067pt;}
.y172{bottom:657.007867pt;}
.y205{bottom:657.010400pt;}
.y1a{bottom:675.309333pt;}
.y13f{bottom:675.325200pt;}
.y5{bottom:675.325333pt;}
.y3c{bottom:675.330667pt;}
.y126{bottom:675.333200pt;}
.y150{bottom:675.335867pt;}
.y95{bottom:675.338400pt;}
.yac{bottom:675.341200pt;}
.y19{bottom:693.645333pt;}
.y61{bottom:693.658667pt;}
.y13e{bottom:693.661200pt;}
.y3b{bottom:693.664000pt;}
.y94{bottom:693.666533pt;}
.y14f{bottom:693.669200pt;}
.y18{bottom:711.981333pt;}
.y4{bottom:711.992000pt;}
.y13d{bottom:711.997200pt;}
.y3a{bottom:711.997333pt;}
.y93{bottom:711.999867pt;}
.y17{bottom:730.317333pt;}
.y60{bottom:730.325333pt;}
.yab{bottom:730.328000pt;}
.y39{bottom:730.330667pt;}
.y13c{bottom:730.333200pt;}
.y16{bottom:748.653333pt;}
.y3{bottom:748.658667pt;}
.yaa{bottom:748.661333pt;}
.y125{bottom:748.664000pt;}
.y19b{bottom:766.986667pt;}
.y15{bottom:766.989333pt;}
.y38{bottom:766.992000pt;}
.y2{bottom:785.325333pt;}
.h7{height:24.896000pt;}
.h6{height:24.928000pt;}
.h8{height:28.149333pt;}
.h29{height:35.840000pt;}
.hd{height:37.248000pt;}
.h20{height:39.200000pt;}
.h9{height:41.904000pt;}
.h1a{height:41.988800pt;}
.h5{height:46.560000pt;}
.ha{height:46.570133pt;}
.h15{height:46.570667pt;}
.h13{height:46.580800pt;}
.he{height:46.581333pt;}
.h1e{height:46.590933pt;}
.hb{height:46.591467pt;}
.h10{height:46.601600pt;}
.h11{height:46.602133pt;}
.h1c{height:46.612267pt;}
.h24{height:46.612800pt;}
.h1b{height:46.622933pt;}
.h1d{height:46.623467pt;}
.h17{height:46.633067pt;}
.h16{height:46.633600pt;}
.h12{height:46.644267pt;}
.h26{height:46.665067pt;}
.hf{height:46.685867pt;}
.h19{height:46.686400pt;}
.h23{height:46.696533pt;}
.h22{height:46.717333pt;}
.h1f{height:46.728000pt;}
.h18{height:46.738667pt;}
.h14{height:46.749333pt;}
.h25{height:46.780800pt;}
.h21{height:46.875200pt;}
.hc{height:55.397333pt;}
.h28{height:59.658667pt;}
.h2{height:72.384000pt;}
.h4{height:82.986667pt;}
.h3{height:85.226667pt;}
.h27{height:89.600000pt;}
.h0{height:850.393333pt;}
.h1{height:850.666667pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:36.461867pt;}
.x1{left:37.795200pt;}
.x6{left:60.472400pt;}
.x5{left:90.708667pt;}
.x3{left:99.128667pt;}
.x8{left:347.716533pt;}
.x7{left:421.417333pt;}
.x2{left:423.307067pt;}
}




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