
    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_53e5a6025554fb0cb6690f70.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_42b1967db63258bb0f275045.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b4593d024f33ccde202564c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.807617;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_e83f82700b121bbf8c067569.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006000;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_eb89f1082c7edda700488af3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_2a1d66ad25e10d7e32319326.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_b7ee7fbca07d21eee825aa21.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.019531;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_c85d9891c2fcc621859c9e53.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007000;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_b71c9a36a6a9f81e9180f963.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922363;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_57c6d2584cf45f1ed3f337f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.009000;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;}
.m1{transform:matrix(0.223511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223511,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.293834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293834,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-7.410000px;}
.ls6{letter-spacing:-2.640000px;}
.ls3{letter-spacing:-0.924000px;}
.ls2{letter-spacing:-0.462000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls4{letter-spacing:3.900000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(99,189,236),0 0.015em rgb(99,189,236),0.015em 0 rgb(99,189,236),0 -0.015em  rgb(99,189,236);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(99,189,236);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-76.830000px;}
.wsd{word-spacing:-72.930000px;}
.ws7{word-spacing:-57.000000px;}
.ws3{word-spacing:-25.380000px;}
.ws8{word-spacing:-23.970000px;}
.wse{word-spacing:-19.572000px;}
.wsb{word-spacing:-16.776000px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:-15.708000px;}
.ws6{word-spacing:-15.246000px;}
.ws5{word-spacing:-14.784000px;}
.ws4{word-spacing:-14.322000px;}
.wsf{word-spacing:-13.068000px;}
.wsc{word-spacing:-3.900000px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:7.410000px;}
._c{margin-left:-1852.470000px;}
._30{margin-left:-1815.450000px;}
._2e{margin-left:-1762.020000px;}
._24{margin-left:-1739.100000px;}
._32{margin-left:-1638.001800px;}
._36{margin-left:-1610.341200px;}
._23{margin-left:-1525.260000px;}
._d{margin-left:-1494.696000px;}
._25{margin-left:-1480.571400px;}
._28{margin-left:-1475.328000px;}
._27{margin-left:-1313.166000px;}
._e{margin-left:-1311.720000px;}
._38{margin-left:-1232.963400px;}
._2b{margin-left:-1111.318800px;}
._34{margin-left:-1037.442000px;}
._1a{margin-left:-935.193600px;}
._1b{margin-left:-920.004000px;}
._f{margin-left:-893.394000px;}
._3{margin-left:-670.347000px;}
._1f{margin-left:-633.049800px;}
._29{margin-left:-585.443400px;}
._31{margin-left:-582.145200px;}
._2f{margin-left:-578.951400px;}
._15{margin-left:-573.864000px;}
._2a{margin-left:-569.244600px;}
._12{margin-left:-534.816000px;}
._33{margin-left:-529.620000px;}
._2d{margin-left:-509.730000px;}
._14{margin-left:-460.152000px;}
._37{margin-left:-444.083400px;}
._13{margin-left:-439.272000px;}
._16{margin-left:-329.274000px;}
._1c{margin-left:-126.636000px;}
._39{margin-left:-28.912200px;}
._35{margin-left:-12.106800px;}
._26{margin-left:-8.778000px;}
._2{margin-left:-7.462800px;}
._7{margin-left:-6.444000px;}
._4{margin-left:-5.280000px;}
._6{margin-left:-3.708600px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.080000px;}
._5{width:1.602000px;}
._9{width:2.659200px;}
._8{width:4.591800px;}
._b{width:6.593400px;}
._22{width:7.717200px;}
._17{width:8.788800px;}
._a{width:10.276200px;}
._20{width:11.287800px;}
._1e{width:12.447600px;}
._21{width:13.921200px;}
._2c{width:15.678000px;}
._18{width:17.826600px;}
._1d{width:18.849600px;}
._19{width:20.288400px;}
._3a{width:21.484964px;}
._11{width:24.479400px;}
._10{width:32.234400px;}
.fc1a{color:rgb(35,85,135);}
.fc19{color:rgb(34,86,136);}
.fc17{color:rgb(38,63,123);}
.fc13{color:rgb(33,80,126);}
.fc10{color:rgb(37,88,139);}
.fcf{color:rgb(35,86,137);}
.fc14{color:rgb(89,202,245);}
.fcd{color:rgb(42,99,151);}
.fc0{color:rgb(35,31,32);}
.fc9{color:rgb(255,255,255);}
.fc12{color:rgb(35,88,139);}
.fc11{color:rgb(35,87,134);}
.fce{color:rgb(41,99,160);}
.fc2{color:transparent;}
.fc1c{color:rgb(244,116,56);}
.fc5{color:rgb(80,145,212);}
.fc1b{color:rgb(35,87,137);}
.fc15{color:rgb(99,189,236);}
.fc1{color:rgb(37,66,127);}
.fc3{color:rgb(83,158,220);}
.fc4{color:rgb(83,160,221);}
.fcb{color:rgb(247,141,17);}
.fcc{color:rgb(42,99,152);}
.fc6{color:rgb(82,147,213);}
.fc7{color:rgb(80,159,208);}
.fca{color:rgb(49,93,180);}
.fc18{color:rgb(52,96,182);}
.fc16{color:rgb(59,141,203);}
.fc8{color:rgb(82,148,214);}
.fs3{font-size:0.600000px;}
.fs5{font-size:6.000000px;}
.fs4{font-size:66.000000px;}
.fsc{font-size:67.018160px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs7{font-size:102.000000px;}
.fs0{font-size:108.000000px;}
.fsb{font-size:114.000000px;}
.fs6{font-size:228.000000px;}
.fs8{font-size:390.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:48.111000px;}
.ybb{bottom:56.614800px;}
.y25{bottom:104.613600px;}
.y24{bottom:124.413600px;}
.y161{bottom:138.093600px;}
.y89{bottom:148.181700px;}
.yce{bottom:148.666800px;}
.y23{bottom:155.013450px;}
.y1c3{bottom:155.816850px;}
.y160{bottom:159.693600px;}
.y108{bottom:167.942400px;}
.y88{bottom:167.981700px;}
.ycd{bottom:170.266800px;}
.y119{bottom:174.632250px;}
.y1c2{bottom:175.616850px;}
.y184{bottom:179.662050px;}
.y13a{bottom:180.188100px;}
.y15f{bottom:181.293600px;}
.y107{bottom:189.542400px;}
.y22{bottom:191.013450px;}
.ycc{bottom:191.866800px;}
.y1c1{bottom:195.416850px;}
.y118{bottom:196.232250px;}
.y1a3{bottom:200.360100px;}
.y91{bottom:200.444850px;}
.y139{bottom:201.788100px;}
.ye7{bottom:202.298400px;}
.y15e{bottom:202.893600px;}
.y77{bottom:204.443850px;}
.y183{bottom:204.862050px;}
.y21{bottom:210.813600px;}
.y106{bottom:211.142400px;}
.ycb{bottom:213.466800px;}
.y1c0{bottom:215.216850px;}
.y117{bottom:217.832250px;}
.y17e{bottom:219.432150px;}
.y90{bottom:220.244700px;}
.y1a2{bottom:221.960100px;}
.y138{bottom:223.388100px;}
.ye6{bottom:223.898400px;}
.y76{bottom:224.243850px;}
.y15d{bottom:224.493600px;}
.y182{bottom:230.062050px;}
.y105{bottom:232.742550px;}
.y14e{bottom:234.868350px;}
.yca{bottom:235.066800px;}
.yf3{bottom:237.589650px;}
.y116{bottom:239.432250px;}
.y8f{bottom:240.044700px;}
.y20{bottom:241.413600px;}
.y1a1{bottom:243.560100px;}
.y75{bottom:244.043850px;}
.y17d{bottom:244.632000px;}
.y137{bottom:244.988100px;}
.ye5{bottom:245.498400px;}
.y15c{bottom:246.093600px;}
.y12c{bottom:251.904600px;}
.y104{bottom:254.342400px;}
.y1bf{bottom:254.816850px;}
.y181{bottom:255.262050px;}
.y14d{bottom:256.468350px;}
.y1d8{bottom:258.767550px;}
.yf2{bottom:259.189650px;}
.y8e{bottom:259.844700px;}
.y115{bottom:261.032250px;}
.y1f{bottom:261.213600px;}
.y74{bottom:263.843850px;}
.y1a0{bottom:265.160100px;}
.ye4{bottom:267.098400px;}
.y15b{bottom:267.693600px;}
.y17c{bottom:269.832000px;}
.y1b5{bottom:272.260500px;}
.y12b{bottom:273.504600px;}
.y1be{bottom:274.616850px;}
.y103{bottom:275.942400px;}
.y14c{bottom:278.068350px;}
.y1d7{bottom:278.567550px;}
.y8d{bottom:279.644700px;}
.y180{bottom:280.462050px;}
.yf1{bottom:280.789650px;}
.yc9{bottom:282.139200px;}
.y114{bottom:282.632250px;}
.y73{bottom:283.643850px;}
.y19f{bottom:286.760100px;}
.ye3{bottom:288.698400px;}
.y15a{bottom:289.293600px;}
.y1e{bottom:291.813600px;}
.y1b4{bottom:292.060500px;}
.y1bd{bottom:294.416850px;}
.y17b{bottom:295.032000px;}
.y12a{bottom:295.104750px;}
.y102{bottom:297.542400px;}
.y1d6{bottom:298.367550px;}
.y8c{bottom:299.444850px;}
.y14b{bottom:299.668350px;}
.yf0{bottom:302.389650px;}
.yc8{bottom:303.739200px;}
.y113{bottom:304.232250px;}
.y17f{bottom:305.662050px;}
.y19e{bottom:308.360100px;}
.ye2{bottom:310.298400px;}
.y159{bottom:310.893600px;}
.y1d{bottom:311.613600px;}
.y1b3{bottom:311.860500px;}
.yba{bottom:313.291950px;}
.y129{bottom:316.704600px;}
.y1d5{bottom:318.167700px;}
.y1ea{bottom:318.337650px;}
.y101{bottom:319.142400px;}
.y8b{bottom:319.244850px;}
.y14a{bottom:321.268350px;}
.y72{bottom:323.243850px;}
.y136{bottom:323.411700px;}
.y112{bottom:325.832250px;}
.y19d{bottom:329.960100px;}
.y1c{bottom:331.413600px;}
.y1b2{bottom:331.660500px;}
.ye1{bottom:331.898400px;}
.yb9{bottom:333.091950px;}
.y33{bottom:337.840050px;}
.y1d4{bottom:337.967550px;}
.y128{bottom:338.304600px;}
.y8a{bottom:339.044850px;}
.y100{bottom:340.742550px;}
.y149{bottom:342.868350px;}
.y71{bottom:343.043850px;}
.y135{bottom:343.211700px;}
.yc7{bottom:346.939200px;}
.y111{bottom:347.432250px;}
.y1b{bottom:351.213600px;}
.y1b1{bottom:351.460500px;}
.y19c{bottom:351.560100px;}
.yb8{bottom:352.892100px;}
.ye0{bottom:353.498400px;}
.y32{bottom:357.640050px;}
.y1d3{bottom:357.767550px;}
.y1e9{bottom:357.937650px;}
.y127{bottom:359.904600px;}
.yff{bottom:362.342400px;}
.y70{bottom:362.843850px;}
.y134{bottom:363.011700px;}
.y148{bottom:364.468350px;}
.y158{bottom:366.239700px;}
.yc6{bottom:368.539200px;}
.y110{bottom:369.032250px;}
.y1a{bottom:371.013450px;}
.y17a{bottom:371.028900px;}
.y1b0{bottom:371.260500px;}
.yef{bottom:372.621150px;}
.yb7{bottom:372.691950px;}
.y19b{bottom:373.160100px;}
.ydf{bottom:375.098400px;}
.y31{bottom:377.440050px;}
.y1e8{bottom:377.737650px;}
.y126{bottom:381.504600px;}
.yfe{bottom:383.942400px;}
.y157{bottom:386.039700px;}
.y147{bottom:386.068350px;}
.yc5{bottom:390.139200px;}
.y10f{bottom:390.632250px;}
.y19{bottom:390.813600px;}
.y1af{bottom:391.060500px;}
.yee{bottom:392.421150px;}
.yb6{bottom:392.491950px;}
.y179{bottom:396.228900px;}
.yde{bottom:396.698400px;}
.y30{bottom:397.240050px;}
.y1d2{bottom:397.367550px;}
.y1e7{bottom:397.537650px;}
.y47{bottom:400.329900px;}
.y66{bottom:402.419100px;}
.y133{bottom:402.611700px;}
.y125{bottom:403.104750px;}
.yfd{bottom:405.542400px;}
.y156{bottom:405.839700px;}
.y146{bottom:407.668350px;}
.yc4{bottom:411.739200px;}
.yed{bottom:412.221150px;}
.y10e{bottom:412.232250px;}
.yb5{bottom:412.291950px;}
.y19a{bottom:416.360100px;}
.y1d1{bottom:417.167700px;}
.ydd{bottom:418.298400px;}
.y46{bottom:420.129900px;}
.y18{bottom:421.413600px;}
.y65{bottom:422.219100px;}
.y132{bottom:422.411700px;}
.y124{bottom:424.704600px;}
.y178{bottom:425.028900px;}
.y155{bottom:425.639700px;}
.yfc{bottom:427.142550px;}
.y145{bottom:429.268500px;}
.yec{bottom:432.021150px;}
.yb4{bottom:432.091950px;}
.yc3{bottom:433.339200px;}
.y2f{bottom:436.840050px;}
.y1d0{bottom:436.967550px;}
.y1e6{bottom:437.137650px;}
.ydc{bottom:439.898400px;}
.y45{bottom:439.929900px;}
.y87{bottom:440.596050px;}
.y17{bottom:441.213600px;}
.y131{bottom:442.211700px;}
.y154{bottom:445.439700px;}
.y123{bottom:446.304600px;}
.y6f{bottom:446.802150px;}
.y191{bottom:448.122600px;}
.yfb{bottom:448.742550px;}
.y177{bottom:450.228900px;}
.y144{bottom:450.868350px;}
.yeb{bottom:451.821150px;}
.yb3{bottom:451.892100px;}
.y9c{bottom:453.069150px;}
.yc2{bottom:454.939200px;}
.y176{bottom:455.770650px;}
.y2e{bottom:456.640050px;}
.y1cf{bottom:456.767550px;}
.y1e5{bottom:456.937650px;}
.y199{bottom:459.560100px;}
.y44{bottom:459.729900px;}
.y86{bottom:460.396050px;}
.y16{bottom:461.013450px;}
.ydb{bottom:461.498400px;}
.y130{bottom:462.011700px;}
.y153{bottom:465.239700px;}
.y122{bottom:467.904600px;}
.y190{bottom:467.922750px;}
.yfa{bottom:470.342400px;}
.y10d{bottom:471.309300px;}
.ybc{bottom:471.691950px;}
.y5c{bottom:472.441350px;}
.y143{bottom:472.468350px;}
.y9b{bottom:472.869150px;}
.y6e{bottom:473.632950px;}
.y2d{bottom:476.440050px;}
.yc1{bottom:476.539350px;}
.y1ce{bottom:476.567550px;}
.y1e4{bottom:476.737650px;}
.y43{bottom:479.529900px;}
.y85{bottom:480.195900px;}
.y15{bottom:480.813600px;}
.y175{bottom:480.970650px;}
.y198{bottom:481.160100px;}
.y12f{bottom:481.811700px;}
.yda{bottom:483.098400px;}
.y1bc{bottom:485.039700px;}
.y121{bottom:489.504750px;}
.y10c{bottom:491.109300px;}
.yea{bottom:491.421150px;}
.yb2{bottom:491.491950px;}
.y5b{bottom:492.241350px;}
.y9a{bottom:492.669150px;}
.y6d{bottom:493.432950px;}
.y5a{bottom:494.900250px;}
.y2c{bottom:496.240050px;}
.y1cd{bottom:496.367550px;}
.yc0{bottom:498.139350px;}
.y42{bottom:499.329900px;}
.y84{bottom:499.996050px;}
.y14{bottom:500.613600px;}
.y12e{bottom:501.611700px;}
.y152{bottom:504.839700px;}
.y174{bottom:506.170650px;}
.y1ae{bottom:510.101550px;}
.y10b{bottom:510.909450px;}
.y120{bottom:511.104750px;}
.ye9{bottom:511.221150px;}
.yb1{bottom:511.291950px;}
.y99{bottom:512.469150px;}
.y6c{bottom:513.232950px;}
.y59{bottom:514.700250px;}
.y2b{bottom:516.040050px;}
.y1cc{bottom:516.167700px;}
.y1e3{bottom:516.337650px;}
.y4d{bottom:516.742650px;}
.y41{bottom:519.129900px;}
.y83{bottom:519.795900px;}
.y13{bottom:520.413600px;}
.y197{bottom:524.360100px;}
.y18f{bottom:524.597550px;}
.y151{bottom:524.639700px;}
.yd9{bottom:529.209000px;}
.y1ad{bottom:529.901550px;}
.y10a{bottom:530.709300px;}
.ye8{bottom:531.021150px;}
.yb0{bottom:531.091950px;}
.y173{bottom:531.370650px;}
.y98{bottom:532.269150px;}
.y11f{bottom:532.704600px;}
.y6b{bottom:533.032950px;}
.y1e2{bottom:536.137650px;}
.y4c{bottom:536.542650px;}
.y5f{bottom:537.392400px;}
.y40{bottom:538.929900px;}
.y82{bottom:539.596050px;}
.ybf{bottom:541.339350px;}
.y142{bottom:541.466850px;}
.y150{bottom:544.439700px;}
.y196{bottom:545.960100px;}
.y18e{bottom:546.197550px;}
.y1ac{bottom:549.701550px;}
.y109{bottom:550.509450px;}
.yd8{bottom:550.809000px;}
.yaf{bottom:550.892100px;}
.y12{bottom:551.013450px;}
.y6a{bottom:552.832950px;}
.y58{bottom:554.300250px;}
.y172{bottom:555.114300px;}
.y168{bottom:555.462900px;}
.y2a{bottom:555.640050px;}
.y1cb{bottom:555.767550px;}
.y4b{bottom:556.342650px;}
.y5e{bottom:557.192400px;}
.y3f{bottom:558.729900px;}
.y81{bottom:559.396050px;}
.y12d{bottom:559.604850px;}
.ybe{bottom:561.139350px;}
.y141{bottom:561.266850px;}
.ya5{bottom:562.762650px;}
.y4{bottom:563.743050px;}
.y14f{bottom:564.239700px;}
.y195{bottom:567.560100px;}
.y18d{bottom:567.797550px;}
.y13d{bottom:568.989300px;}
.y1ab{bottom:569.501550px;}
.yae{bottom:570.691950px;}
.y11{bottom:570.813600px;}
.yf9{bottom:571.011000px;}
.yd7{bottom:572.409000px;}
.y69{bottom:572.632950px;}
.y57{bottom:574.100250px;}
.y167{bottom:575.262900px;}
.y29{bottom:575.440050px;}
.y1ca{bottom:575.567550px;}
.y1e1{bottom:575.737650px;}
.y4a{bottom:576.142650px;}
.y5d{bottom:576.992400px;}
.y3e{bottom:578.529900px;}
.y80{bottom:579.195900px;}
.y171{bottom:580.314450px;}
.y140{bottom:581.066850px;}
.y3{bottom:587.142900px;}
.y194{bottom:589.160100px;}
.y1aa{bottom:589.301550px;}
.y18c{bottom:589.397550px;}
.yad{bottom:590.491950px;}
.yf8{bottom:590.811000px;}
.y68{bottom:592.432950px;}
.y56{bottom:593.900250px;}
.y166{bottom:595.062900px;}
.y28{bottom:595.240050px;}
.y1c9{bottom:595.367550px;}
.y1e0{bottom:595.537650px;}
.y49{bottom:595.942650px;}
.y13c{bottom:595.989300px;}
.y3d{bottom:598.329900px;}
.y11e{bottom:598.606200px;}
.yd2{bottom:598.823850px;}
.y11b{bottom:598.824000px;}
.y7f{bottom:598.996050px;}
.yf5{bottom:600.241200px;}
.y13f{bottom:600.866850px;}
.y10{bottom:601.413600px;}
.y163{bottom:601.481400px;}
.y170{bottom:605.514300px;}
.y1a9{bottom:609.101550px;}
.y2{bottom:610.543050px;}
.yf7{bottom:610.610850px;}
.y193{bottom:610.760100px;}
.y67{bottom:612.232950px;}
.y55{bottom:613.700250px;}
.y165{bottom:614.862900px;}
.y27{bottom:615.040050px;}
.y1c8{bottom:615.167700px;}
.y1df{bottom:615.337650px;}
.yd6{bottom:615.608850px;}
.y48{bottom:615.742650px;}
.ya1{bottom:617.336100px;}
.y3c{bottom:618.129900px;}
.y11d{bottom:618.406200px;}
.y7e{bottom:618.795900px;}
.y13e{bottom:620.666850px;}
.yf{bottom:621.213600px;}
.y13b{bottom:622.989300px;}
.yd1{bottom:625.823850px;}
.y11a{bottom:625.824000px;}
.yf4{bottom:627.241200px;}
.y162{bottom:628.481400px;}
.y1a8{bottom:628.901550px;}
.yac{bottom:630.091950px;}
.yf6{bottom:630.411000px;}
.ya4{bottom:631.162650px;}
.y16b{bottom:631.163400px;}
.y192{bottom:632.360100px;}
.y1{bottom:633.943050px;}
.y164{bottom:634.662900px;}
.y26{bottom:634.840050px;}
.y1bb{bottom:634.851900px;}
.y1c7{bottom:634.967550px;}
.y1de{bottom:635.137650px;}
.ya0{bottom:637.136100px;}
.yd5{bottom:637.209000px;}
.y3b{bottom:637.929900px;}
.y11c{bottom:638.206200px;}
.y7d{bottom:638.596050px;}
.ye{bottom:641.013450px;}
.y96{bottom:647.766150px;}
.y1a7{bottom:648.701550px;}
.yd0{bottom:649.604850px;}
.yab{bottom:649.892100px;}
.y54{bottom:653.300250px;}
.y18b{bottom:653.874600px;}
.y1ba{bottom:654.651900px;}
.y1c6{bottom:654.767550px;}
.y9f{bottom:656.936100px;}
.y3a{bottom:657.729900px;}
.y7c{bottom:658.396050px;}
.yd4{bottom:658.809000px;}
.y63{bottom:659.001150px;}
.yd{bottom:660.813600px;}
.y95{bottom:667.566000px;}
.y1a6{bottom:668.501550px;}
.yaa{bottom:669.691950px;}
.y53{bottom:673.100250px;}
.y50{bottom:673.100400px;}
.y18a{bottom:673.674750px;}
.y1b9{bottom:674.451900px;}
.y1c5{bottom:674.567550px;}
.y1dd{bottom:674.737650px;}
.y16f{bottom:676.069950px;}
.y39{bottom:677.529900px;}
.y7b{bottom:678.195900px;}
.y62{bottom:678.801150px;}
.yd3{bottom:680.409000px;}
.yc{bottom:680.613600px;}
.y94{bottom:687.366000px;}
.ya9{bottom:689.491950px;}
.y52{bottom:692.900250px;}
.y4f{bottom:692.900400px;}
.y189{bottom:693.474750px;}
.y1b8{bottom:694.251900px;}
.y1c4{bottom:694.367550px;}
.y1dc{bottom:694.537650px;}
.y16e{bottom:695.869950px;}
.y9e{bottom:696.536100px;}
.y38{bottom:697.329900px;}
.y7a{bottom:697.996050px;}
.y61{bottom:698.601150px;}
.ya3{bottom:699.562650px;}
.y16a{bottom:699.563400px;}
.yb{bottom:700.413600px;}
.y93{bottom:707.166000px;}
.ya8{bottom:709.291950px;}
.y188{bottom:713.274600px;}
.y1b7{bottom:714.051900px;}
.y1db{bottom:714.337650px;}
.y16d{bottom:715.669950px;}
.y9d{bottom:716.336100px;}
.y37{bottom:717.129900px;}
.y79{bottom:717.795900px;}
.y60{bottom:718.401150px;}
.y1a5{bottom:718.622100px;}
.ya{bottom:720.213000px;}
.y92{bottom:726.966000px;}
.ya7{bottom:729.091950px;}
.y187{bottom:733.074750px;}
.y1b6{bottom:733.851900px;}
.y1da{bottom:734.137650px;}
.y16c{bottom:735.469950px;}
.y36{bottom:736.929900px;}
.y78{bottom:737.596050px;}
.ycf{bottom:739.604850px;}
.y9{bottom:750.813600px;}
.y4e{bottom:750.833100px;}
.y51{bottom:750.833550px;}
.y1a4{bottom:752.821950px;}
.y186{bottom:752.874600px;}
.y35{bottom:756.729900px;}
.ybd{bottom:766.424250px;}
.y97{bottom:767.150400px;}
.ya2{bottom:767.962650px;}
.y169{bottom:767.963400px;}
.ya6{bottom:768.618750px;}
.y8{bottom:770.613600px;}
.y185{bottom:772.674750px;}
.y1d9{bottom:773.737650px;}
.y64{bottom:779.888550px;}
.y7{bottom:790.413600px;}
.y6{bottom:820.087800px;}
.y5{bottom:820.267800px;}
.h5{height:0.410156px;}
.h4{height:49.218750px;}
.hd{height:49.632000px;}
.h7{height:49.830000px;}
.h14{height:50.598711px;}
.ha{height:50.622000px;}
.h6{height:52.382812px;}
.h8{height:52.385212px;}
.he{height:54.360000px;}
.hf{height:54.576000px;}
.h3{height:59.124000px;}
.h12{height:63.672000px;}
.h11{height:69.390000px;}
.hc{height:77.112000px;}
.h9{height:81.648000px;}
.h2{height:81.864000px;}
.h13{height:86.184000px;}
.hb{height:200.390625px;}
.h10{height:355.722656px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x3d{left:68.031450px;}
.x49{left:76.535400px;}
.x1a{left:80.787450px;}
.x13{left:85.039350px;}
.x26{left:87.236250px;}
.x19{left:89.645700px;}
.x3{left:93.543300px;}
.x2a{left:95.669250px;}
.x25{left:98.858250px;}
.x2d{left:100.629900px;}
.x3a{left:102.047250px;}
.x3c{left:103.110300px;}
.x27{left:105.200850px;}
.x1c{left:106.299150px;}
.x2b{left:110.551200px;}
.x34{left:112.677150px;}
.x22{left:117.992100px;}
.x23{left:124.724400px;}
.x4c{left:133.641600px;}
.x1{left:149.135850px;}
.x45{left:151.766700px;}
.x24{left:153.070800px;}
.x28{left:155.196900px;}
.x1f{left:158.031450px;}
.x2e{left:159.448800px;}
.x46{left:161.172900px;}
.x44{left:164.767350px;}
.x16{left:168.119100px;}
.x20{left:170.078700px;}
.x18{left:179.323950px;}
.x4e{left:183.850350px;}
.x15{left:185.090100px;}
.x1d{left:199.405800px;}
.x4d{left:213.674100px;}
.x51{left:214.954050px;}
.x3f{left:219.792300px;}
.x2c{left:221.102400px;}
.xe{left:224.581650px;}
.x40{left:227.562150px;}
.x17{left:229.288350px;}
.x8{left:231.510150px;}
.x14{left:232.674750px;}
.xc{left:234.430650px;}
.x41{left:241.437900px;}
.x4b{left:243.382200px;}
.x10{left:244.627050px;}
.x3e{left:245.976900px;}
.x11{left:250.848150px;}
.xd{left:252.728550px;}
.xb{left:256.359300px;}
.xa{left:258.454350px;}
.x5{left:261.128400px;}
.x7{left:267.562350px;}
.x9{left:270.795750px;}
.x6{left:274.854900px;}
.xf{left:281.355750px;}
.x43{left:289.470300px;}
.x1b{left:293.722350px;}
.x53{left:297.974250px;}
.x50{left:299.711700px;}
.x2f{left:301.163250px;}
.x29{left:304.281300px;}
.x3b{left:305.415300px;}
.x21{left:306.832650px;}
.x4{left:310.561950px;}
.x1e{left:319.234200px;}
.x48{left:327.738000px;}
.x31{left:330.055650px;}
.x30{left:331.776600px;}
.x38{left:338.917500px;}
.x39{left:350.593800px;}
.x37{left:375.394500px;}
.x4f{left:383.622450px;}
.x32{left:394.733400px;}
.x36{left:396.057150px;}
.x35{left:434.571150px;}
.x42{left:443.412900px;}
.x33{left:445.489950px;}
.x52{left:455.573400px;}
.x4a{left:472.782900px;}
.x12{left:491.465400px;}
.x47{left:508.311600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-6.586667pt;}
.ls6{letter-spacing:-2.346667pt;}
.ls3{letter-spacing:-0.821333pt;}
.ls2{letter-spacing:-0.410667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls4{letter-spacing:3.466667pt;}
.ws9{word-spacing:-68.293333pt;}
.wsd{word-spacing:-64.826667pt;}
.ws7{word-spacing:-50.666667pt;}
.ws3{word-spacing:-22.560000pt;}
.ws8{word-spacing:-21.306667pt;}
.wse{word-spacing:-17.397333pt;}
.wsb{word-spacing:-14.912000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:-13.962667pt;}
.ws6{word-spacing:-13.552000pt;}
.ws5{word-spacing:-13.141333pt;}
.ws4{word-spacing:-12.730667pt;}
.wsf{word-spacing:-11.616000pt;}
.wsc{word-spacing:-3.466667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:6.586667pt;}
._c{margin-left:-1646.640000pt;}
._30{margin-left:-1613.733333pt;}
._2e{margin-left:-1566.240000pt;}
._24{margin-left:-1545.866667pt;}
._32{margin-left:-1456.001600pt;}
._36{margin-left:-1431.414400pt;}
._23{margin-left:-1355.786667pt;}
._d{margin-left:-1328.618667pt;}
._25{margin-left:-1316.063467pt;}
._28{margin-left:-1311.402667pt;}
._27{margin-left:-1167.258667pt;}
._e{margin-left:-1165.973333pt;}
._38{margin-left:-1095.967467pt;}
._2b{margin-left:-987.838933pt;}
._34{margin-left:-922.170667pt;}
._1a{margin-left:-831.283200pt;}
._1b{margin-left:-817.781333pt;}
._f{margin-left:-794.128000pt;}
._3{margin-left:-595.864000pt;}
._1f{margin-left:-562.710933pt;}
._29{margin-left:-520.394133pt;}
._31{margin-left:-517.462400pt;}
._2f{margin-left:-514.623467pt;}
._15{margin-left:-510.101333pt;}
._2a{margin-left:-505.995200pt;}
._12{margin-left:-475.392000pt;}
._33{margin-left:-470.773333pt;}
._2d{margin-left:-453.093333pt;}
._14{margin-left:-409.024000pt;}
._37{margin-left:-394.740800pt;}
._13{margin-left:-390.464000pt;}
._16{margin-left:-292.688000pt;}
._1c{margin-left:-112.565333pt;}
._39{margin-left:-25.699733pt;}
._35{margin-left:-10.761600pt;}
._26{margin-left:-7.802667pt;}
._2{margin-left:-6.633600pt;}
._7{margin-left:-5.728000pt;}
._4{margin-left:-4.693333pt;}
._6{margin-left:-3.296533pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-0.960000pt;}
._5{width:1.424000pt;}
._9{width:2.363733pt;}
._8{width:4.081600pt;}
._b{width:5.860800pt;}
._22{width:6.859733pt;}
._17{width:7.812267pt;}
._a{width:9.134400pt;}
._20{width:10.033600pt;}
._1e{width:11.064533pt;}
._21{width:12.374400pt;}
._2c{width:13.936000pt;}
._18{width:15.845867pt;}
._1d{width:16.755200pt;}
._19{width:18.034133pt;}
._3a{width:19.097745pt;}
._11{width:21.759467pt;}
._10{width:28.652800pt;}
.fs3{font-size:0.533333pt;}
.fs5{font-size:5.333333pt;}
.fs4{font-size:58.666667pt;}
.fsc{font-size:59.571698pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs7{font-size:90.666667pt;}
.fs0{font-size:96.000000pt;}
.fsb{font-size:101.333333pt;}
.fs6{font-size:202.666667pt;}
.fs8{font-size:346.666667pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:42.765333pt;}
.ybb{bottom:50.324267pt;}
.y25{bottom:92.989867pt;}
.y24{bottom:110.589867pt;}
.y161{bottom:122.749867pt;}
.y89{bottom:131.717067pt;}
.yce{bottom:132.148267pt;}
.y23{bottom:137.789733pt;}
.y1c3{bottom:138.503867pt;}
.y160{bottom:141.949867pt;}
.y108{bottom:149.282133pt;}
.y88{bottom:149.317067pt;}
.ycd{bottom:151.348267pt;}
.y119{bottom:155.228667pt;}
.y1c2{bottom:156.103867pt;}
.y184{bottom:159.699600pt;}
.y13a{bottom:160.167200pt;}
.y15f{bottom:161.149867pt;}
.y107{bottom:168.482133pt;}
.y22{bottom:169.789733pt;}
.ycc{bottom:170.548267pt;}
.y1c1{bottom:173.703867pt;}
.y118{bottom:174.428667pt;}
.y1a3{bottom:178.097867pt;}
.y91{bottom:178.173200pt;}
.y139{bottom:179.367200pt;}
.ye7{bottom:179.820800pt;}
.y15e{bottom:180.349867pt;}
.y77{bottom:181.727867pt;}
.y183{bottom:182.099600pt;}
.y21{bottom:187.389867pt;}
.y106{bottom:187.682133pt;}
.ycb{bottom:189.748267pt;}
.y1c0{bottom:191.303867pt;}
.y117{bottom:193.628667pt;}
.y17e{bottom:195.050800pt;}
.y90{bottom:195.773067pt;}
.y1a2{bottom:197.297867pt;}
.y138{bottom:198.567200pt;}
.ye6{bottom:199.020800pt;}
.y76{bottom:199.327867pt;}
.y15d{bottom:199.549867pt;}
.y182{bottom:204.499600pt;}
.y105{bottom:206.882267pt;}
.y14e{bottom:208.771867pt;}
.yca{bottom:208.948267pt;}
.yf3{bottom:211.190800pt;}
.y116{bottom:212.828667pt;}
.y8f{bottom:213.373067pt;}
.y20{bottom:214.589867pt;}
.y1a1{bottom:216.497867pt;}
.y75{bottom:216.927867pt;}
.y17d{bottom:217.450667pt;}
.y137{bottom:217.767200pt;}
.ye5{bottom:218.220800pt;}
.y15c{bottom:218.749867pt;}
.y12c{bottom:223.915200pt;}
.y104{bottom:226.082133pt;}
.y1bf{bottom:226.503867pt;}
.y181{bottom:226.899600pt;}
.y14d{bottom:227.971867pt;}
.y1d8{bottom:230.015600pt;}
.yf2{bottom:230.390800pt;}
.y8e{bottom:230.973067pt;}
.y115{bottom:232.028667pt;}
.y1f{bottom:232.189867pt;}
.y74{bottom:234.527867pt;}
.y1a0{bottom:235.697867pt;}
.ye4{bottom:237.420800pt;}
.y15b{bottom:237.949867pt;}
.y17c{bottom:239.850667pt;}
.y1b5{bottom:242.009333pt;}
.y12b{bottom:243.115200pt;}
.y1be{bottom:244.103867pt;}
.y103{bottom:245.282133pt;}
.y14c{bottom:247.171867pt;}
.y1d7{bottom:247.615600pt;}
.y8d{bottom:248.573067pt;}
.y180{bottom:249.299600pt;}
.yf1{bottom:249.590800pt;}
.yc9{bottom:250.790400pt;}
.y114{bottom:251.228667pt;}
.y73{bottom:252.127867pt;}
.y19f{bottom:254.897867pt;}
.ye3{bottom:256.620800pt;}
.y15a{bottom:257.149867pt;}
.y1e{bottom:259.389867pt;}
.y1b4{bottom:259.609333pt;}
.y1bd{bottom:261.703867pt;}
.y17b{bottom:262.250667pt;}
.y12a{bottom:262.315333pt;}
.y102{bottom:264.482133pt;}
.y1d6{bottom:265.215600pt;}
.y8c{bottom:266.173200pt;}
.y14b{bottom:266.371867pt;}
.yf0{bottom:268.790800pt;}
.yc8{bottom:269.990400pt;}
.y113{bottom:270.428667pt;}
.y17f{bottom:271.699600pt;}
.y19e{bottom:274.097867pt;}
.ye2{bottom:275.820800pt;}
.y159{bottom:276.349867pt;}
.y1d{bottom:276.989867pt;}
.y1b3{bottom:277.209333pt;}
.yba{bottom:278.481733pt;}
.y129{bottom:281.515200pt;}
.y1d5{bottom:282.815733pt;}
.y1ea{bottom:282.966800pt;}
.y101{bottom:283.682133pt;}
.y8b{bottom:283.773200pt;}
.y14a{bottom:285.571867pt;}
.y72{bottom:287.327867pt;}
.y136{bottom:287.477067pt;}
.y112{bottom:289.628667pt;}
.y19d{bottom:293.297867pt;}
.y1c{bottom:294.589867pt;}
.y1b2{bottom:294.809333pt;}
.ye1{bottom:295.020800pt;}
.yb9{bottom:296.081733pt;}
.y33{bottom:300.302267pt;}
.y1d4{bottom:300.415600pt;}
.y128{bottom:300.715200pt;}
.y8a{bottom:301.373200pt;}
.y100{bottom:302.882267pt;}
.y149{bottom:304.771867pt;}
.y71{bottom:304.927867pt;}
.y135{bottom:305.077067pt;}
.yc7{bottom:308.390400pt;}
.y111{bottom:308.828667pt;}
.y1b{bottom:312.189867pt;}
.y1b1{bottom:312.409333pt;}
.y19c{bottom:312.497867pt;}
.yb8{bottom:313.681867pt;}
.ye0{bottom:314.220800pt;}
.y32{bottom:317.902267pt;}
.y1d3{bottom:318.015600pt;}
.y1e9{bottom:318.166800pt;}
.y127{bottom:319.915200pt;}
.yff{bottom:322.082133pt;}
.y70{bottom:322.527867pt;}
.y134{bottom:322.677067pt;}
.y148{bottom:323.971867pt;}
.y158{bottom:325.546400pt;}
.yc6{bottom:327.590400pt;}
.y110{bottom:328.028667pt;}
.y1a{bottom:329.789733pt;}
.y17a{bottom:329.803467pt;}
.y1b0{bottom:330.009333pt;}
.yef{bottom:331.218800pt;}
.yb7{bottom:331.281733pt;}
.y19b{bottom:331.697867pt;}
.ydf{bottom:333.420800pt;}
.y31{bottom:335.502267pt;}
.y1e8{bottom:335.766800pt;}
.y126{bottom:339.115200pt;}
.yfe{bottom:341.282133pt;}
.y157{bottom:343.146400pt;}
.y147{bottom:343.171867pt;}
.yc5{bottom:346.790400pt;}
.y10f{bottom:347.228667pt;}
.y19{bottom:347.389867pt;}
.y1af{bottom:347.609333pt;}
.yee{bottom:348.818800pt;}
.yb6{bottom:348.881733pt;}
.y179{bottom:352.203467pt;}
.yde{bottom:352.620800pt;}
.y30{bottom:353.102267pt;}
.y1d2{bottom:353.215600pt;}
.y1e7{bottom:353.366800pt;}
.y47{bottom:355.848800pt;}
.y66{bottom:357.705867pt;}
.y133{bottom:357.877067pt;}
.y125{bottom:358.315333pt;}
.yfd{bottom:360.482133pt;}
.y156{bottom:360.746400pt;}
.y146{bottom:362.371867pt;}
.yc4{bottom:365.990400pt;}
.yed{bottom:366.418800pt;}
.y10e{bottom:366.428667pt;}
.yb5{bottom:366.481733pt;}
.y19a{bottom:370.097867pt;}
.y1d1{bottom:370.815733pt;}
.ydd{bottom:371.820800pt;}
.y46{bottom:373.448800pt;}
.y18{bottom:374.589867pt;}
.y65{bottom:375.305867pt;}
.y132{bottom:375.477067pt;}
.y124{bottom:377.515200pt;}
.y178{bottom:377.803467pt;}
.y155{bottom:378.346400pt;}
.yfc{bottom:379.682267pt;}
.y145{bottom:381.572000pt;}
.yec{bottom:384.018800pt;}
.yb4{bottom:384.081733pt;}
.yc3{bottom:385.190400pt;}
.y2f{bottom:388.302267pt;}
.y1d0{bottom:388.415600pt;}
.y1e6{bottom:388.566800pt;}
.ydc{bottom:391.020800pt;}
.y45{bottom:391.048800pt;}
.y87{bottom:391.640933pt;}
.y17{bottom:392.189867pt;}
.y131{bottom:393.077067pt;}
.y154{bottom:395.946400pt;}
.y123{bottom:396.715200pt;}
.y6f{bottom:397.157467pt;}
.y191{bottom:398.331200pt;}
.yfb{bottom:398.882267pt;}
.y177{bottom:400.203467pt;}
.y144{bottom:400.771867pt;}
.yeb{bottom:401.618800pt;}
.yb3{bottom:401.681867pt;}
.y9c{bottom:402.728133pt;}
.yc2{bottom:404.390400pt;}
.y176{bottom:405.129467pt;}
.y2e{bottom:405.902267pt;}
.y1cf{bottom:406.015600pt;}
.y1e5{bottom:406.166800pt;}
.y199{bottom:408.497867pt;}
.y44{bottom:408.648800pt;}
.y86{bottom:409.240933pt;}
.y16{bottom:409.789733pt;}
.ydb{bottom:410.220800pt;}
.y130{bottom:410.677067pt;}
.y153{bottom:413.546400pt;}
.y122{bottom:415.915200pt;}
.y190{bottom:415.931333pt;}
.yfa{bottom:418.082133pt;}
.y10d{bottom:418.941600pt;}
.ybc{bottom:419.281733pt;}
.y5c{bottom:419.947867pt;}
.y143{bottom:419.971867pt;}
.y9b{bottom:420.328133pt;}
.y6e{bottom:421.007067pt;}
.y2d{bottom:423.502267pt;}
.yc1{bottom:423.590533pt;}
.y1ce{bottom:423.615600pt;}
.y1e4{bottom:423.766800pt;}
.y43{bottom:426.248800pt;}
.y85{bottom:426.840800pt;}
.y15{bottom:427.389867pt;}
.y175{bottom:427.529467pt;}
.y198{bottom:427.697867pt;}
.y12f{bottom:428.277067pt;}
.yda{bottom:429.420800pt;}
.y1bc{bottom:431.146400pt;}
.y121{bottom:435.115333pt;}
.y10c{bottom:436.541600pt;}
.yea{bottom:436.818800pt;}
.yb2{bottom:436.881733pt;}
.y5b{bottom:437.547867pt;}
.y9a{bottom:437.928133pt;}
.y6d{bottom:438.607067pt;}
.y5a{bottom:439.911333pt;}
.y2c{bottom:441.102267pt;}
.y1cd{bottom:441.215600pt;}
.yc0{bottom:442.790533pt;}
.y42{bottom:443.848800pt;}
.y84{bottom:444.440933pt;}
.y14{bottom:444.989867pt;}
.y12e{bottom:445.877067pt;}
.y152{bottom:448.746400pt;}
.y174{bottom:449.929467pt;}
.y1ae{bottom:453.423600pt;}
.y10b{bottom:454.141733pt;}
.y120{bottom:454.315333pt;}
.ye9{bottom:454.418800pt;}
.yb1{bottom:454.481733pt;}
.y99{bottom:455.528133pt;}
.y6c{bottom:456.207067pt;}
.y59{bottom:457.511333pt;}
.y2b{bottom:458.702267pt;}
.y1cc{bottom:458.815733pt;}
.y1e3{bottom:458.966800pt;}
.y4d{bottom:459.326800pt;}
.y41{bottom:461.448800pt;}
.y83{bottom:462.040800pt;}
.y13{bottom:462.589867pt;}
.y197{bottom:466.097867pt;}
.y18f{bottom:466.308933pt;}
.y151{bottom:466.346400pt;}
.yd9{bottom:470.408000pt;}
.y1ad{bottom:471.023600pt;}
.y10a{bottom:471.741600pt;}
.ye8{bottom:472.018800pt;}
.yb0{bottom:472.081733pt;}
.y173{bottom:472.329467pt;}
.y98{bottom:473.128133pt;}
.y11f{bottom:473.515200pt;}
.y6b{bottom:473.807067pt;}
.y1e2{bottom:476.566800pt;}
.y4c{bottom:476.926800pt;}
.y5f{bottom:477.682133pt;}
.y40{bottom:479.048800pt;}
.y82{bottom:479.640933pt;}
.ybf{bottom:481.190533pt;}
.y142{bottom:481.303867pt;}
.y150{bottom:483.946400pt;}
.y196{bottom:485.297867pt;}
.y18e{bottom:485.508933pt;}
.y1ac{bottom:488.623600pt;}
.y109{bottom:489.341733pt;}
.yd8{bottom:489.608000pt;}
.yaf{bottom:489.681867pt;}
.y12{bottom:489.789733pt;}
.y6a{bottom:491.407067pt;}
.y58{bottom:492.711333pt;}
.y172{bottom:493.434933pt;}
.y168{bottom:493.744800pt;}
.y2a{bottom:493.902267pt;}
.y1cb{bottom:494.015600pt;}
.y4b{bottom:494.526800pt;}
.y5e{bottom:495.282133pt;}
.y3f{bottom:496.648800pt;}
.y81{bottom:497.240933pt;}
.y12d{bottom:497.426533pt;}
.ybe{bottom:498.790533pt;}
.y141{bottom:498.903867pt;}
.ya5{bottom:500.233467pt;}
.y4{bottom:501.104933pt;}
.y14f{bottom:501.546400pt;}
.y195{bottom:504.497867pt;}
.y18d{bottom:504.708933pt;}
.y13d{bottom:505.768267pt;}
.y1ab{bottom:506.223600pt;}
.yae{bottom:507.281733pt;}
.y11{bottom:507.389867pt;}
.yf9{bottom:507.565333pt;}
.yd7{bottom:508.808000pt;}
.y69{bottom:509.007067pt;}
.y57{bottom:510.311333pt;}
.y167{bottom:511.344800pt;}
.y29{bottom:511.502267pt;}
.y1ca{bottom:511.615600pt;}
.y1e1{bottom:511.766800pt;}
.y4a{bottom:512.126800pt;}
.y5d{bottom:512.882133pt;}
.y3e{bottom:514.248800pt;}
.y80{bottom:514.840800pt;}
.y171{bottom:515.835067pt;}
.y140{bottom:516.503867pt;}
.y3{bottom:521.904800pt;}
.y194{bottom:523.697867pt;}
.y1aa{bottom:523.823600pt;}
.y18c{bottom:523.908933pt;}
.yad{bottom:524.881733pt;}
.yf8{bottom:525.165333pt;}
.y68{bottom:526.607067pt;}
.y56{bottom:527.911333pt;}
.y166{bottom:528.944800pt;}
.y28{bottom:529.102267pt;}
.y1c9{bottom:529.215600pt;}
.y1e0{bottom:529.366800pt;}
.y49{bottom:529.726800pt;}
.y13c{bottom:529.768267pt;}
.y3d{bottom:531.848800pt;}
.y11e{bottom:532.094400pt;}
.yd2{bottom:532.287867pt;}
.y11b{bottom:532.288000pt;}
.y7f{bottom:532.440933pt;}
.yf5{bottom:533.547733pt;}
.y13f{bottom:534.103867pt;}
.y10{bottom:534.589867pt;}
.y163{bottom:534.650133pt;}
.y170{bottom:538.234933pt;}
.y1a9{bottom:541.423600pt;}
.y2{bottom:542.704933pt;}
.yf7{bottom:542.765200pt;}
.y193{bottom:542.897867pt;}
.y67{bottom:544.207067pt;}
.y55{bottom:545.511333pt;}
.y165{bottom:546.544800pt;}
.y27{bottom:546.702267pt;}
.y1c8{bottom:546.815733pt;}
.y1df{bottom:546.966800pt;}
.yd6{bottom:547.207867pt;}
.y48{bottom:547.326800pt;}
.ya1{bottom:548.743200pt;}
.y3c{bottom:549.448800pt;}
.y11d{bottom:549.694400pt;}
.y7e{bottom:550.040800pt;}
.y13e{bottom:551.703867pt;}
.yf{bottom:552.189867pt;}
.y13b{bottom:553.768267pt;}
.yd1{bottom:556.287867pt;}
.y11a{bottom:556.288000pt;}
.yf4{bottom:557.547733pt;}
.y162{bottom:558.650133pt;}
.y1a8{bottom:559.023600pt;}
.yac{bottom:560.081733pt;}
.yf6{bottom:560.365333pt;}
.ya4{bottom:561.033467pt;}
.y16b{bottom:561.034133pt;}
.y192{bottom:562.097867pt;}
.y1{bottom:563.504933pt;}
.y164{bottom:564.144800pt;}
.y26{bottom:564.302267pt;}
.y1bb{bottom:564.312800pt;}
.y1c7{bottom:564.415600pt;}
.y1de{bottom:564.566800pt;}
.ya0{bottom:566.343200pt;}
.yd5{bottom:566.408000pt;}
.y3b{bottom:567.048800pt;}
.y11c{bottom:567.294400pt;}
.y7d{bottom:567.640933pt;}
.ye{bottom:569.789733pt;}
.y96{bottom:575.792133pt;}
.y1a7{bottom:576.623600pt;}
.yd0{bottom:577.426533pt;}
.yab{bottom:577.681867pt;}
.y54{bottom:580.711333pt;}
.y18b{bottom:581.221867pt;}
.y1ba{bottom:581.912800pt;}
.y1c6{bottom:582.015600pt;}
.y9f{bottom:583.943200pt;}
.y3a{bottom:584.648800pt;}
.y7c{bottom:585.240933pt;}
.yd4{bottom:585.608000pt;}
.y63{bottom:585.778800pt;}
.yd{bottom:587.389867pt;}
.y95{bottom:593.392000pt;}
.y1a6{bottom:594.223600pt;}
.yaa{bottom:595.281733pt;}
.y53{bottom:598.311333pt;}
.y50{bottom:598.311467pt;}
.y18a{bottom:598.822000pt;}
.y1b9{bottom:599.512800pt;}
.y1c5{bottom:599.615600pt;}
.y1dd{bottom:599.766800pt;}
.y16f{bottom:600.951067pt;}
.y39{bottom:602.248800pt;}
.y7b{bottom:602.840800pt;}
.y62{bottom:603.378800pt;}
.yd3{bottom:604.808000pt;}
.yc{bottom:604.989867pt;}
.y94{bottom:610.992000pt;}
.ya9{bottom:612.881733pt;}
.y52{bottom:615.911333pt;}
.y4f{bottom:615.911467pt;}
.y189{bottom:616.422000pt;}
.y1b8{bottom:617.112800pt;}
.y1c4{bottom:617.215600pt;}
.y1dc{bottom:617.366800pt;}
.y16e{bottom:618.551067pt;}
.y9e{bottom:619.143200pt;}
.y38{bottom:619.848800pt;}
.y7a{bottom:620.440933pt;}
.y61{bottom:620.978800pt;}
.ya3{bottom:621.833467pt;}
.y16a{bottom:621.834133pt;}
.yb{bottom:622.589867pt;}
.y93{bottom:628.592000pt;}
.ya8{bottom:630.481733pt;}
.y188{bottom:634.021867pt;}
.y1b7{bottom:634.712800pt;}
.y1db{bottom:634.966800pt;}
.y16d{bottom:636.151067pt;}
.y9d{bottom:636.743200pt;}
.y37{bottom:637.448800pt;}
.y79{bottom:638.040800pt;}
.y60{bottom:638.578800pt;}
.y1a5{bottom:638.775200pt;}
.ya{bottom:640.189333pt;}
.y92{bottom:646.192000pt;}
.ya7{bottom:648.081733pt;}
.y187{bottom:651.622000pt;}
.y1b6{bottom:652.312800pt;}
.y1da{bottom:652.566800pt;}
.y16c{bottom:653.751067pt;}
.y36{bottom:655.048800pt;}
.y78{bottom:655.640933pt;}
.ycf{bottom:657.426533pt;}
.y9{bottom:667.389867pt;}
.y4e{bottom:667.407200pt;}
.y51{bottom:667.407600pt;}
.y1a4{bottom:669.175067pt;}
.y186{bottom:669.221867pt;}
.y35{bottom:672.648800pt;}
.ybd{bottom:681.266000pt;}
.y97{bottom:681.911467pt;}
.ya2{bottom:682.633467pt;}
.y169{bottom:682.634133pt;}
.ya6{bottom:683.216667pt;}
.y8{bottom:684.989867pt;}
.y185{bottom:686.822000pt;}
.y1d9{bottom:687.766800pt;}
.y64{bottom:693.234267pt;}
.y7{bottom:702.589867pt;}
.y6{bottom:728.966933pt;}
.y5{bottom:729.126933pt;}
.h5{height:0.364583pt;}
.h4{height:43.750000pt;}
.hd{height:44.117333pt;}
.h7{height:44.293333pt;}
.h14{height:44.976632pt;}
.ha{height:44.997333pt;}
.h6{height:46.562500pt;}
.h8{height:46.564633pt;}
.he{height:48.320000pt;}
.hf{height:48.512000pt;}
.h3{height:52.554667pt;}
.h12{height:56.597333pt;}
.h11{height:61.680000pt;}
.hc{height:68.544000pt;}
.h9{height:72.576000pt;}
.h2{height:72.768000pt;}
.h13{height:76.608000pt;}
.hb{height:178.125000pt;}
.h10{height:316.197917pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x3d{left:60.472400pt;}
.x49{left:68.031467pt;}
.x1a{left:71.811067pt;}
.x13{left:75.590533pt;}
.x26{left:77.543333pt;}
.x19{left:79.685067pt;}
.x3{left:83.149600pt;}
.x2a{left:85.039333pt;}
.x25{left:87.874000pt;}
.x2d{left:89.448800pt;}
.x3a{left:90.708667pt;}
.x3c{left:91.653600pt;}
.x27{left:93.511867pt;}
.x1c{left:94.488133pt;}
.x2b{left:98.267733pt;}
.x34{left:100.157467pt;}
.x22{left:104.881867pt;}
.x23{left:110.866133pt;}
.x4c{left:118.792533pt;}
.x1{left:132.565200pt;}
.x45{left:134.903733pt;}
.x24{left:136.062933pt;}
.x28{left:137.952800pt;}
.x1f{left:140.472400pt;}
.x2e{left:141.732267pt;}
.x46{left:143.264800pt;}
.x44{left:146.459867pt;}
.x16{left:149.439200pt;}
.x20{left:151.181067pt;}
.x18{left:159.399067pt;}
.x4e{left:163.422533pt;}
.x15{left:164.524533pt;}
.x1d{left:177.249600pt;}
.x4d{left:189.932533pt;}
.x51{left:191.070267pt;}
.x3f{left:195.370933pt;}
.x2c{left:196.535467pt;}
.xe{left:199.628133pt;}
.x40{left:202.277467pt;}
.x17{left:203.811867pt;}
.x8{left:205.786800pt;}
.x14{left:206.822000pt;}
.xc{left:208.382800pt;}
.x41{left:214.611467pt;}
.x4b{left:216.339733pt;}
.x10{left:217.446267pt;}
.x3e{left:218.646133pt;}
.x11{left:222.976133pt;}
.xd{left:224.647600pt;}
.xb{left:227.874933pt;}
.xa{left:229.737200pt;}
.x5{left:232.114133pt;}
.x7{left:237.833200pt;}
.x9{left:240.707333pt;}
.x6{left:244.315467pt;}
.xf{left:250.094000pt;}
.x43{left:257.306933pt;}
.x1b{left:261.086533pt;}
.x53{left:264.866000pt;}
.x50{left:266.410400pt;}
.x2f{left:267.700667pt;}
.x29{left:270.472267pt;}
.x3b{left:271.480267pt;}
.x21{left:272.740133pt;}
.x4{left:276.055067pt;}
.x1e{left:283.763733pt;}
.x48{left:291.322667pt;}
.x31{left:293.382800pt;}
.x30{left:294.912533pt;}
.x38{left:301.260000pt;}
.x39{left:311.638933pt;}
.x37{left:333.684000pt;}
.x4f{left:340.997733pt;}
.x32{left:350.874133pt;}
.x36{left:352.050800pt;}
.x35{left:386.285467pt;}
.x42{left:394.144800pt;}
.x33{left:395.991067pt;}
.x52{left:404.954133pt;}
.x4a{left:420.251467pt;}
.x12{left:436.858133pt;}
.x47{left:451.832533pt;}
}




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