
    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_b79747ae1c4ee3bdca42fa49.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_bf683c09a4497e4f487633b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_89f93f7ca3fad3e82aee89bb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_691ba298ec4e34e35401ab4b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_d86c89a5f7f7afe5f5feb0ab.woff')format("woff");}.ff6{font-family:ff6;line-height:0.786133;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_d6b142d6bd823a35a6a60b8c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_d722e4441ddb572ce463302a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_e5b74a065d224753d3d9f71e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_9f8e63d75e72446288157461.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_37dc9122cee91db52e7f41ff.woff')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_5c629acee7c94a096faae8a0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.752930;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_9176b7d46f788733eaad0405.woff')format("woff");}.ffd{font-family:ffd;line-height:1.064941;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.va{vertical-align:30.240000px;}
.v9{vertical-align:35.280000px;}
.v8{vertical-align:40.320000px;}
.v7{vertical-align:46.080000px;}
.ls8{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.460200px;}
.ls11{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls24{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.052560px;}
.ls29{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.012960px;}
.ls13{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.186000px;}
.ls1d{letter-spacing:0.206640px;}
.ls10{letter-spacing:0.259800px;}
.ls2d{letter-spacing:0.259920px;}
.ls2e{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.306600px;}
.lsa{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.620000px;}
.ls26{letter-spacing:2.340000px;}
.ls17{letter-spacing:3.060000px;}
.ls2b{letter-spacing:3.780000px;}
.ls21{letter-spacing:3.960000px;}
.ls27{letter-spacing:5.940000px;}
.ls1{letter-spacing:6.120000px;}
.ls25{letter-spacing:6.660000px;}
.ls1f{letter-spacing:8.100000px;}
.ls1c{letter-spacing:10.980000px;}
.ls0{letter-spacing:12.916800px;}
.lsc{letter-spacing:12.960000px;}
.ls2c{letter-spacing:13.140000px;}
.ls15{letter-spacing:14.211360px;}
.ls22{letter-spacing:15.238800px;}
.ls20{letter-spacing:15.300000px;}
.ls2a{letter-spacing:16.506720px;}
.lsb{letter-spacing:18.900000px;}
.ls2f{letter-spacing:29.700000px;}
.ls28{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws12{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.680200px;}
.ws16{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.328000px;}
.ws5{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.094640px;}
.ws3{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.720000px;}
.ws17{word-spacing:-9.711360px;}
.ws11{word-spacing:-9.373200px;}
.ws8{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-1675.098720px;}
._26{margin-left:-1645.665120px;}
._2f{margin-left:-1322.212320px;}
._2b{margin-left:-1029.720000px;}
._b{margin-left:-1000.156800px;}
._d{margin-left:-862.427520px;}
._30{margin-left:-763.787520px;}
._6{margin-left:-681.448320px;}
._2e{margin-left:-534.100320px;}
._7{margin-left:-262.517760px;}
._13{margin-left:-233.716800px;}
._12{margin-left:-231.384960px;}
._2d{margin-left:-230.175120px;}
._f{margin-left:-207.969600px;}
._2c{margin-left:-206.759760px;}
._25{margin-left:-181.300320px;}
._9{margin-left:-151.780320px;}
._8{margin-left:-140.955840px;}
._11{margin-left:-128.116800px;}
._31{margin-left:-124.560000px;}
._35{margin-left:-115.200000px;}
._32{margin-left:-99.360000px;}
._10{margin-left:-92.116800px;}
._33{margin-left:-82.776000px;}
._34{margin-left:-79.200000px;}
._a{margin-left:-58.996800px;}
._29{margin-left:-15.615600px;}
._2a{margin-left:-14.126640px;}
._e{margin-left:-12.916800px;}
._14{margin-left:-4.465680px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._15{width:1.627920px;}
._16{width:2.876640px;}
._1a{width:4.768560px;}
._19{width:6.081120px;}
._17{width:7.097040px;}
._18{width:8.141760px;}
._24{width:9.339120px;}
._23{width:10.435920px;}
._1d{width:11.590080px;}
._1b{width:12.628080px;}
._1c{width:13.880160px;}
._1e{width:16.013280px;}
._21{width:17.177280px;}
._2{width:18.654720px;}
._22{width:20.464320px;}
._20{width:22.364160px;}
._1f{width:23.425920px;}
._38{width:30.020400px;}
._28{width:34.138320px;}
._36{width:36.334080px;}
._37{width:39.390000px;}
._27{width:147.991440px;}
._4{width:337.140000px;}
._3{width:715.653600px;}
._5{width:1341.536640px;}
.fc6{color:transparent;}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y146{bottom:3.240000px;}
.y32{bottom:5.760000px;}
.yf7{bottom:5.940000px;}
.y111{bottom:6.120000px;}
.y155{bottom:6.480000px;}
.y157{bottom:6.660000px;}
.y113{bottom:7.200000px;}
.y12{bottom:7.560000px;}
.ye8{bottom:8.100000px;}
.y4f{bottom:8.460000px;}
.yea{bottom:9.720000px;}
.yf9{bottom:9.900000px;}
.yec{bottom:10.980000px;}
.yfc{bottom:11.160000px;}
.y6{bottom:11.880000px;}
.y125{bottom:19.620000px;}
.y139{bottom:25.200000px;}
.yf5{bottom:25.560000px;}
.y31{bottom:25.740000px;}
.y4e{bottom:28.260000px;}
.y5{bottom:40.320000px;}
.y30{bottom:43.020000px;}
.y138{bottom:45.000000px;}
.y12b{bottom:45.360000px;}
.y4d{bottom:45.540000px;}
.ye6{bottom:52.380000px;}
.y90{bottom:61.740000px;}
.y15f{bottom:62.100000px;}
.y2f{bottom:62.820000px;}
.ya{bottom:63.360000px;}
.y4c{bottom:65.340000px;}
.y4{bottom:68.940000px;}
.ye5{bottom:72.180000px;}
.y2e{bottom:82.620000px;}
.y4b{bottom:85.140000px;}
.yf3{bottom:87.120000px;}
.y195{bottom:88.560000px;}
.y8{bottom:90.210000px;}
.y14c{bottom:92.340000px;}
.y3{bottom:97.590000px;}
.y57{bottom:97.920000px;}
.y123{bottom:100.260000px;}
.y2d{bottom:102.420000px;}
.y4a{bottom:104.940000px;}
.y12a{bottom:104.985000px;}
.yf2{bottom:107.100000px;}
.y194{bottom:108.360000px;}
.y14b{bottom:112.140000px;}
.yc4{bottom:114.120000px;}
.y122{bottom:115.020000px;}
.y56{bottom:117.720000px;}
.y8d{bottom:117.900000px;}
.y2c{bottom:122.220000px;}
.y49{bottom:124.920000px;}
.yf1{bottom:126.900000px;}
.y193{bottom:128.160000px;}
.y2{bottom:128.550000px;}
.y7{bottom:128.730000px;}
.y14a{bottom:132.120000px;}
.yc3{bottom:133.920000px;}
.y55{bottom:137.520000px;}
.y8c{bottom:137.700000px;}
.y2b{bottom:142.020000px;}
.y48{bottom:144.720000px;}
.yf0{bottom:146.700000px;}
.y192{bottom:147.960000px;}
.y149{bottom:151.950000px;}
.yc2{bottom:153.930000px;}
.y121{bottom:154.650000px;}
.y54{bottom:157.350000px;}
.y8b{bottom:157.530000px;}
.y2a{bottom:162.045000px;}
.y47{bottom:164.565000px;}
.yef{bottom:166.530000px;}
.y191{bottom:167.790000px;}
.y148{bottom:169.230000px;}
.yc1{bottom:173.730000px;}
.y120{bottom:174.630000px;}
.y53{bottom:177.150000px;}
.y8a{bottom:177.330000px;}
.y29{bottom:181.845000px;}
.y46{bottom:184.365000px;}
.yee{bottom:186.330000px;}
.y190{bottom:187.770000px;}
.yc0{bottom:193.530000px;}
.y11f{bottom:194.430000px;}
.y52{bottom:197.130000px;}
.y89{bottom:197.310000px;}
.y28{bottom:201.645000px;}
.y45{bottom:204.165000px;}
.yed{bottom:206.310000px;}
.y18f{bottom:207.570000px;}
.ybf{bottom:213.330000px;}
.y51{bottom:216.930000px;}
.y88{bottom:217.110000px;}
.yeb{bottom:221.070000px;}
.y27{bottom:221.445000px;}
.y44{bottom:224.145000px;}
.y147{bottom:226.110000px;}
.y18e{bottom:227.370000px;}
.y11e{bottom:234.750000px;}
.y50{bottom:236.730000px;}
.y87{bottom:236.910000px;}
.ybe{bottom:239.070000px;}
.y26{bottom:241.245000px;}
.y145{bottom:243.390000px;}
.y43{bottom:243.945000px;}
.y151{bottom:245.910000px;}
.ye9{bottom:246.090000px;}
.ybd{bottom:246.630000px;}
.y18d{bottom:247.170000px;}
.y13{bottom:251.490000px;}
.y86{bottom:256.710000px;}
.y144{bottom:260.670000px;}
.y11d{bottom:261.210000px;}
.y25{bottom:261.225000px;}
.y42{bottom:263.745000px;}
.y150{bottom:265.710000px;}
.y18c{bottom:266.970000px;}
.ye7{bottom:269.850000px;}
.ybc{bottom:270.930000px;}
.y85{bottom:276.510000px;}
.y11c{bottom:281.010000px;}
.y24{bottom:281.025000px;}
.y143{bottom:281.190000px;}
.y41{bottom:283.545000px;}
.y14f{bottom:285.510000px;}
.y18b{bottom:286.950000px;}
.ybb{bottom:290.910000px;}
.ye4{bottom:292.710000px;}
.y84{bottom:296.490000px;}
.y11b{bottom:300.810000px;}
.y23{bottom:300.825000px;}
.y40{bottom:303.345000px;}
.y14e{bottom:305.490000px;}
.y18a{bottom:306.750000px;}
.y142{bottom:307.470000px;}
.yba{bottom:310.530000px;}
.y83{bottom:316.290000px;}
.y22{bottom:320.625000px;}
.y11a{bottom:320.790000px;}
.y3f{bottom:323.325000px;}
.y14d{bottom:325.290000px;}
.y189{bottom:326.550000px;}
.y141{bottom:327.450000px;}
.yb9{bottom:331.950000px;}
.y21{bottom:340.425000px;}
.y119{bottom:340.590000px;}
.y3e{bottom:343.125000px;}
.y82{bottom:345.090000px;}
.y188{bottom:346.350000px;}
.y140{bottom:347.250000px;}
.yb8{bottom:351.750000px;}
.y118{bottom:360.390000px;}
.y20{bottom:360.405000px;}
.y3d{bottom:362.925000px;}
.y81{bottom:364.890000px;}
.y187{bottom:366.150000px;}
.y13f{bottom:367.050000px;}
.yb7{bottom:371.730000px;}
.y117{bottom:380.190000px;}
.y1f{bottom:380.205000px;}
.y3c{bottom:382.725000px;}
.y80{bottom:384.690000px;}
.ye3{bottom:385.590000px;}
.y186{bottom:386.130000px;}
.y13e{bottom:386.850000px;}
.yb6{bottom:391.530000px;}
.y116{bottom:399.990000px;}
.y1e{bottom:400.035000px;}
.y3b{bottom:402.555000px;}
.y7f{bottom:404.715000px;}
.ye2{bottom:405.435000px;}
.y185{bottom:405.975000px;}
.y13d{bottom:406.695000px;}
.yb5{bottom:411.375000px;}
.y1d{bottom:419.835000px;}
.y115{bottom:420.015000px;}
.y13c{bottom:421.635000px;}
.y3a{bottom:422.535000px;}
.y7e{bottom:424.515000px;}
.ye1{bottom:425.235000px;}
.y184{bottom:425.775000px;}
.yb4{bottom:431.175000px;}
.y114{bottom:434.775000px;}
.y1c{bottom:439.635000px;}
.yb3{bottom:441.255000px;}
.y13b{bottom:441.435000px;}
.y39{bottom:442.335000px;}
.y7d{bottom:444.315000px;}
.ye0{bottom:445.035000px;}
.y183{bottom:445.575000px;}
.y112{bottom:454.575000px;}
.y1b{bottom:459.615000px;}
.y38{bottom:462.135000px;}
.y7c{bottom:464.115000px;}
.ydf{bottom:464.835000px;}
.y182{bottom:465.375000px;}
.yb2{bottom:471.315000px;}
.y110{bottom:475.815000px;}
.y1a{bottom:479.415000px;}
.y13a{bottom:481.035000px;}
.y37{bottom:481.935000px;}
.y7b{bottom:483.915000px;}
.yde{bottom:484.815000px;}
.y181{bottom:485.355000px;}
.yb1{bottom:491.115000px;}
.y10f{bottom:496.695000px;}
.y19{bottom:499.215000px;}
.y137{bottom:500.835000px;}
.y36{bottom:501.735000px;}
.y7a{bottom:503.895000px;}
.ydd{bottom:504.615000px;}
.y180{bottom:505.155000px;}
.yb0{bottom:510.915000px;}
.y18{bottom:519.015000px;}
.y35{bottom:521.715000px;}
.y79{bottom:523.695000px;}
.ydc{bottom:524.415000px;}
.y17f{bottom:524.955000px;}
.yaf{bottom:530.715000px;}
.y17{bottom:538.815000px;}
.y34{bottom:541.515000px;}
.y78{bottom:543.495000px;}
.ydb{bottom:544.215000px;}
.y17e{bottom:544.755000px;}
.yae{bottom:550.515000px;}
.y16{bottom:558.795000px;}
.y136{bottom:559.875000px;}
.y33{bottom:561.315000px;}
.y10e{bottom:562.755000px;}
.y77{bottom:563.295000px;}
.yda{bottom:564.015000px;}
.y17d{bottom:564.555000px;}
.yad{bottom:570.495000px;}
.y15{bottom:578.595000px;}
.y135{bottom:579.675000px;}
.y10d{bottom:582.555000px;}
.y76{bottom:583.095000px;}
.yd9{bottom:583.995000px;}
.y17c{bottom:584.355000px;}
.yac{bottom:590.295000px;}
.y14{bottom:598.395000px;}
.y10c{bottom:602.355000px;}
.y75{bottom:603.075000px;}
.yd8{bottom:603.795000px;}
.y17b{bottom:604.335000px;}
.yab{bottom:609.915000px;}
.y134{bottom:619.455000px;}
.y10b{bottom:622.335000px;}
.y74{bottom:622.875000px;}
.yd7{bottom:623.595000px;}
.y17a{bottom:624.135000px;}
.yaa{bottom:631.515000px;}
.y133{bottom:639.975000px;}
.y10a{bottom:642.135000px;}
.y73{bottom:642.675000px;}
.yd6{bottom:643.395000px;}
.y179{bottom:643.935000px;}
.ya9{bottom:651.345000px;}
.y109{bottom:661.965000px;}
.y72{bottom:662.505000px;}
.yd5{bottom:663.225000px;}
.y178{bottom:663.765000px;}
.y132{bottom:666.285000px;}
.ya8{bottom:671.145000px;}
.y108{bottom:681.765000px;}
.y71{bottom:682.305000px;}
.yd4{bottom:683.205000px;}
.y177{bottom:683.565000px;}
.y131{bottom:686.265000px;}
.ya7{bottom:690.945000px;}
.y107{bottom:701.565000px;}
.y70{bottom:702.285000px;}
.yd3{bottom:703.005000px;}
.y176{bottom:703.545000px;}
.y130{bottom:706.065000px;}
.ya6{bottom:710.745000px;}
.y106{bottom:721.545000px;}
.y6f{bottom:722.085000px;}
.yd2{bottom:722.805000px;}
.y175{bottom:723.345000px;}
.y12f{bottom:725.865000px;}
.ya5{bottom:730.545000px;}
.y105{bottom:741.345000px;}
.y6e{bottom:741.885000px;}
.yd1{bottom:742.605000px;}
.y174{bottom:743.145000px;}
.y12e{bottom:745.665000px;}
.ya4{bottom:751.785000px;}
.y104{bottom:761.145000px;}
.y6d{bottom:761.685000px;}
.yd0{bottom:762.405000px;}
.y173{bottom:762.945000px;}
.y12d{bottom:765.465000px;}
.ya3{bottom:773.205000px;}
.y103{bottom:780.945000px;}
.y6c{bottom:781.485000px;}
.ycf{bottom:782.385000px;}
.y172{bottom:782.745000px;}
.y12c{bottom:785.445000px;}
.ya2{bottom:794.625000px;}
.y129{bottom:800.205000px;}
.y102{bottom:800.745000px;}
.y6b{bottom:801.465000px;}
.yce{bottom:802.185000px;}
.y171{bottom:802.725000px;}
.ya1{bottom:814.425000px;}
.y101{bottom:820.725000px;}
.y6a{bottom:821.265000px;}
.ycd{bottom:821.985000px;}
.y170{bottom:822.525000px;}
.y100{bottom:835.485000px;}
.ya0{bottom:835.845000px;}
.y69{bottom:841.065000px;}
.ycc{bottom:841.785000px;}
.y16f{bottom:842.325000px;}
.yff{bottom:855.285000px;}
.y9f{bottom:855.645000px;}
.y68{bottom:860.865000px;}
.ycb{bottom:861.585000px;}
.y16e{bottom:862.125000px;}
.y11{bottom:864.645000px;}
.y9e{bottom:875.445000px;}
.yfe{bottom:880.485000px;}
.y67{bottom:880.665000px;}
.yca{bottom:881.565000px;}
.y16d{bottom:881.925000px;}
.y15c{bottom:887.145000px;}
.y9d{bottom:895.245000px;}
.y10{bottom:897.405000px;}
.y66{bottom:900.690000px;}
.yc9{bottom:901.410000px;}
.y16c{bottom:901.950000px;}
.yfd{bottom:904.470000px;}
.y15b{bottom:908.610000px;}
.y9c{bottom:915.090000px;}
.y128{bottom:919.230000px;}
.y65{bottom:920.490000px;}
.yc8{bottom:921.210000px;}
.y16b{bottom:921.750000px;}
.yf{bottom:922.470000px;}
.yfb{bottom:924.270000px;}
.y15a{bottom:929.310000px;}
.y9b{bottom:936.330000px;}
.ye{bottom:937.590000px;}
.y64{bottom:940.290000px;}
.yc7{bottom:941.010000px;}
.y16a{bottom:941.550000px;}
.yfa{bottom:949.470000px;}
.y159{bottom:950.010000px;}
.y9a{bottom:957.750000px;}
.y127{bottom:958.830000px;}
.yd{bottom:959.370000px;}
.y63{bottom:960.090000px;}
.yc6{bottom:960.810000px;}
.y169{bottom:961.350000px;}
.yf8{bottom:969.270000px;}
.y158{bottom:970.710000px;}
.y99{bottom:979.170000px;}
.y62{bottom:979.890000px;}
.yc5{bottom:980.790000px;}
.y168{bottom:981.150000px;}
.yc{bottom:984.390000px;}
.y156{bottom:991.410000px;}
.yf6{bottom:993.930000px;}
.y126{bottom:998.610000px;}
.y61{bottom:999.870000px;}
.y98{bottom:1000.590000px;}
.y167{bottom:1001.130000px;}
.y154{bottom:1012.110000px;}
.yf4{bottom:1013.910000px;}
.yb{bottom:1016.070000px;}
.y124{bottom:1019.130000px;}
.y60{bottom:1019.670000px;}
.y97{bottom:1020.390000px;}
.y166{bottom:1020.930000px;}
.y153{bottom:1032.630000px;}
.y5f{bottom:1039.470000px;}
.y96{bottom:1040.190000px;}
.y165{bottom:1040.730000px;}
.y9{bottom:1043.250000px;}
.y1{bottom:1056.930000px;}
.y5e{bottom:1059.270000px;}
.y95{bottom:1059.990000px;}
.y164{bottom:1060.530000px;}
.y5d{bottom:1079.070000px;}
.y94{bottom:1079.970000px;}
.y163{bottom:1080.330000px;}
.y5c{bottom:1099.050000px;}
.y93{bottom:1099.770000px;}
.y162{bottom:1100.310000px;}
.y152{bottom:1112.730000px;}
.y5b{bottom:1118.850000px;}
.y92{bottom:1119.570000px;}
.y161{bottom:1120.110000px;}
.y5a{bottom:1138.650000px;}
.y91{bottom:1139.370000px;}
.y160{bottom:1139.910000px;}
.y59{bottom:1168.380000px;}
.y8f{bottom:1169.280000px;}
.y15e{bottom:1169.820000px;}
.y58{bottom:1191.420000px;}
.y8e{bottom:1192.140000px;}
.y15d{bottom:1192.680000px;}
.h2e{height:17.100000px;}
.h2d{height:17.280000px;}
.h20{height:19.800000px;}
.h2b{height:19.836000px;}
.h2f{height:19.965000px;}
.h1e{height:19.980000px;}
.h24{height:20.160000px;}
.h31{height:20.520000px;}
.h32{height:20.700000px;}
.h33{height:20.736000px;}
.h25{height:21.240000px;}
.h1a{height:22.140000px;}
.h1b{height:23.760000px;}
.h1f{height:23.940000px;}
.h22{height:23.976000px;}
.h1c{height:25.020000px;}
.h21{height:25.200000px;}
.he{height:26.100000px;}
.h27{height:33.660000px;}
.hc{height:34.855313px;}
.h1d{height:39.600000px;}
.h26{height:39.636000px;}
.h29{height:39.780000px;}
.hd{height:42.164648px;}
.h18{height:43.302656px;}
.ha{height:46.736719px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.h28{height:49.255313px;}
.h12{height:51.706406px;}
.h5{height:53.015625px;}
.h11{height:53.573906px;}
.h6{height:53.709961px;}
.hf{height:55.735312px;}
.h2c{height:59.040000px;}
.h23{height:59.580000px;}
.hb{height:61.197188px;}
.h3{height:62.028281px;}
.h13{height:62.215312px;}
.h8{height:67.565039px;}
.h9{height:69.388594px;}
.h16{height:70.637344px;}
.h30{height:79.380000px;}
.h17{height:83.813906px;}
.h19{height:86.220000px;}
.h15{height:90.917578px;}
.h14{height:96.677578px;}
.h2a{height:119.016000px;}
.h2{height:150.690000px;}
.h10{height:612.435000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w25{width:40.500000px;}
.w22{width:47.160000px;}
.w26{width:47.196000px;}
.w23{width:47.340000px;}
.w21{width:54.000000px;}
.w24{width:54.036000px;}
.w1f{width:67.500000px;}
.w15{width:73.836000px;}
.w20{width:74.376000px;}
.wf{width:80.316000px;}
.w2c{width:81.036000px;}
.w17{width:87.336000px;}
.wb{width:87.696000px;}
.w8{width:88.236000px;}
.w16{width:90.000000px;}
.w27{width:93.996000px;}
.we{width:100.080000px;}
.w9{width:104.796000px;}
.wd{width:105.876000px;}
.w18{width:106.740000px;}
.wc{width:113.400000px;}
.w2b{width:114.156000px;}
.wa{width:116.460000px;}
.w19{width:116.856000px;}
.w14{width:117.576000px;}
.w11{width:123.660000px;}
.w3{width:126.576000px;}
.w2f{width:129.096000px;}
.w13{width:129.996000px;}
.w1d{width:132.156000px;}
.w1e{width:135.036000px;}
.w12{width:136.116000px;}
.w10{width:142.236000px;}
.w28{width:161.130000px;}
.w2d{width:162.030000px;}
.w7{width:173.910000px;}
.w2a{width:174.450000px;}
.w2e{width:216.030000px;}
.w29{width:248.430000px;}
.w1a{width:262.515000px;}
.w1b{width:288.930000px;}
.w1c{width:363.315000px;}
.w30{width:489.705000px;}
.w31{width:557.205000px;}
.w6{width:606.210000px;}
.w2{width:656.970000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xf{left:-13.905000px;}
.xd{left:-11.514000px;}
.x14{left:-9.180000px;}
.x12{left:-3.600000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x23{left:49.680000px;}
.x1{left:54.900000px;}
.x5{left:56.520000px;}
.x32{left:71.460000px;}
.xb{left:72.900000px;}
.x16{left:81.720000px;}
.x22{left:85.535987px;}
.x39{left:108.035987px;}
.x20{left:120.456000px;}
.x2f{left:144.576000px;}
.x1b{left:146.736000px;}
.xa{left:148.175987px;}
.x33{left:152.490000px;}
.xc{left:161.130000px;}
.x37{left:167.430000px;}
.x24{left:181.830000px;}
.x1c{left:236.730000px;}
.xe{left:265.935000px;}
.x8{left:287.894987px;}
.x17{left:304.275000px;}
.x30{left:305.535000px;}
.x34{left:314.535000px;}
.x25{left:316.875000px;}
.x1d{left:324.075000px;}
.x10{left:382.395000px;}
.x26{left:384.375000px;}
.x21{left:409.395000px;}
.x9{left:417.134987px;}
.x18{left:427.935000px;}
.x1e{left:430.815000px;}
.x27{left:458.745000px;}
.x11{left:470.085000px;}
.x28{left:512.745000px;}
.x35{left:530.565000px;}
.x1f{left:547.665000px;}
.x31{left:553.965000px;}
.x29{left:559.905000px;}
.x19{left:564.045000px;}
.x13{left:583.485000px;}
.x2a{left:607.245000px;}
.x38{left:657.150000px;}
.x2b{left:661.290000px;}
.x6{left:662.730000px;}
.x15{left:689.370000px;}
.x36{left:692.610000px;}
.x1a{left:694.050000px;}
.x2c{left:708.450000px;}
.x3{left:711.870000px;}
.x7{left:721.229987px;}
.x4{left:728.609987px;}
.x2d{left:755.790000px;}
.x2e{left:796.290000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.va{vertical-align:26.880000pt;}
.v9{vertical-align:31.360000pt;}
.v8{vertical-align:35.840000pt;}
.v7{vertical-align:40.960000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.409067pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls24{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.046720pt;}
.ls29{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.011520pt;}
.ls13{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.165333pt;}
.ls1d{letter-spacing:0.183680pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2d{letter-spacing:0.231040pt;}
.ls2e{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.272533pt;}
.lsa{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls9{letter-spacing:1.440000pt;}
.ls26{letter-spacing:2.080000pt;}
.ls17{letter-spacing:2.720000pt;}
.ls2b{letter-spacing:3.360000pt;}
.ls21{letter-spacing:3.520000pt;}
.ls27{letter-spacing:5.280000pt;}
.ls1{letter-spacing:5.440000pt;}
.ls25{letter-spacing:5.920000pt;}
.ls1f{letter-spacing:7.200000pt;}
.ls1c{letter-spacing:9.760000pt;}
.ls0{letter-spacing:11.481600pt;}
.lsc{letter-spacing:11.520000pt;}
.ls2c{letter-spacing:11.680000pt;}
.ls15{letter-spacing:12.632320pt;}
.ls22{letter-spacing:13.545600pt;}
.ls20{letter-spacing:13.600000pt;}
.ls2a{letter-spacing:14.672640pt;}
.lsb{letter-spacing:16.800000pt;}
.ls2f{letter-spacing:26.400000pt;}
.ls28{letter-spacing:40.912640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws12{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.049067pt;}
.ws16{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.736000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.639680pt;}
.ws3{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws17{word-spacing:-8.632320pt;}
.ws11{word-spacing:-8.331733pt;}
.ws8{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-1488.976640pt;}
._26{margin-left:-1462.813440pt;}
._2f{margin-left:-1175.299840pt;}
._2b{margin-left:-915.306667pt;}
._b{margin-left:-889.028267pt;}
._d{margin-left:-766.602240pt;}
._30{margin-left:-678.922240pt;}
._6{margin-left:-605.731840pt;}
._2e{margin-left:-474.755840pt;}
._7{margin-left:-233.349120pt;}
._13{margin-left:-207.748267pt;}
._12{margin-left:-205.675520pt;}
._2d{margin-left:-204.600107pt;}
._f{margin-left:-184.861867pt;}
._2c{margin-left:-183.786453pt;}
._25{margin-left:-161.155840pt;}
._9{margin-left:-134.915840pt;}
._8{margin-left:-125.294080pt;}
._11{margin-left:-113.881600pt;}
._31{margin-left:-110.720000pt;}
._35{margin-left:-102.400000pt;}
._32{margin-left:-88.320000pt;}
._10{margin-left:-81.881600pt;}
._33{margin-left:-73.578667pt;}
._34{margin-left:-70.400000pt;}
._a{margin-left:-52.441600pt;}
._29{margin-left:-13.880533pt;}
._2a{margin-left:-12.557013pt;}
._e{margin-left:-11.481600pt;}
._14{margin-left:-3.969493pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._15{width:1.447040pt;}
._16{width:2.557013pt;}
._1a{width:4.238720pt;}
._19{width:5.405440pt;}
._17{width:6.308480pt;}
._18{width:7.237120pt;}
._24{width:8.301440pt;}
._23{width:9.276373pt;}
._1d{width:10.302293pt;}
._1b{width:11.224960pt;}
._1c{width:12.337920pt;}
._1e{width:14.234027pt;}
._21{width:15.268693pt;}
._2{width:16.581973pt;}
._22{width:18.190507pt;}
._20{width:19.879253pt;}
._1f{width:20.823040pt;}
._38{width:26.684800pt;}
._28{width:30.345173pt;}
._36{width:32.296960pt;}
._37{width:35.013333pt;}
._27{width:131.547947pt;}
._4{width:299.680000pt;}
._3{width:636.136533pt;}
._5{width:1192.477013pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y146{bottom:2.880000pt;}
.y32{bottom:5.120000pt;}
.yf7{bottom:5.280000pt;}
.y111{bottom:5.440000pt;}
.y155{bottom:5.760000pt;}
.y157{bottom:5.920000pt;}
.y113{bottom:6.400000pt;}
.y12{bottom:6.720000pt;}
.ye8{bottom:7.200000pt;}
.y4f{bottom:7.520000pt;}
.yea{bottom:8.640000pt;}
.yf9{bottom:8.800000pt;}
.yec{bottom:9.760000pt;}
.yfc{bottom:9.920000pt;}
.y6{bottom:10.560000pt;}
.y125{bottom:17.440000pt;}
.y139{bottom:22.400000pt;}
.yf5{bottom:22.720000pt;}
.y31{bottom:22.880000pt;}
.y4e{bottom:25.120000pt;}
.y5{bottom:35.840000pt;}
.y30{bottom:38.240000pt;}
.y138{bottom:40.000000pt;}
.y12b{bottom:40.320000pt;}
.y4d{bottom:40.480000pt;}
.ye6{bottom:46.560000pt;}
.y90{bottom:54.880000pt;}
.y15f{bottom:55.200000pt;}
.y2f{bottom:55.840000pt;}
.ya{bottom:56.320000pt;}
.y4c{bottom:58.080000pt;}
.y4{bottom:61.280000pt;}
.ye5{bottom:64.160000pt;}
.y2e{bottom:73.440000pt;}
.y4b{bottom:75.680000pt;}
.yf3{bottom:77.440000pt;}
.y195{bottom:78.720000pt;}
.y8{bottom:80.186667pt;}
.y14c{bottom:82.080000pt;}
.y3{bottom:86.746667pt;}
.y57{bottom:87.040000pt;}
.y123{bottom:89.120000pt;}
.y2d{bottom:91.040000pt;}
.y4a{bottom:93.280000pt;}
.y12a{bottom:93.320000pt;}
.yf2{bottom:95.200000pt;}
.y194{bottom:96.320000pt;}
.y14b{bottom:99.680000pt;}
.yc4{bottom:101.440000pt;}
.y122{bottom:102.240000pt;}
.y56{bottom:104.640000pt;}
.y8d{bottom:104.800000pt;}
.y2c{bottom:108.640000pt;}
.y49{bottom:111.040000pt;}
.yf1{bottom:112.800000pt;}
.y193{bottom:113.920000pt;}
.y2{bottom:114.266667pt;}
.y7{bottom:114.426667pt;}
.y14a{bottom:117.440000pt;}
.yc3{bottom:119.040000pt;}
.y55{bottom:122.240000pt;}
.y8c{bottom:122.400000pt;}
.y2b{bottom:126.240000pt;}
.y48{bottom:128.640000pt;}
.yf0{bottom:130.400000pt;}
.y192{bottom:131.520000pt;}
.y149{bottom:135.066667pt;}
.yc2{bottom:136.826667pt;}
.y121{bottom:137.466667pt;}
.y54{bottom:139.866667pt;}
.y8b{bottom:140.026667pt;}
.y2a{bottom:144.040000pt;}
.y47{bottom:146.280000pt;}
.yef{bottom:148.026667pt;}
.y191{bottom:149.146667pt;}
.y148{bottom:150.426667pt;}
.yc1{bottom:154.426667pt;}
.y120{bottom:155.226667pt;}
.y53{bottom:157.466667pt;}
.y8a{bottom:157.626667pt;}
.y29{bottom:161.640000pt;}
.y46{bottom:163.880000pt;}
.yee{bottom:165.626667pt;}
.y190{bottom:166.906667pt;}
.yc0{bottom:172.026667pt;}
.y11f{bottom:172.826667pt;}
.y52{bottom:175.226667pt;}
.y89{bottom:175.386667pt;}
.y28{bottom:179.240000pt;}
.y45{bottom:181.480000pt;}
.yed{bottom:183.386667pt;}
.y18f{bottom:184.506667pt;}
.ybf{bottom:189.626667pt;}
.y51{bottom:192.826667pt;}
.y88{bottom:192.986667pt;}
.yeb{bottom:196.506667pt;}
.y27{bottom:196.840000pt;}
.y44{bottom:199.240000pt;}
.y147{bottom:200.986667pt;}
.y18e{bottom:202.106667pt;}
.y11e{bottom:208.666667pt;}
.y50{bottom:210.426667pt;}
.y87{bottom:210.586667pt;}
.ybe{bottom:212.506667pt;}
.y26{bottom:214.440000pt;}
.y145{bottom:216.346667pt;}
.y43{bottom:216.840000pt;}
.y151{bottom:218.586667pt;}
.ye9{bottom:218.746667pt;}
.ybd{bottom:219.226667pt;}
.y18d{bottom:219.706667pt;}
.y13{bottom:223.546667pt;}
.y86{bottom:228.186667pt;}
.y144{bottom:231.706667pt;}
.y11d{bottom:232.186667pt;}
.y25{bottom:232.200000pt;}
.y42{bottom:234.440000pt;}
.y150{bottom:236.186667pt;}
.y18c{bottom:237.306667pt;}
.ye7{bottom:239.866667pt;}
.ybc{bottom:240.826667pt;}
.y85{bottom:245.786667pt;}
.y11c{bottom:249.786667pt;}
.y24{bottom:249.800000pt;}
.y143{bottom:249.946667pt;}
.y41{bottom:252.040000pt;}
.y14f{bottom:253.786667pt;}
.y18b{bottom:255.066667pt;}
.ybb{bottom:258.586667pt;}
.ye4{bottom:260.186667pt;}
.y84{bottom:263.546667pt;}
.y11b{bottom:267.386667pt;}
.y23{bottom:267.400000pt;}
.y40{bottom:269.640000pt;}
.y14e{bottom:271.546667pt;}
.y18a{bottom:272.666667pt;}
.y142{bottom:273.306667pt;}
.yba{bottom:276.026667pt;}
.y83{bottom:281.146667pt;}
.y22{bottom:285.000000pt;}
.y11a{bottom:285.146667pt;}
.y3f{bottom:287.400000pt;}
.y14d{bottom:289.146667pt;}
.y189{bottom:290.266667pt;}
.y141{bottom:291.066667pt;}
.yb9{bottom:295.066667pt;}
.y21{bottom:302.600000pt;}
.y119{bottom:302.746667pt;}
.y3e{bottom:305.000000pt;}
.y82{bottom:306.746667pt;}
.y188{bottom:307.866667pt;}
.y140{bottom:308.666667pt;}
.yb8{bottom:312.666667pt;}
.y118{bottom:320.346667pt;}
.y20{bottom:320.360000pt;}
.y3d{bottom:322.600000pt;}
.y81{bottom:324.346667pt;}
.y187{bottom:325.466667pt;}
.y13f{bottom:326.266667pt;}
.yb7{bottom:330.426667pt;}
.y117{bottom:337.946667pt;}
.y1f{bottom:337.960000pt;}
.y3c{bottom:340.200000pt;}
.y80{bottom:341.946667pt;}
.ye3{bottom:342.746667pt;}
.y186{bottom:343.226667pt;}
.y13e{bottom:343.866667pt;}
.yb6{bottom:348.026667pt;}
.y116{bottom:355.546667pt;}
.y1e{bottom:355.586667pt;}
.y3b{bottom:357.826667pt;}
.y7f{bottom:359.746667pt;}
.ye2{bottom:360.386667pt;}
.y185{bottom:360.866667pt;}
.y13d{bottom:361.506667pt;}
.yb5{bottom:365.666667pt;}
.y1d{bottom:373.186667pt;}
.y115{bottom:373.346667pt;}
.y13c{bottom:374.786667pt;}
.y3a{bottom:375.586667pt;}
.y7e{bottom:377.346667pt;}
.ye1{bottom:377.986667pt;}
.y184{bottom:378.466667pt;}
.yb4{bottom:383.266667pt;}
.y114{bottom:386.466667pt;}
.y1c{bottom:390.786667pt;}
.yb3{bottom:392.226667pt;}
.y13b{bottom:392.386667pt;}
.y39{bottom:393.186667pt;}
.y7d{bottom:394.946667pt;}
.ye0{bottom:395.586667pt;}
.y183{bottom:396.066667pt;}
.y112{bottom:404.066667pt;}
.y1b{bottom:408.546667pt;}
.y38{bottom:410.786667pt;}
.y7c{bottom:412.546667pt;}
.ydf{bottom:413.186667pt;}
.y182{bottom:413.666667pt;}
.yb2{bottom:418.946667pt;}
.y110{bottom:422.946667pt;}
.y1a{bottom:426.146667pt;}
.y13a{bottom:427.586667pt;}
.y37{bottom:428.386667pt;}
.y7b{bottom:430.146667pt;}
.yde{bottom:430.946667pt;}
.y181{bottom:431.426667pt;}
.yb1{bottom:436.546667pt;}
.y10f{bottom:441.506667pt;}
.y19{bottom:443.746667pt;}
.y137{bottom:445.186667pt;}
.y36{bottom:445.986667pt;}
.y7a{bottom:447.906667pt;}
.ydd{bottom:448.546667pt;}
.y180{bottom:449.026667pt;}
.yb0{bottom:454.146667pt;}
.y18{bottom:461.346667pt;}
.y35{bottom:463.746667pt;}
.y79{bottom:465.506667pt;}
.ydc{bottom:466.146667pt;}
.y17f{bottom:466.626667pt;}
.yaf{bottom:471.746667pt;}
.y17{bottom:478.946667pt;}
.y34{bottom:481.346667pt;}
.y78{bottom:483.106667pt;}
.ydb{bottom:483.746667pt;}
.y17e{bottom:484.226667pt;}
.yae{bottom:489.346667pt;}
.y16{bottom:496.706667pt;}
.y136{bottom:497.666667pt;}
.y33{bottom:498.946667pt;}
.y10e{bottom:500.226667pt;}
.y77{bottom:500.706667pt;}
.yda{bottom:501.346667pt;}
.y17d{bottom:501.826667pt;}
.yad{bottom:507.106667pt;}
.y15{bottom:514.306667pt;}
.y135{bottom:515.266667pt;}
.y10d{bottom:517.826667pt;}
.y76{bottom:518.306667pt;}
.yd9{bottom:519.106667pt;}
.y17c{bottom:519.426667pt;}
.yac{bottom:524.706667pt;}
.y14{bottom:531.906667pt;}
.y10c{bottom:535.426667pt;}
.y75{bottom:536.066667pt;}
.yd8{bottom:536.706667pt;}
.y17b{bottom:537.186667pt;}
.yab{bottom:542.146667pt;}
.y134{bottom:550.626667pt;}
.y10b{bottom:553.186667pt;}
.y74{bottom:553.666667pt;}
.yd7{bottom:554.306667pt;}
.y17a{bottom:554.786667pt;}
.yaa{bottom:561.346667pt;}
.y133{bottom:568.866667pt;}
.y10a{bottom:570.786667pt;}
.y73{bottom:571.266667pt;}
.yd6{bottom:571.906667pt;}
.y179{bottom:572.386667pt;}
.ya9{bottom:578.973333pt;}
.y109{bottom:588.413333pt;}
.y72{bottom:588.893333pt;}
.yd5{bottom:589.533333pt;}
.y178{bottom:590.013333pt;}
.y132{bottom:592.253333pt;}
.ya8{bottom:596.573333pt;}
.y108{bottom:606.013333pt;}
.y71{bottom:606.493333pt;}
.yd4{bottom:607.293333pt;}
.y177{bottom:607.613333pt;}
.y131{bottom:610.013333pt;}
.ya7{bottom:614.173333pt;}
.y107{bottom:623.613333pt;}
.y70{bottom:624.253333pt;}
.yd3{bottom:624.893333pt;}
.y176{bottom:625.373333pt;}
.y130{bottom:627.613333pt;}
.ya6{bottom:631.773333pt;}
.y106{bottom:641.373333pt;}
.y6f{bottom:641.853333pt;}
.yd2{bottom:642.493333pt;}
.y175{bottom:642.973333pt;}
.y12f{bottom:645.213333pt;}
.ya5{bottom:649.373333pt;}
.y105{bottom:658.973333pt;}
.y6e{bottom:659.453333pt;}
.yd1{bottom:660.093333pt;}
.y174{bottom:660.573333pt;}
.y12e{bottom:662.813333pt;}
.ya4{bottom:668.253333pt;}
.y104{bottom:676.573333pt;}
.y6d{bottom:677.053333pt;}
.yd0{bottom:677.693333pt;}
.y173{bottom:678.173333pt;}
.y12d{bottom:680.413333pt;}
.ya3{bottom:687.293333pt;}
.y103{bottom:694.173333pt;}
.y6c{bottom:694.653333pt;}
.ycf{bottom:695.453333pt;}
.y172{bottom:695.773333pt;}
.y12c{bottom:698.173333pt;}
.ya2{bottom:706.333333pt;}
.y129{bottom:711.293333pt;}
.y102{bottom:711.773333pt;}
.y6b{bottom:712.413333pt;}
.yce{bottom:713.053333pt;}
.y171{bottom:713.533333pt;}
.ya1{bottom:723.933333pt;}
.y101{bottom:729.533333pt;}
.y6a{bottom:730.013333pt;}
.ycd{bottom:730.653333pt;}
.y170{bottom:731.133333pt;}
.y100{bottom:742.653333pt;}
.ya0{bottom:742.973333pt;}
.y69{bottom:747.613333pt;}
.ycc{bottom:748.253333pt;}
.y16f{bottom:748.733333pt;}
.yff{bottom:760.253333pt;}
.y9f{bottom:760.573333pt;}
.y68{bottom:765.213333pt;}
.ycb{bottom:765.853333pt;}
.y16e{bottom:766.333333pt;}
.y11{bottom:768.573333pt;}
.y9e{bottom:778.173333pt;}
.yfe{bottom:782.653333pt;}
.y67{bottom:782.813333pt;}
.yca{bottom:783.613333pt;}
.y16d{bottom:783.933333pt;}
.y15c{bottom:788.573333pt;}
.y9d{bottom:795.773333pt;}
.y10{bottom:797.693333pt;}
.y66{bottom:800.613333pt;}
.yc9{bottom:801.253333pt;}
.y16c{bottom:801.733333pt;}
.yfd{bottom:803.973333pt;}
.y15b{bottom:807.653333pt;}
.y9c{bottom:813.413333pt;}
.y128{bottom:817.093333pt;}
.y65{bottom:818.213333pt;}
.yc8{bottom:818.853333pt;}
.y16b{bottom:819.333333pt;}
.yf{bottom:819.973333pt;}
.yfb{bottom:821.573333pt;}
.y15a{bottom:826.053333pt;}
.y9b{bottom:832.293333pt;}
.ye{bottom:833.413333pt;}
.y64{bottom:835.813333pt;}
.yc7{bottom:836.453333pt;}
.y16a{bottom:836.933333pt;}
.yfa{bottom:843.973333pt;}
.y159{bottom:844.453333pt;}
.y9a{bottom:851.333333pt;}
.y127{bottom:852.293333pt;}
.yd{bottom:852.773333pt;}
.y63{bottom:853.413333pt;}
.yc6{bottom:854.053333pt;}
.y169{bottom:854.533333pt;}
.yf8{bottom:861.573333pt;}
.y158{bottom:862.853333pt;}
.y99{bottom:870.373333pt;}
.y62{bottom:871.013333pt;}
.yc5{bottom:871.813333pt;}
.y168{bottom:872.133333pt;}
.yc{bottom:875.013333pt;}
.y156{bottom:881.253333pt;}
.yf6{bottom:883.493333pt;}
.y126{bottom:887.653333pt;}
.y61{bottom:888.773333pt;}
.y98{bottom:889.413333pt;}
.y167{bottom:889.893333pt;}
.y154{bottom:899.653333pt;}
.yf4{bottom:901.253333pt;}
.yb{bottom:903.173333pt;}
.y124{bottom:905.893333pt;}
.y60{bottom:906.373333pt;}
.y97{bottom:907.013333pt;}
.y166{bottom:907.493333pt;}
.y153{bottom:917.893333pt;}
.y5f{bottom:923.973333pt;}
.y96{bottom:924.613333pt;}
.y165{bottom:925.093333pt;}
.y9{bottom:927.333333pt;}
.y1{bottom:939.493333pt;}
.y5e{bottom:941.573333pt;}
.y95{bottom:942.213333pt;}
.y164{bottom:942.693333pt;}
.y5d{bottom:959.173333pt;}
.y94{bottom:959.973333pt;}
.y163{bottom:960.293333pt;}
.y5c{bottom:976.933333pt;}
.y93{bottom:977.573333pt;}
.y162{bottom:978.053333pt;}
.y152{bottom:989.093333pt;}
.y5b{bottom:994.533333pt;}
.y92{bottom:995.173333pt;}
.y161{bottom:995.653333pt;}
.y5a{bottom:1012.133333pt;}
.y91{bottom:1012.773333pt;}
.y160{bottom:1013.253333pt;}
.y59{bottom:1038.560000pt;}
.y8f{bottom:1039.360000pt;}
.y15e{bottom:1039.840000pt;}
.y58{bottom:1059.040000pt;}
.y8e{bottom:1059.680000pt;}
.y15d{bottom:1060.160000pt;}
.h2e{height:15.200000pt;}
.h2d{height:15.360000pt;}
.h20{height:17.600000pt;}
.h2b{height:17.632000pt;}
.h2f{height:17.746667pt;}
.h1e{height:17.760000pt;}
.h24{height:17.920000pt;}
.h31{height:18.240000pt;}
.h32{height:18.400000pt;}
.h33{height:18.432000pt;}
.h25{height:18.880000pt;}
.h1a{height:19.680000pt;}
.h1b{height:21.120000pt;}
.h1f{height:21.280000pt;}
.h22{height:21.312000pt;}
.h1c{height:22.240000pt;}
.h21{height:22.400000pt;}
.he{height:23.200000pt;}
.h27{height:29.920000pt;}
.hc{height:30.982500pt;}
.h1d{height:35.200000pt;}
.h26{height:35.232000pt;}
.h29{height:35.360000pt;}
.hd{height:37.479688pt;}
.h18{height:38.491250pt;}
.ha{height:41.543750pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.h28{height:43.782500pt;}
.h12{height:45.961250pt;}
.h5{height:47.125000pt;}
.h11{height:47.621250pt;}
.h6{height:47.742188pt;}
.hf{height:49.542500pt;}
.h2c{height:52.480000pt;}
.h23{height:52.960000pt;}
.hb{height:54.397500pt;}
.h3{height:55.136250pt;}
.h13{height:55.302500pt;}
.h8{height:60.057813pt;}
.h9{height:61.678750pt;}
.h16{height:62.788750pt;}
.h30{height:70.560000pt;}
.h17{height:74.501250pt;}
.h19{height:76.640000pt;}
.h15{height:80.815625pt;}
.h14{height:85.935625pt;}
.h2a{height:105.792000pt;}
.h2{height:133.946667pt;}
.h10{height:544.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w25{width:36.000000pt;}
.w22{width:41.920000pt;}
.w26{width:41.952000pt;}
.w23{width:42.080000pt;}
.w21{width:48.000000pt;}
.w24{width:48.032000pt;}
.w1f{width:60.000000pt;}
.w15{width:65.632000pt;}
.w20{width:66.112000pt;}
.wf{width:71.392000pt;}
.w2c{width:72.032000pt;}
.w17{width:77.632000pt;}
.wb{width:77.952000pt;}
.w8{width:78.432000pt;}
.w16{width:80.000000pt;}
.w27{width:83.552000pt;}
.we{width:88.960000pt;}
.w9{width:93.152000pt;}
.wd{width:94.112000pt;}
.w18{width:94.880000pt;}
.wc{width:100.800000pt;}
.w2b{width:101.472000pt;}
.wa{width:103.520000pt;}
.w19{width:103.872000pt;}
.w14{width:104.512000pt;}
.w11{width:109.920000pt;}
.w3{width:112.512000pt;}
.w2f{width:114.752000pt;}
.w13{width:115.552000pt;}
.w1d{width:117.472000pt;}
.w1e{width:120.032000pt;}
.w12{width:120.992000pt;}
.w10{width:126.432000pt;}
.w28{width:143.226667pt;}
.w2d{width:144.026667pt;}
.w7{width:154.586667pt;}
.w2a{width:155.066667pt;}
.w2e{width:192.026667pt;}
.w29{width:220.826667pt;}
.w1a{width:233.346667pt;}
.w1b{width:256.826667pt;}
.w1c{width:322.946667pt;}
.w30{width:435.293333pt;}
.w31{width:495.293333pt;}
.w6{width:538.853333pt;}
.w2{width:583.973333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xf{left:-12.360000pt;}
.xd{left:-10.234667pt;}
.x14{left:-8.160000pt;}
.x12{left:-3.200000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x23{left:44.160000pt;}
.x1{left:48.800000pt;}
.x5{left:50.240000pt;}
.x32{left:63.520000pt;}
.xb{left:64.800000pt;}
.x16{left:72.640000pt;}
.x22{left:76.031988pt;}
.x39{left:96.031988pt;}
.x20{left:107.072000pt;}
.x2f{left:128.512000pt;}
.x1b{left:130.432000pt;}
.xa{left:131.711988pt;}
.x33{left:135.546667pt;}
.xc{left:143.226667pt;}
.x37{left:148.826667pt;}
.x24{left:161.626667pt;}
.x1c{left:210.426667pt;}
.xe{left:236.386667pt;}
.x8{left:255.906655pt;}
.x17{left:270.466667pt;}
.x30{left:271.586667pt;}
.x34{left:279.586667pt;}
.x25{left:281.666667pt;}
.x1d{left:288.066667pt;}
.x10{left:339.906667pt;}
.x26{left:341.666667pt;}
.x21{left:363.906667pt;}
.x9{left:370.786655pt;}
.x18{left:380.386667pt;}
.x1e{left:382.946667pt;}
.x27{left:407.773333pt;}
.x11{left:417.853333pt;}
.x28{left:455.773333pt;}
.x35{left:471.613333pt;}
.x1f{left:486.813333pt;}
.x31{left:492.413333pt;}
.x29{left:497.693333pt;}
.x19{left:501.373333pt;}
.x13{left:518.653333pt;}
.x2a{left:539.773333pt;}
.x38{left:584.133333pt;}
.x2b{left:587.813333pt;}
.x6{left:589.093333pt;}
.x15{left:612.773333pt;}
.x36{left:615.653333pt;}
.x1a{left:616.933333pt;}
.x2c{left:629.733333pt;}
.x3{left:632.773333pt;}
.x7{left:641.093322pt;}
.x4{left:647.653322pt;}
.x2d{left:671.813333pt;}
.x2e{left:707.813333pt;}
}




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