
    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_94abdcae93024d3dbeb1094a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.204000;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_2734b8b8a37e9b6483573911.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122000;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_6017762cd45c56c13bd31bc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912598;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_f128e984e5161b9cdcb01bfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_3fb881d2dc906fa09ae61819.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_eba2685b7e523da54abc193c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_adf6c39965fef21cc0431adc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_1b2aa08b3a4008a2e15901e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_f73b6a272ec772f1bb7df7df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_b298ebd63e4255a9d39df4e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_6d4abc86666b8daf43851e45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049000;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_740054dbcdc52da52ea40374.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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_cc5c1ac0eb4ea90aa7ffe56a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958008;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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.000000px;}
.v1{vertical-align:17.940000px;}
.ls20{letter-spacing:-1.201200px;}
.ls1f{letter-spacing:-0.910800px;}
.lsf{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.567000px;}
.ls9{letter-spacing:-0.561000px;}
.ls28{letter-spacing:-0.480000px;}
.ls26{letter-spacing:-0.462000px;}
.ls32{letter-spacing:-0.420000px;}
.ls16{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.356400px;}
.lse{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.283800px;}
.ls6{letter-spacing:-0.240000px;}
.ls30{letter-spacing:-0.237600px;}
.ls1a{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.120000px;}
.ls27{letter-spacing:-0.105600px;}
.ls11{letter-spacing:-0.060000px;}
.ls21{letter-spacing:-0.013200px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.264000px;}
.ls22{letter-spacing:0.270600px;}
.ls31{letter-spacing:0.280800px;}
.ls1b{letter-spacing:0.297000px;}
.lsc{letter-spacing:0.396000px;}
.ls23{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.587400px;}
.ls24{letter-spacing:0.588000px;}
.ls10{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.636000px;}
.ls2d{letter-spacing:0.660000px;}
.ls2f{letter-spacing:0.726000px;}
.ls1d{letter-spacing:0.730800px;}
.lsb{letter-spacing:0.760200px;}
.ls2b{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.380000px;}
.ls18{letter-spacing:2.718000px;}
.ls13{letter-spacing:4.218000px;}
.ls2e{letter-spacing:5.880000px;}
.ls29{letter-spacing:7.218000px;}
.lsa{letter-spacing:10.218000px;}
.ls1c{letter-spacing:11.718000px;}
.ls2a{letter-spacing:14.718000px;}
.ls1{letter-spacing:17.718000px;}
.ls15{letter-spacing:49.152000px;}
.ls2{letter-spacing:55.320000px;}
.ls4{letter-spacing:845.952000px;}
.ls7{letter-spacing:846.102000px;}
.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;}
}
.wsd{word-spacing:-26.880000px;}
.wse{word-spacing:-20.088000px;}
.ws1c{word-spacing:-19.140000px;}
.ws16{word-spacing:-18.869400px;}
.ws17{word-spacing:-18.810000px;}
.ws11{word-spacing:-18.678000px;}
.ws15{word-spacing:-18.552600px;}
.wsf{word-spacing:-18.546000px;}
.ws6{word-spacing:-18.480000px;}
.ws1{word-spacing:-18.282000px;}
.ws14{word-spacing:-18.268800px;}
.ws19{word-spacing:-18.176400px;}
.ws10{word-spacing:-18.084000px;}
.ws4{word-spacing:-17.998200px;}
.wsb{word-spacing:-17.886000px;}
.ws18{word-spacing:-17.820000px;}
.wsc{word-spacing:-17.721000px;}
.ws12{word-spacing:-17.688000px;}
.ws13{word-spacing:-17.371200px;}
.ws1b{word-spacing:-17.280000px;}
.ws9{word-spacing:-17.220000px;}
.ws2{word-spacing:-16.620000px;}
.wsa{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.380000px;}
.ws7{word-spacing:-16.320000px;}
.ws1a{word-spacing:-16.140000px;}
.ws8{word-spacing:-16.020000px;}
.ws5{word-spacing:-12.394200px;}
.ws1d{word-spacing:-11.083800px;}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-15.967800px;}
._18{margin-left:-14.325600px;}
._16{margin-left:-11.583600px;}
._17{margin-left:-9.011400px;}
._10{margin-left:-4.801800px;}
._11{margin-left:-3.775800px;}
._b{margin-left:-2.164200px;}
._3{margin-left:-1.120800px;}
._1{width:1.171800px;}
._14{width:2.238600px;}
._6{width:3.244800px;}
._7{width:4.554000px;}
._0{width:6.430200px;}
._1a{width:7.528200px;}
._13{width:8.580000px;}
._12{width:10.048200px;}
._19{width:11.317200px;}
._2{width:13.018200px;}
._8{width:14.734200px;}
._1c{width:15.803400px;}
._4{width:16.977000px;}
._27{width:18.670800px;}
._5{width:19.838400px;}
._1d{width:21.120000px;}
._9{width:22.324200px;}
._a{width:24.373800px;}
._1b{width:25.626600px;}
._d{width:27.573000px;}
._c{width:28.710000px;}
._21{width:29.710200px;}
._1e{width:31.036200px;}
._1f{width:32.857800px;}
._26{width:33.924000px;}
._20{width:36.234000px;}
._f{width:39.822600px;}
._e{width:42.256200px;}
._25{width:48.536400px;}
._24{width:49.750200px;}
._22{width:61.528200px;}
._23{width:63.296400px;}
.fc9{color:rgb(0,176,240);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(14,52,69);}
.fc5{color:rgb(10,38,51);}
.fcb{color:transparent;}
.fc4{color:rgb(91,111,121);}
.fc8{color:rgb(65,64,64);}
.fc1{color:rgb(255,217,119);}
.fca{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(42,158,207);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:36.000000px;}
.fsb{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:81.000000px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fs6{font-size:120.000000px;}
.fs4{font-size:132.000000px;}
.fs3{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y164{bottom:3.734935px;}
.y14e{bottom:3.749935px;}
.y151{bottom:4.124935px;}
.y1b4{bottom:5.249995px;}
.y5{bottom:13.040955px;}
.y7{bottom:14.111100px;}
.yd{bottom:17.994450px;}
.y1b3{bottom:18.749995px;}
.y9{bottom:22.087650px;}
.y163{bottom:23.609935px;}
.y154{bottom:23.624935px;}
.y15f{bottom:23.654935px;}
.y150{bottom:23.999935px;}
.y4{bottom:28.040955px;}
.y1b2{bottom:32.249995px;}
.yb{bottom:33.600000px;}
.y1{bottom:36.382830px;}
.y3{bottom:43.040955px;}
.y161{bottom:43.874935px;}
.y15e{bottom:43.904935px;}
.y1b1{bottom:45.749995px;}
.y10{bottom:55.912435px;}
.y2{bottom:58.040955px;}
.yf{bottom:72.787435px;}
.y1b0{bottom:98.662440px;}
.y5d{bottom:109.537435px;}
.ya7{bottom:114.037435px;}
.y5c{bottom:127.537435px;}
.ya6{bottom:129.412435px;}
.yd2{bottom:132.037435px;}
.yfc{bottom:133.912435px;}
.y197{bottom:145.162435px;}
.y5b{bottom:145.537435px;}
.yd1{bottom:147.037435px;}
.yfb{bottom:148.912435px;}
.y15c{bottom:149.662435px;}
.y5a{bottom:150.044935px;}
.yd0{bottom:151.529935px;}
.yfa{bottom:153.419935px;}
.y196{bottom:163.169935px;}
.y59{bottom:165.029935px;}
.y111{bottom:166.544935px;}
.ycf{bottom:166.919935px;}
.y195{bottom:167.669935px;}
.yf9{bottom:168.779935px;}
.y80{bottom:169.544935px;}
.y15b{bottom:170.294935px;}
.yce{bottom:171.419935px;}
.y6{bottom:173.799900px;}
.y58{bottom:183.074935px;}
.y7f{bottom:184.574935px;}
.y110{bottom:184.949935px;}
.ycd{bottom:186.449935px;}
.y57{bottom:187.574935px;}
.y10f{bottom:189.449935px;}
.y12f{bottom:190.949935px;}
.y15a{bottom:191.324935px;}
.y159{bottom:195.824935px;}
.y56{bottom:202.574935px;}
.ycc{bottom:204.449935px;}
.y12e{bottom:206.324935px;}
.y7e{bottom:207.074935px;}
.ycb{bottom:208.949935px;}
.y12d{bottom:210.824935px;}
.y158{bottom:215.324935px;}
.y55{bottom:220.574935px;}
.y7d{bottom:222.449935px;}
.yca{bottom:223.949935px;}
.yc{bottom:224.828850px;}
.y54{bottom:225.074935px;}
.y12c{bottom:225.824935px;}
.y157{bottom:230.699935px;}
.y156{bottom:235.199935px;}
.yf7{bottom:237.449935px;}
.y53{bottom:240.074935px;}
.ya5{bottom:241.574935px;}
.yf8{bottom:241.949935px;}
.y10e{bottom:246.449935px;}
.y17a{bottom:247.949935px;}
.y155{bottom:250.199935px;}
.yc9{bottom:256.949935px;}
.y52{bottom:258.074935px;}
.yf6{bottom:260.324935px;}
.y10d{bottom:261.449935px;}
.y179{bottom:270.449935px;}
.ya3{bottom:274.949935px;}
.y51{bottom:276.074935px;}
.ya4{bottom:279.449935px;}
.y50{bottom:280.574935px;}
.yf5{bottom:282.824935px;}
.y32{bottom:290.699935px;}
.y178{bottom:292.949935px;}
.ya{bottom:293.431650px;}
.y4f{bottom:295.574935px;}
.ya2{bottom:297.449935px;}
.y12b{bottom:297.824935px;}
.yc8{bottom:301.949935px;}
.yf4{bottom:305.369935px;}
.y31{bottom:310.979935px;}
.y177{bottom:315.494935px;}
.y153{bottom:319.620000px;}
.ya1{bottom:319.994935px;}
.y12a{bottom:320.729935px;}
.y144{bottom:324.479935px;}
.yc7{bottom:324.854935px;}
.yf3{bottom:327.854935px;}
.y30{bottom:331.604935px;}
.y7c{bottom:338.354935px;}
.ya0{bottom:342.494935px;}
.y129{bottom:343.244935px;}
.y142{bottom:346.994935px;}
.yc6{bottom:347.369935px;}
.y194{bottom:350.369935px;}
.yf2{bottom:350.744935px;}
.y143{bottom:351.479935px;}
.y2f{bottom:352.244935px;}
.y4e{bottom:357.854935px;}
.y176{bottom:360.869935px;}
.y9f{bottom:365.354935px;}
.y128{bottom:365.744935px;}
.yc5{bottom:369.869935px;}
.y8{bottom:371.368500px;}
.y2e{bottom:372.869935px;}
.yf1{bottom:373.244935px;}
.y152{bottom:375.870000px;}
.y193{bottom:377.744935px;}
.y175{bottom:383.369935px;}
.y7a{bottom:384.854935px;}
.y9e{bottom:387.869935px;}
.y7b{bottom:391.604935px;}
.y141{bottom:392.354935px;}
.yc4{bottom:392.744935px;}
.y2d{bottom:393.494935px;}
.y4c{bottom:395.729935px;}
.y4d{bottom:400.244935px;}
.y127{bottom:403.619935px;}
.y174{bottom:406.244935px;}
.y9d{bottom:410.369935px;}
.y2c{bottom:414.119935px;}
.y140{bottom:414.869935px;}
.yc3{bottom:415.244935px;}
.y79{bottom:415.994935px;}
.y4b{bottom:418.244935px;}
.yf0{bottom:418.619935px;}
.y126{bottom:426.119935px;}
.y173{bottom:428.744935px;}
.y10c{bottom:430.244935px;}
.y14f{bottom:432.525000px;}
.y9c{bottom:433.274935px;}
.y2b{bottom:434.399935px;}
.yc2{bottom:437.774935px;}
.y4a{bottom:440.774935px;}
.yef{bottom:441.149935px;}
.y78{bottom:447.149935px;}
.y124{bottom:448.649935px;}
.y10b{bottom:452.774935px;}
.y125{bottom:453.149935px;}
.y2a{bottom:455.024935px;}
.y13f{bottom:460.274935px;}
.y49{bottom:463.274935px;}
.y192{bottom:463.649935px;}
.y172{bottom:466.274935px;}
.y9b{bottom:470.774935px;}
.y123{bottom:471.149935px;}
.yc0{bottom:475.274935px;}
.y29{bottom:475.649935px;}
.y77{bottom:477.899935px;}
.yed{bottom:478.649935px;}
.yc1{bottom:479.774935px;}
.y13e{bottom:482.774935px;}
.yee{bottom:483.149935px;}
.y48{bottom:486.149935px;}
.y171{bottom:488.774935px;}
.y14d{bottom:489.150000px;}
.y1ac{bottom:492.899935px;}
.y9a{bottom:493.274935px;}
.y122{bottom:494.024935px;}
.y28{bottom:496.274935px;}
.ybf{bottom:498.149935px;}
.yec{bottom:501.149935px;}
.y10a{bottom:502.649935px;}
.y13d{bottom:505.274935px;}
.y76{bottom:509.024935px;}
.y170{bottom:511.649935px;}
.y99{bottom:515.774935px;}
.y121{bottom:516.524935px;}
.ybe{bottom:520.649935px;}
.y47{bottom:523.649935px;}
.yeb{bottom:524.024935px;}
.y13c{bottom:528.149935px;}
.y1ab{bottom:528.524935px;}
.y191{bottom:529.649935px;}
.y27{bottom:532.274935px;}
.y16f{bottom:534.149935px;}
.y14c{bottom:537.524935px;}
.y98{bottom:538.649935px;}
.y120{bottom:539.024935px;}
.y75{bottom:540.149935px;}
.ybd{bottom:543.149935px;}
.y46{bottom:546.149935px;}
.yea{bottom:546.524935px;}
.y1aa{bottom:549.149935px;}
.y13b{bottom:550.649935px;}
.y16e{bottom:556.649935px;}
.y26{bottom:560.819935px;}
.y97{bottom:561.194935px;}
.ybc{bottom:566.069935px;}
.y45{bottom:569.069935px;}
.y1a9{bottom:569.819935px;}
.y74{bottom:571.319935px;}
.y13a{bottom:573.194935px;}
.y11e{bottom:576.944935px;}
.y16d{bottom:579.569935px;}
.y14a{bottom:581.069935px;}
.y11f{bottom:581.444935px;}
.y96{bottom:583.694935px;}
.y14b{bottom:585.569935px;}
.ybb{bottom:588.569935px;}
.y1a8{bottom:590.444935px;}
.y44{bottom:591.569935px;}
.ye9{bottom:591.944935px;}
.y139{bottom:596.069935px;}
.y11d{bottom:599.444935px;}
.y190{bottom:601.694935px;}
.y73{bottom:602.069935px;}
.y109{bottom:603.569935px;}
.y95{bottom:606.569935px;}
.y1a7{bottom:610.694935px;}
.yba{bottom:611.069935px;}
.y43{bottom:614.069935px;}
.ye8{bottom:614.444935px;}
.y137{bottom:618.569935px;}
.y11c{bottom:621.944935px;}
.y138{bottom:623.069935px;}
.y18f{bottom:624.194935px;}
.y16c{bottom:624.569935px;}
.y108{bottom:626.069935px;}
.y1ad{bottom:626.819935px;}
.y94{bottom:629.069935px;}
.y1a6{bottom:631.319935px;}
.y25{bottom:632.819935px;}
.yb9{bottom:633.569935px;}
.y42{bottom:636.569935px;}
.ye7{bottom:636.944935px;}
.y136{bottom:641.069935px;}
.y11b{bottom:644.444935px;}
.y18e{bottom:647.069935px;}
.y72{bottom:648.569935px;}
.y93{bottom:651.569935px;}
.y107{bottom:653.069935px;}
.y24{bottom:655.319935px;}
.yb8{bottom:656.444935px;}
.y41{bottom:659.444935px;}
.y16b{bottom:662.069935px;}
.y135{bottom:663.569935px;}
.y1a5{bottom:666.944935px;}
.y11a{bottom:667.319935px;}
.y18d{bottom:669.569935px;}
.y106{bottom:671.444935px;}
.y92{bottom:674.069935px;}
.y23{bottom:677.819935px;}
.yb7{bottom:678.944935px;}
.y3f{bottom:681.944935px;}
.ye6{bottom:682.319935px;}
.y16a{bottom:684.944935px;}
.y40{bottom:686.444935px;}
.y1a4{bottom:687.569935px;}
.y18c{bottom:692.099935px;}
.y71{bottom:693.974935px;}
.y91{bottom:696.974935px;}
.y105{bottom:698.474935px;}
.y22{bottom:700.724935px;}
.yb6{bottom:701.474935px;}
.y3e{bottom:704.474935px;}
.ye5{bottom:704.849935px;}
.y169{bottom:707.474935px;}
.y1a3{bottom:708.224935px;}
.y134{bottom:708.974935px;}
.y18b{bottom:714.599935px;}
.y104{bottom:716.474935px;}
.y90{bottom:719.474935px;}
.y21{bottom:723.224935px;}
.y3d{bottom:727.349935px;}
.y1a2{bottom:728.474935px;}
.y168{bottom:729.974935px;}
.y70{bottom:731.474935px;}
.y18a{bottom:737.474935px;}
.yb4{bottom:739.349935px;}
.ye4{bottom:742.349935px;}
.yb5{bottom:743.849935px;}
.y20{bottom:745.724935px;}
.y1a1{bottom:749.099935px;}
.y118{bottom:750.224935px;}
.y3c{bottom:752.849935px;}
.y6f{bottom:754.349935px;}
.y119{bottom:754.724935px;}
.y8f{bottom:756.974935px;}
.y189{bottom:759.974935px;}
.yb3{bottom:761.849935px;}
.ye3{bottom:765.224935px;}
.y1f{bottom:768.599935px;}
.y1a0{bottom:769.724935px;}
.y117{bottom:772.724935px;}
.y38{bottom:775.349935px;}
.y6e{bottom:776.849935px;}
.y8e{bottom:779.849935px;}
.y188{bottom:782.474935px;}
.y167{bottom:783.224935px;}
.yb2{bottom:784.349935px;}
.y149{bottom:787.349935px;}
.ye2{bottom:787.724935px;}
.y19f{bottom:790.349935px;}
.y1e{bottom:791.099935px;}
.y116{bottom:795.224935px;}
.y3b{bottom:798.224935px;}
.y6d{bottom:799.349935px;}
.y8d{bottom:802.349935px;}
.yb1{bottom:806.849935px;}
.ye1{bottom:810.224935px;}
.y1d{bottom:813.599935px;}
.y19e{bottom:814.349935px;}
.y37{bottom:817.019935px;}
.y115{bottom:817.754935px;}
.y187{bottom:820.394935px;}
.y6c{bottom:821.894935px;}
.y8c{bottom:824.879935px;}
.y166{bottom:831.629935px;}
.ye0{bottom:832.769935px;}
.y1c{bottom:836.144935px;}
.y186{bottom:842.894935px;}
.y6b{bottom:844.754935px;}
.y8b{bottom:847.379935px;}
.yb0{bottom:849.254935px;}
.ydf{bottom:855.644935px;}
.y165{bottom:856.755000px;}
.y1b{bottom:859.019935px;}
.y19d{bottom:859.769935px;}
.y185{bottom:865.379935px;}
.yaf{bottom:867.254935px;}
.y8a{bottom:870.254935px;}
.y147{bottom:870.629935px;}
.y133{bottom:871.754935px;}
.y148{bottom:875.129935px;}
.ydd{bottom:878.129935px;}
.y1a{bottom:881.504935px;}
.y6a{bottom:882.254935px;}
.yde{bottom:882.629935px;}
.y184{bottom:887.879935px;}
.y36{bottom:889.379935px;}
.yae{bottom:889.754935px;}
.y89{bottom:892.754935px;}
.y146{bottom:893.129935px;}
.y19c{bottom:897.629935px;}
.ydc{bottom:900.629935px;}
.y19{bottom:904.004935px;}
.y68{bottom:904.754935px;}
.y69{bottom:909.254935px;}
.y183{bottom:910.754935px;}
.yad{bottom:912.629935px;}
.y162{bottom:913.395000px;}
.y88{bottom:915.254935px;}
.y102{bottom:915.629935px;}
.y35{bottom:919.379935px;}
.y103{bottom:920.129935px;}
.ydb{bottom:923.504935px;}
.y18{bottom:926.879935px;}
.y67{bottom:927.629935px;}
.y114{bottom:928.004935px;}
.y3a{bottom:931.379935px;}
.y182{bottom:933.254935px;}
.yac{bottom:935.129935px;}
.y87{bottom:938.129935px;}
.y101{bottom:938.504935px;}
.y19b{bottom:942.629935px;}
.yda{bottom:946.049935px;}
.y17{bottom:949.424935px;}
.y66{bottom:950.174935px;}
.yab{bottom:957.674935px;}
.y86{bottom:960.674935px;}
.y100{bottom:961.049935px;}
.y19a{bottom:965.174935px;}
.yd9{bottom:968.549935px;}
.y181{bottom:970.799935px;}
.y16{bottom:971.924935px;}
.y64{bottom:972.674935px;}
.y65{bottom:977.174935px;}
.y34{bottom:979.424935px;}
.yaa{bottom:980.174935px;}
.y85{bottom:983.174935px;}
.yfe{bottom:983.549935px;}
.y132{bottom:984.674935px;}
.yff{bottom:988.049935px;}
.y160{bottom:989.925000px;}
.yd8{bottom:991.049935px;}
.y180{bottom:993.674935px;}
.y15{bottom:994.424935px;}
.y63{bottom:995.174935px;}
.y39{bottom:998.924935px;}
.ya9{bottom:1003.049935px;}
.y84{bottom:1005.674935px;}
.yfd{bottom:1006.049935px;}
.y33{bottom:1009.799935px;}
.y199{bottom:1013.549935px;}
.y113{bottom:1013.924935px;}
.y17f{bottom:1016.174935px;}
.y14{bottom:1017.299935px;}
.y62{bottom:1018.049935px;}
.y131{bottom:1025.549935px;}
.yd7{bottom:1028.924935px;}
.y83{bottom:1031.549935px;}
.y145{bottom:1033.424935px;}
.y17e{bottom:1038.674935px;}
.y13{bottom:1039.799935px;}
.y61{bottom:1040.549935px;}
.ya8{bottom:1045.049935px;}
.y130{bottom:1048.049935px;}
.yd6{bottom:1051.424935px;}
.y112{bottom:1055.924935px;}
.y198{bottom:1058.924935px;}
.y17d{bottom:1061.174935px;}
.y60{bottom:1063.049935px;}
.y15d{bottom:1066.425000px;}
.yd5{bottom:1073.924935px;}
.y82{bottom:1076.954935px;}
.y12{bottom:1077.329935px;}
.y1af{bottom:1083.704935px;}
.y17c{bottom:1084.079935px;}
.y5f{bottom:1085.954935px;}
.yd4{bottom:1096.829935px;}
.y81{bottom:1105.454935px;}
.y11{bottom:1105.829935px;}
.y5e{bottom:1111.454935px;}
.y17b{bottom:1114.454935px;}
.yd3{bottom:1119.329935px;}
.y1ae{bottom:1120.829935px;}
.ye{bottom:1196.579935px;}
.h18{height:19.875000px;}
.h11{height:32.771484px;}
.h1f{height:35.112305px;}
.h4{height:38.186205px;}
.h3{height:39.228000px;}
.h1a{height:39.750000px;}
.h19{height:40.125000px;}
.hd{height:40.500000px;}
.h10{height:46.816406px;}
.h12{height:49.500000px;}
.h15{height:51.480000px;}
.he{height:51.498047px;}
.h1e{height:56.625000px;}
.h16{height:56.628000px;}
.h6{height:57.712650px;}
.h1c{height:60.000000px;}
.h1d{height:60.022500px;}
.h1b{height:60.037500px;}
.ha{height:60.633540px;}
.h5{height:61.644000px;}
.h17{height:63.000000px;}
.h14{height:69.498000px;}
.h13{height:72.000000px;}
.h2{height:74.315940px;}
.h7{height:84.060000px;}
.hf{height:90.000000px;}
.h8{height:92.400000px;}
.hb{height:97.130859px;}
.h9{height:153.384000px;}
.h0{height:1262.835000px;}
.hc{height:1262.999935px;}
.h1{height:1263.000000px;}
.wa{width:168.450000px;}
.wb{width:168.825000px;}
.wc{width:169.200000px;}
.wd{width:169.575000px;}
.w3{width:172.898700px;}
.w4{width:176.648700px;}
.w6{width:367.507650px;}
.we{width:622.770000px;}
.w2{width:658.392300px;}
.w5{width:715.975350px;}
.w9{width:892.874973px;}
.w8{width:892.874987px;}
.w7{width:892.875000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x57{left:-6.375013px;}
.x0{left:0.000000px;}
.x2{left:6.000000px;}
.x50{left:7.500000px;}
.x59{left:10.500000px;}
.x8{left:14.700000px;}
.x4{left:24.421200px;}
.x6{left:39.826200px;}
.xa{left:64.904400px;}
.xb{left:106.537487px;}
.x4c{left:108.037500px;}
.x17{left:112.537487px;}
.x7{left:114.693120px;}
.x29{left:118.537487px;}
.xd{left:133.574987px;}
.x3b{left:151.199973px;}
.xe{left:160.574987px;}
.x58{left:162.075000px;}
.x1{left:163.481550px;}
.x1c{left:176.699987px;}
.x43{left:178.949973px;}
.x33{left:188.699973px;}
.x44{left:190.949987px;}
.x34{left:200.699987px;}
.x39{left:212.699973px;}
.x27{left:220.994973px;}
.x3a{left:224.744987px;}
.x1d{left:226.619973px;}
.x28{left:232.994987px;}
.x1e{left:234.119987px;}
.x2c{left:265.244973px;}
.x11{left:270.869973px;}
.x12{left:276.869987px;}
.x4d{left:277.995000px;}
.x35{left:285.494973px;}
.x36{left:297.494987px;}
.x51{left:301.619973px;}
.x52{left:313.649987px;}
.x23{left:320.399973px;}
.x16{left:322.649987px;}
.x24{left:332.399987px;}
.x41{left:345.524973px;}
.x42{left:357.524987px;}
.xf{left:361.274973px;}
.x53{left:365.774973px;}
.x10{left:367.274987px;}
.x54{left:377.774987px;}
.x3c{left:382.649973px;}
.x3d{left:394.694987px;}
.x4a{left:406.694973px;}
.x25{left:408.569973px;}
.x26{left:420.569987px;}
.x4b{left:421.694987px;}
.x9{left:435.041100px;}
.x31{left:441.944973px;}
.x4e{left:447.945000px;}
.x32{left:453.944987px;}
.x3e{left:476.444973px;}
.x3f{left:488.474987px;}
.x45{left:497.099973px;}
.x47{left:506.849973px;}
.x46{left:509.099987px;}
.x48{left:518.849987px;}
.x1a{left:524.849973px;}
.x1b{left:530.849987px;}
.x55{left:548.849973px;}
.x56{left:560.849987px;}
.x2d{left:589.754973px;}
.x1f{left:596.894973px;}
.x2e{left:601.769987px;}
.x20{left:602.879987px;}
.x4f{left:618.270000px;}
.x5{left:623.481900px;}
.x3{left:625.356900px;}
.x37{left:678.674973px;}
.x18{left:685.049973px;}
.x49{left:687.674973px;}
.x13{left:688.799973px;}
.x19{left:691.049987px;}
.x14{left:694.799987px;}
.x15{left:700.049987px;}
.x2f{left:702.299973px;}
.x40{left:703.799987px;}
.x30{left:714.299987px;}
.x21{left:716.549973px;}
.x22{left:722.549987px;}
.x38{left:768.704987px;}
.x2a{left:775.079973px;}
.xc{left:778.094987px;}
.x2b{left:787.079987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.333333pt;}
.v1{vertical-align:15.946667pt;}
.ls20{letter-spacing:-1.067733pt;}
.ls1f{letter-spacing:-0.809600pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.504000pt;}
.ls9{letter-spacing:-0.498667pt;}
.ls28{letter-spacing:-0.426667pt;}
.ls26{letter-spacing:-0.410667pt;}
.ls32{letter-spacing:-0.373333pt;}
.ls16{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.316800pt;}
.lse{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.252267pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls30{letter-spacing:-0.211200pt;}
.ls1a{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls27{letter-spacing:-0.093867pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls21{letter-spacing:-0.011733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.234667pt;}
.ls22{letter-spacing:0.240533pt;}
.ls31{letter-spacing:0.249600pt;}
.ls1b{letter-spacing:0.264000pt;}
.lsc{letter-spacing:0.352000pt;}
.ls23{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.522133pt;}
.ls24{letter-spacing:0.522667pt;}
.ls10{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.565333pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls2f{letter-spacing:0.645333pt;}
.ls1d{letter-spacing:0.649600pt;}
.lsb{letter-spacing:0.675733pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:1.226667pt;}
.ls18{letter-spacing:2.416000pt;}
.ls13{letter-spacing:3.749333pt;}
.ls2e{letter-spacing:5.226667pt;}
.ls29{letter-spacing:6.416000pt;}
.lsa{letter-spacing:9.082667pt;}
.ls1c{letter-spacing:10.416000pt;}
.ls2a{letter-spacing:13.082667pt;}
.ls1{letter-spacing:15.749333pt;}
.ls15{letter-spacing:43.690667pt;}
.ls2{letter-spacing:49.173333pt;}
.ls4{letter-spacing:751.957333pt;}
.ls7{letter-spacing:752.090667pt;}
.wsd{word-spacing:-23.893333pt;}
.wse{word-spacing:-17.856000pt;}
.ws1c{word-spacing:-17.013333pt;}
.ws16{word-spacing:-16.772800pt;}
.ws17{word-spacing:-16.720000pt;}
.ws11{word-spacing:-16.602667pt;}
.ws15{word-spacing:-16.491200pt;}
.wsf{word-spacing:-16.485333pt;}
.ws6{word-spacing:-16.426667pt;}
.ws1{word-spacing:-16.250667pt;}
.ws14{word-spacing:-16.238933pt;}
.ws19{word-spacing:-16.156800pt;}
.ws10{word-spacing:-16.074667pt;}
.ws4{word-spacing:-15.998400pt;}
.wsb{word-spacing:-15.898667pt;}
.ws18{word-spacing:-15.840000pt;}
.wsc{word-spacing:-15.752000pt;}
.ws12{word-spacing:-15.722667pt;}
.ws13{word-spacing:-15.441067pt;}
.ws1b{word-spacing:-15.360000pt;}
.ws9{word-spacing:-15.306667pt;}
.ws2{word-spacing:-14.773333pt;}
.wsa{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.560000pt;}
.ws7{word-spacing:-14.506667pt;}
.ws1a{word-spacing:-14.346667pt;}
.ws8{word-spacing:-14.240000pt;}
.ws5{word-spacing:-11.017067pt;}
.ws1d{word-spacing:-9.852267pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-14.193600pt;}
._18{margin-left:-12.733867pt;}
._16{margin-left:-10.296533pt;}
._17{margin-left:-8.010133pt;}
._10{margin-left:-4.268267pt;}
._11{margin-left:-3.356267pt;}
._b{margin-left:-1.923733pt;}
._3{margin-left:-0.996267pt;}
._1{width:1.041600pt;}
._14{width:1.989867pt;}
._6{width:2.884267pt;}
._7{width:4.048000pt;}
._0{width:5.715733pt;}
._1a{width:6.691733pt;}
._13{width:7.626667pt;}
._12{width:8.931733pt;}
._19{width:10.059733pt;}
._2{width:11.571733pt;}
._8{width:13.097067pt;}
._1c{width:14.047467pt;}
._4{width:15.090667pt;}
._27{width:16.596267pt;}
._5{width:17.634133pt;}
._1d{width:18.773333pt;}
._9{width:19.843733pt;}
._a{width:21.665600pt;}
._1b{width:22.779200pt;}
._d{width:24.509333pt;}
._c{width:25.520000pt;}
._21{width:26.409067pt;}
._1e{width:27.587733pt;}
._1f{width:29.206933pt;}
._26{width:30.154667pt;}
._20{width:32.208000pt;}
._f{width:35.397867pt;}
._e{width:37.561067pt;}
._25{width:43.143467pt;}
._24{width:44.222400pt;}
._22{width:54.691733pt;}
._23{width:56.263467pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:72.000000pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fs6{font-size:106.666667pt;}
.fs4{font-size:117.333333pt;}
.fs3{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:3.319942pt;}
.y14e{bottom:3.333276pt;}
.y151{bottom:3.666609pt;}
.y1b4{bottom:4.666662pt;}
.y5{bottom:11.591960pt;}
.y7{bottom:12.543200pt;}
.yd{bottom:15.995067pt;}
.y1b3{bottom:16.666662pt;}
.y9{bottom:19.633467pt;}
.y163{bottom:20.986609pt;}
.y154{bottom:20.999942pt;}
.y15f{bottom:21.026609pt;}
.y150{bottom:21.333276pt;}
.y4{bottom:24.925293pt;}
.y1b2{bottom:28.666662pt;}
.yb{bottom:29.866667pt;}
.y1{bottom:32.340293pt;}
.y3{bottom:38.258627pt;}
.y161{bottom:38.999942pt;}
.y15e{bottom:39.026609pt;}
.y1b1{bottom:40.666662pt;}
.y10{bottom:49.699942pt;}
.y2{bottom:51.591960pt;}
.yf{bottom:64.699942pt;}
.y1b0{bottom:87.699947pt;}
.y5d{bottom:97.366609pt;}
.ya7{bottom:101.366609pt;}
.y5c{bottom:113.366609pt;}
.ya6{bottom:115.033276pt;}
.yd2{bottom:117.366609pt;}
.yfc{bottom:119.033276pt;}
.y197{bottom:129.033276pt;}
.y5b{bottom:129.366609pt;}
.yd1{bottom:130.699942pt;}
.yfb{bottom:132.366609pt;}
.y15c{bottom:133.033276pt;}
.y5a{bottom:133.373276pt;}
.yd0{bottom:134.693276pt;}
.yfa{bottom:136.373276pt;}
.y196{bottom:145.039942pt;}
.y59{bottom:146.693276pt;}
.y111{bottom:148.039942pt;}
.ycf{bottom:148.373276pt;}
.y195{bottom:149.039942pt;}
.yf9{bottom:150.026609pt;}
.y80{bottom:150.706609pt;}
.y15b{bottom:151.373276pt;}
.yce{bottom:152.373276pt;}
.y6{bottom:154.488800pt;}
.y58{bottom:162.733276pt;}
.y7f{bottom:164.066609pt;}
.y110{bottom:164.399942pt;}
.ycd{bottom:165.733276pt;}
.y57{bottom:166.733276pt;}
.y10f{bottom:168.399942pt;}
.y12f{bottom:169.733276pt;}
.y15a{bottom:170.066609pt;}
.y159{bottom:174.066609pt;}
.y56{bottom:180.066609pt;}
.ycc{bottom:181.733276pt;}
.y12e{bottom:183.399942pt;}
.y7e{bottom:184.066609pt;}
.ycb{bottom:185.733276pt;}
.y12d{bottom:187.399942pt;}
.y158{bottom:191.399942pt;}
.y55{bottom:196.066609pt;}
.y7d{bottom:197.733276pt;}
.yca{bottom:199.066609pt;}
.yc{bottom:199.847867pt;}
.y54{bottom:200.066609pt;}
.y12c{bottom:200.733276pt;}
.y157{bottom:205.066609pt;}
.y156{bottom:209.066609pt;}
.yf7{bottom:211.066609pt;}
.y53{bottom:213.399942pt;}
.ya5{bottom:214.733276pt;}
.yf8{bottom:215.066609pt;}
.y10e{bottom:219.066609pt;}
.y17a{bottom:220.399942pt;}
.y155{bottom:222.399942pt;}
.yc9{bottom:228.399942pt;}
.y52{bottom:229.399942pt;}
.yf6{bottom:231.399942pt;}
.y10d{bottom:232.399942pt;}
.y179{bottom:240.399942pt;}
.ya3{bottom:244.399942pt;}
.y51{bottom:245.399942pt;}
.ya4{bottom:248.399942pt;}
.y50{bottom:249.399942pt;}
.yf5{bottom:251.399942pt;}
.y32{bottom:258.399942pt;}
.y178{bottom:260.399942pt;}
.ya{bottom:260.828133pt;}
.y4f{bottom:262.733276pt;}
.ya2{bottom:264.399942pt;}
.y12b{bottom:264.733276pt;}
.yc8{bottom:268.399942pt;}
.yf4{bottom:271.439942pt;}
.y31{bottom:276.426609pt;}
.y177{bottom:280.439942pt;}
.y153{bottom:284.106667pt;}
.ya1{bottom:284.439942pt;}
.y12a{bottom:285.093276pt;}
.y144{bottom:288.426609pt;}
.yc7{bottom:288.759942pt;}
.yf3{bottom:291.426609pt;}
.y30{bottom:294.759942pt;}
.y7c{bottom:300.759942pt;}
.ya0{bottom:304.439942pt;}
.y129{bottom:305.106609pt;}
.y142{bottom:308.439942pt;}
.yc6{bottom:308.773276pt;}
.y194{bottom:311.439942pt;}
.yf2{bottom:311.773276pt;}
.y143{bottom:312.426609pt;}
.y2f{bottom:313.106609pt;}
.y4e{bottom:318.093276pt;}
.y176{bottom:320.773276pt;}
.y9f{bottom:324.759942pt;}
.y128{bottom:325.106609pt;}
.yc5{bottom:328.773276pt;}
.y8{bottom:330.105333pt;}
.y2e{bottom:331.439942pt;}
.yf1{bottom:331.773276pt;}
.y152{bottom:334.106667pt;}
.y193{bottom:335.773276pt;}
.y175{bottom:340.773276pt;}
.y7a{bottom:342.093276pt;}
.y9e{bottom:344.773276pt;}
.y7b{bottom:348.093276pt;}
.y141{bottom:348.759942pt;}
.yc4{bottom:349.106609pt;}
.y2d{bottom:349.773276pt;}
.y4c{bottom:351.759942pt;}
.y4d{bottom:355.773276pt;}
.y127{bottom:358.773276pt;}
.y174{bottom:361.106609pt;}
.y9d{bottom:364.773276pt;}
.y2c{bottom:368.106609pt;}
.y140{bottom:368.773276pt;}
.yc3{bottom:369.106609pt;}
.y79{bottom:369.773276pt;}
.y4b{bottom:371.773276pt;}
.yf0{bottom:372.106609pt;}
.y126{bottom:378.773276pt;}
.y173{bottom:381.106609pt;}
.y10c{bottom:382.439942pt;}
.y14f{bottom:384.466667pt;}
.y9c{bottom:385.133276pt;}
.y2b{bottom:386.133276pt;}
.yc2{bottom:389.133276pt;}
.y4a{bottom:391.799942pt;}
.yef{bottom:392.133276pt;}
.y78{bottom:397.466609pt;}
.y124{bottom:398.799942pt;}
.y10b{bottom:402.466609pt;}
.y125{bottom:402.799942pt;}
.y2a{bottom:404.466609pt;}
.y13f{bottom:409.133276pt;}
.y49{bottom:411.799942pt;}
.y192{bottom:412.133276pt;}
.y172{bottom:414.466609pt;}
.y9b{bottom:418.466609pt;}
.y123{bottom:418.799942pt;}
.yc0{bottom:422.466609pt;}
.y29{bottom:422.799942pt;}
.y77{bottom:424.799942pt;}
.yed{bottom:425.466609pt;}
.yc1{bottom:426.466609pt;}
.y13e{bottom:429.133276pt;}
.yee{bottom:429.466609pt;}
.y48{bottom:432.133276pt;}
.y171{bottom:434.466609pt;}
.y14d{bottom:434.800000pt;}
.y1ac{bottom:438.133276pt;}
.y9a{bottom:438.466609pt;}
.y122{bottom:439.133276pt;}
.y28{bottom:441.133276pt;}
.ybf{bottom:442.799942pt;}
.yec{bottom:445.466609pt;}
.y10a{bottom:446.799942pt;}
.y13d{bottom:449.133276pt;}
.y76{bottom:452.466609pt;}
.y170{bottom:454.799942pt;}
.y99{bottom:458.466609pt;}
.y121{bottom:459.133276pt;}
.ybe{bottom:462.799942pt;}
.y47{bottom:465.466609pt;}
.yeb{bottom:465.799942pt;}
.y13c{bottom:469.466609pt;}
.y1ab{bottom:469.799942pt;}
.y191{bottom:470.799942pt;}
.y27{bottom:473.133276pt;}
.y16f{bottom:474.799942pt;}
.y14c{bottom:477.799942pt;}
.y98{bottom:478.799942pt;}
.y120{bottom:479.133276pt;}
.y75{bottom:480.133276pt;}
.ybd{bottom:482.799942pt;}
.y46{bottom:485.466609pt;}
.yea{bottom:485.799942pt;}
.y1aa{bottom:488.133276pt;}
.y13b{bottom:489.466609pt;}
.y16e{bottom:494.799942pt;}
.y26{bottom:498.506609pt;}
.y97{bottom:498.839942pt;}
.ybc{bottom:503.173276pt;}
.y45{bottom:505.839942pt;}
.y1a9{bottom:506.506609pt;}
.y74{bottom:507.839942pt;}
.y13a{bottom:509.506609pt;}
.y11e{bottom:512.839942pt;}
.y16d{bottom:515.173276pt;}
.y14a{bottom:516.506609pt;}
.y11f{bottom:516.839942pt;}
.y96{bottom:518.839942pt;}
.y14b{bottom:520.506609pt;}
.ybb{bottom:523.173276pt;}
.y1a8{bottom:524.839942pt;}
.y44{bottom:525.839942pt;}
.ye9{bottom:526.173276pt;}
.y139{bottom:529.839942pt;}
.y11d{bottom:532.839942pt;}
.y190{bottom:534.839942pt;}
.y73{bottom:535.173276pt;}
.y109{bottom:536.506609pt;}
.y95{bottom:539.173276pt;}
.y1a7{bottom:542.839942pt;}
.yba{bottom:543.173276pt;}
.y43{bottom:545.839942pt;}
.ye8{bottom:546.173276pt;}
.y137{bottom:549.839942pt;}
.y11c{bottom:552.839942pt;}
.y138{bottom:553.839942pt;}
.y18f{bottom:554.839942pt;}
.y16c{bottom:555.173276pt;}
.y108{bottom:556.506609pt;}
.y1ad{bottom:557.173276pt;}
.y94{bottom:559.173276pt;}
.y1a6{bottom:561.173276pt;}
.y25{bottom:562.506609pt;}
.yb9{bottom:563.173276pt;}
.y42{bottom:565.839942pt;}
.ye7{bottom:566.173276pt;}
.y136{bottom:569.839942pt;}
.y11b{bottom:572.839942pt;}
.y18e{bottom:575.173276pt;}
.y72{bottom:576.506609pt;}
.y93{bottom:579.173276pt;}
.y107{bottom:580.506609pt;}
.y24{bottom:582.506609pt;}
.yb8{bottom:583.506609pt;}
.y41{bottom:586.173276pt;}
.y16b{bottom:588.506609pt;}
.y135{bottom:589.839942pt;}
.y1a5{bottom:592.839942pt;}
.y11a{bottom:593.173276pt;}
.y18d{bottom:595.173276pt;}
.y106{bottom:596.839942pt;}
.y92{bottom:599.173276pt;}
.y23{bottom:602.506609pt;}
.yb7{bottom:603.506609pt;}
.y3f{bottom:606.173276pt;}
.ye6{bottom:606.506609pt;}
.y16a{bottom:608.839942pt;}
.y40{bottom:610.173276pt;}
.y1a4{bottom:611.173276pt;}
.y18c{bottom:615.199942pt;}
.y71{bottom:616.866609pt;}
.y91{bottom:619.533276pt;}
.y105{bottom:620.866609pt;}
.y22{bottom:622.866609pt;}
.yb6{bottom:623.533276pt;}
.y3e{bottom:626.199942pt;}
.ye5{bottom:626.533276pt;}
.y169{bottom:628.866609pt;}
.y1a3{bottom:629.533276pt;}
.y134{bottom:630.199942pt;}
.y18b{bottom:635.199942pt;}
.y104{bottom:636.866609pt;}
.y90{bottom:639.533276pt;}
.y21{bottom:642.866609pt;}
.y3d{bottom:646.533276pt;}
.y1a2{bottom:647.533276pt;}
.y168{bottom:648.866609pt;}
.y70{bottom:650.199942pt;}
.y18a{bottom:655.533276pt;}
.yb4{bottom:657.199942pt;}
.ye4{bottom:659.866609pt;}
.yb5{bottom:661.199942pt;}
.y20{bottom:662.866609pt;}
.y1a1{bottom:665.866609pt;}
.y118{bottom:666.866609pt;}
.y3c{bottom:669.199942pt;}
.y6f{bottom:670.533276pt;}
.y119{bottom:670.866609pt;}
.y8f{bottom:672.866609pt;}
.y189{bottom:675.533276pt;}
.yb3{bottom:677.199942pt;}
.ye3{bottom:680.199942pt;}
.y1f{bottom:683.199942pt;}
.y1a0{bottom:684.199942pt;}
.y117{bottom:686.866609pt;}
.y38{bottom:689.199942pt;}
.y6e{bottom:690.533276pt;}
.y8e{bottom:693.199942pt;}
.y188{bottom:695.533276pt;}
.y167{bottom:696.199942pt;}
.yb2{bottom:697.199942pt;}
.y149{bottom:699.866609pt;}
.ye2{bottom:700.199942pt;}
.y19f{bottom:702.533276pt;}
.y1e{bottom:703.199942pt;}
.y116{bottom:706.866609pt;}
.y3b{bottom:709.533276pt;}
.y6d{bottom:710.533276pt;}
.y8d{bottom:713.199942pt;}
.yb1{bottom:717.199942pt;}
.ye1{bottom:720.199942pt;}
.y1d{bottom:723.199942pt;}
.y19e{bottom:723.866609pt;}
.y37{bottom:726.239942pt;}
.y115{bottom:726.893276pt;}
.y187{bottom:729.239942pt;}
.y6c{bottom:730.573276pt;}
.y8c{bottom:733.226609pt;}
.y166{bottom:739.226609pt;}
.ye0{bottom:740.239942pt;}
.y1c{bottom:743.239942pt;}
.y186{bottom:749.239942pt;}
.y6b{bottom:750.893276pt;}
.y8b{bottom:753.226609pt;}
.yb0{bottom:754.893276pt;}
.ydf{bottom:760.573276pt;}
.y165{bottom:761.560000pt;}
.y1b{bottom:763.573276pt;}
.y19d{bottom:764.239942pt;}
.y185{bottom:769.226609pt;}
.yaf{bottom:770.893276pt;}
.y8a{bottom:773.559942pt;}
.y147{bottom:773.893276pt;}
.y133{bottom:774.893276pt;}
.y148{bottom:777.893276pt;}
.ydd{bottom:780.559942pt;}
.y1a{bottom:783.559942pt;}
.y6a{bottom:784.226609pt;}
.yde{bottom:784.559942pt;}
.y184{bottom:789.226609pt;}
.y36{bottom:790.559942pt;}
.yae{bottom:790.893276pt;}
.y89{bottom:793.559942pt;}
.y146{bottom:793.893276pt;}
.y19c{bottom:797.893276pt;}
.ydc{bottom:800.559942pt;}
.y19{bottom:803.559942pt;}
.y68{bottom:804.226609pt;}
.y69{bottom:808.226609pt;}
.y183{bottom:809.559942pt;}
.yad{bottom:811.226609pt;}
.y162{bottom:811.906667pt;}
.y88{bottom:813.559942pt;}
.y102{bottom:813.893276pt;}
.y35{bottom:817.226609pt;}
.y103{bottom:817.893276pt;}
.ydb{bottom:820.893276pt;}
.y18{bottom:823.893276pt;}
.y67{bottom:824.559942pt;}
.y114{bottom:824.893276pt;}
.y3a{bottom:827.893276pt;}
.y182{bottom:829.559942pt;}
.yac{bottom:831.226609pt;}
.y87{bottom:833.893276pt;}
.y101{bottom:834.226609pt;}
.y19b{bottom:837.893276pt;}
.yda{bottom:840.933276pt;}
.y17{bottom:843.933276pt;}
.y66{bottom:844.599942pt;}
.yab{bottom:851.266609pt;}
.y86{bottom:853.933276pt;}
.y100{bottom:854.266609pt;}
.y19a{bottom:857.933276pt;}
.yd9{bottom:860.933276pt;}
.y181{bottom:862.933276pt;}
.y16{bottom:863.933276pt;}
.y64{bottom:864.599942pt;}
.y65{bottom:868.599942pt;}
.y34{bottom:870.599942pt;}
.yaa{bottom:871.266609pt;}
.y85{bottom:873.933276pt;}
.yfe{bottom:874.266609pt;}
.y132{bottom:875.266609pt;}
.yff{bottom:878.266609pt;}
.y160{bottom:879.933333pt;}
.yd8{bottom:880.933276pt;}
.y180{bottom:883.266609pt;}
.y15{bottom:883.933276pt;}
.y63{bottom:884.599942pt;}
.y39{bottom:887.933276pt;}
.ya9{bottom:891.599942pt;}
.y84{bottom:893.933276pt;}
.yfd{bottom:894.266609pt;}
.y33{bottom:897.599942pt;}
.y199{bottom:900.933276pt;}
.y113{bottom:901.266609pt;}
.y17f{bottom:903.266609pt;}
.y14{bottom:904.266609pt;}
.y62{bottom:904.933276pt;}
.y131{bottom:911.599942pt;}
.yd7{bottom:914.599942pt;}
.y83{bottom:916.933276pt;}
.y145{bottom:918.599942pt;}
.y17e{bottom:923.266609pt;}
.y13{bottom:924.266609pt;}
.y61{bottom:924.933276pt;}
.ya8{bottom:928.933276pt;}
.y130{bottom:931.599942pt;}
.yd6{bottom:934.599942pt;}
.y112{bottom:938.599942pt;}
.y198{bottom:941.266609pt;}
.y17d{bottom:943.266609pt;}
.y60{bottom:944.933276pt;}
.y15d{bottom:947.933333pt;}
.yd5{bottom:954.599942pt;}
.y82{bottom:957.293276pt;}
.y12{bottom:957.626609pt;}
.y1af{bottom:963.293276pt;}
.y17c{bottom:963.626609pt;}
.y5f{bottom:965.293276pt;}
.yd4{bottom:974.959942pt;}
.y81{bottom:982.626609pt;}
.y11{bottom:982.959942pt;}
.y5e{bottom:987.959942pt;}
.y17b{bottom:990.626609pt;}
.yd3{bottom:994.959942pt;}
.y1ae{bottom:996.293276pt;}
.ye{bottom:1063.626609pt;}
.h18{height:17.666667pt;}
.h11{height:29.130208pt;}
.h1f{height:31.210938pt;}
.h4{height:33.943293pt;}
.h3{height:34.869333pt;}
.h1a{height:35.333333pt;}
.h19{height:35.666667pt;}
.hd{height:36.000000pt;}
.h10{height:41.614583pt;}
.h12{height:44.000000pt;}
.h15{height:45.760000pt;}
.he{height:45.776042pt;}
.h1e{height:50.333333pt;}
.h16{height:50.336000pt;}
.h6{height:51.300133pt;}
.h1c{height:53.333333pt;}
.h1d{height:53.353333pt;}
.h1b{height:53.366667pt;}
.ha{height:53.896480pt;}
.h5{height:54.794667pt;}
.h17{height:56.000000pt;}
.h14{height:61.776000pt;}
.h13{height:64.000000pt;}
.h2{height:66.058613pt;}
.h7{height:74.720000pt;}
.hf{height:80.000000pt;}
.h8{height:82.133333pt;}
.hb{height:86.338542pt;}
.h9{height:136.341333pt;}
.h0{height:1122.520000pt;}
.hc{height:1122.666609pt;}
.h1{height:1122.666667pt;}
.wa{width:149.733333pt;}
.wb{width:150.066667pt;}
.wc{width:150.400000pt;}
.wd{width:150.733333pt;}
.w3{width:153.687733pt;}
.w4{width:157.021067pt;}
.w6{width:326.673467pt;}
.we{width:553.573333pt;}
.w2{width:585.237600pt;}
.w5{width:636.422533pt;}
.w9{width:793.666643pt;}
.w8{width:793.666655pt;}
.w7{width:793.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x57{left:-5.666678pt;}
.x0{left:0.000000pt;}
.x2{left:5.333333pt;}
.x50{left:6.666667pt;}
.x59{left:9.333333pt;}
.x8{left:13.066667pt;}
.x4{left:21.707733pt;}
.x6{left:35.401067pt;}
.xa{left:57.692800pt;}
.xb{left:94.699988pt;}
.x4c{left:96.033333pt;}
.x17{left:100.033322pt;}
.x7{left:101.949440pt;}
.x29{left:105.366655pt;}
.xd{left:118.733322pt;}
.x3b{left:134.399976pt;}
.xe{left:142.733322pt;}
.x58{left:144.066667pt;}
.x1{left:145.316933pt;}
.x1c{left:157.066655pt;}
.x43{left:159.066643pt;}
.x33{left:167.733310pt;}
.x44{left:169.733322pt;}
.x34{left:178.399988pt;}
.x39{left:189.066643pt;}
.x27{left:196.439976pt;}
.x3a{left:199.773322pt;}
.x1d{left:201.439976pt;}
.x28{left:207.106655pt;}
.x1e{left:208.106655pt;}
.x2c{left:235.773310pt;}
.x11{left:240.773310pt;}
.x12{left:246.106655pt;}
.x4d{left:247.106667pt;}
.x35{left:253.773310pt;}
.x36{left:264.439988pt;}
.x51{left:268.106643pt;}
.x52{left:278.799988pt;}
.x23{left:284.799976pt;}
.x16{left:286.799988pt;}
.x24{left:295.466655pt;}
.x41{left:307.133310pt;}
.x42{left:317.799988pt;}
.xf{left:321.133310pt;}
.x53{left:325.133310pt;}
.x10{left:326.466655pt;}
.x54{left:335.799988pt;}
.x3c{left:340.133310pt;}
.x3d{left:350.839988pt;}
.x4a{left:361.506643pt;}
.x25{left:363.173310pt;}
.x26{left:373.839988pt;}
.x4b{left:374.839988pt;}
.x9{left:386.703200pt;}
.x31{left:392.839976pt;}
.x4e{left:398.173333pt;}
.x32{left:403.506655pt;}
.x3e{left:423.506643pt;}
.x3f{left:434.199988pt;}
.x45{left:441.866643pt;}
.x47{left:450.533310pt;}
.x46{left:452.533322pt;}
.x48{left:461.199988pt;}
.x1a{left:466.533310pt;}
.x1b{left:471.866655pt;}
.x55{left:487.866643pt;}
.x56{left:498.533322pt;}
.x2d{left:524.226643pt;}
.x1f{left:530.573310pt;}
.x2e{left:534.906655pt;}
.x20{left:535.893322pt;}
.x4f{left:549.573333pt;}
.x5{left:554.206133pt;}
.x3{left:555.872800pt;}
.x37{left:603.266643pt;}
.x18{left:608.933310pt;}
.x49{left:611.266643pt;}
.x13{left:612.266643pt;}
.x19{left:614.266655pt;}
.x14{left:617.599988pt;}
.x15{left:622.266655pt;}
.x2f{left:624.266643pt;}
.x40{left:625.599988pt;}
.x30{left:634.933322pt;}
.x21{left:636.933310pt;}
.x22{left:642.266655pt;}
.x38{left:683.293322pt;}
.x2a{left:688.959976pt;}
.xc{left:691.639988pt;}
.x2b{left:699.626655pt;}
}




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