
    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_178e1f2ac5831a10972cd857.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_e5b27d2c4879907e5ce40c02.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_77ac2a8a5dae257039d3eada.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_f123a586618f593ceeb961c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717000;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_9002942458a6643938e5f00b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.843000;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_1404b2fba2bb30aa547c1696.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962000;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_2d1d7564cf6f5df60deb355f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_b5a072b82336938a7b33b056.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_c4c0976f9f0f009685770069.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.580000;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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:2.707279px;}
.lsc{letter-spacing:2.740436px;}
.lsd{letter-spacing:2.762529px;}
.lse{letter-spacing:2.784637px;}
.ls35{letter-spacing:2.786391px;}
.ls34{letter-spacing:2.820517px;}
.ls33{letter-spacing:2.843256px;}
.ls32{letter-spacing:2.866010px;}
.ls1b{letter-spacing:2.977802px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls19{letter-spacing:3.014272px;}
.ls1a{letter-spacing:3.038573px;}
.ls1c{letter-spacing:3.062889px;}
.ls37{letter-spacing:4.207220px;}
.ls20{letter-spacing:4.413892px;}
.ls1e{letter-spacing:4.467951px;}
.ls1f{letter-spacing:4.503972px;}
.ls21{letter-spacing:4.540015px;}
.lsb{letter-spacing:4.957515px;}
.ls30{letter-spacing:5.123737px;}
.ls3d{letter-spacing:5.146664px;}
.ls28{letter-spacing:5.186242px;}
.ls2f{letter-spacing:5.186489px;}
.ls7{letter-spacing:5.189522px;}
.ls3a{letter-spacing:5.204606px;}
.ls2e{letter-spacing:5.228303px;}
.ls25{letter-spacing:5.249760px;}
.ls4{letter-spacing:5.253080px;}
.ls38{letter-spacing:5.268350px;}
.ls2d{letter-spacing:5.270142px;}
.ls26{letter-spacing:5.292083px;}
.ls5{letter-spacing:5.295431px;}
.ls39{letter-spacing:5.310823px;}
.ls27{letter-spacing:5.334433px;}
.ls6{letter-spacing:5.337808px;}
.ls3b{letter-spacing:5.353323px;}
.ls16{letter-spacing:5.468656px;}
.ls14{letter-spacing:5.535633px;}
.ls15{letter-spacing:5.580261px;}
.ls17{letter-spacing:5.624918px;}
.ls3{letter-spacing:7.352399px;}
.ls12{letter-spacing:9.922750px;}
.ls2b{letter-spacing:11.178037px;}
.ls13{letter-spacing:11.297588px;}
.ls11{letter-spacing:11.357364px;}
.ls24{letter-spacing:11.596466px;}
.ls2c{letter-spacing:12.672427px;}
.ls2a{letter-spacing:12.732203px;}
.ls23{letter-spacing:13.150632px;}
.lsa{letter-spacing:13.210408px;}
.ls9{letter-spacing:14.943900px;}
.ls10{letter-spacing:16.519926px;}
.ls36{letter-spacing:17.002673px;}
.ls1d{letter-spacing:18.170667px;}
.ls22{letter-spacing:26.933752px;}
.ls31{letter-spacing:31.265250px;}
.ls29{letter-spacing:31.646658px;}
.ls8{letter-spacing:31.666676px;}
.ls3c{letter-spacing:31.758721px;}
.ls18{letter-spacing:33.369964px;}
.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;}
}
.ws69{word-spacing:-33.481569px;}
.wse8{word-spacing:-31.864938px;}
.ws38{word-spacing:-31.772584px;}
.wsb3{word-spacing:-31.752500px;}
.wsc2{word-spacing:-31.369816px;}
.ws8b{word-spacing:-27.023831px;}
.wsed{word-spacing:-21.519300px;}
.ws77{word-spacing:-18.231438px;}
.wsd9{word-spacing:-17.059538px;}
.ws56{word-spacing:-16.575176px;}
.ws3c{word-spacing:-14.943900px;}
.wsa2{word-spacing:-11.058450px;}
.ws66{word-spacing:-5.580261px;}
.ws64{word-spacing:-5.580177px;}
.ws67{word-spacing:-5.490893px;}
.wsa7{word-spacing:-5.380078px;}
.wsb1{word-spacing:-5.376677px;}
.wse5{word-spacing:-5.310823px;}
.wse3{word-spacing:-5.310743px;}
.ws35{word-spacing:-5.295431px;}
.wsa5{word-spacing:-5.295351px;}
.wsaf{word-spacing:-5.292083px;}
.wsad{word-spacing:-5.292004px;}
.wsbf{word-spacing:-5.228303px;}
.wse6{word-spacing:-5.225770px;}
.wsa8{word-spacing:-5.210624px;}
.ws88{word-spacing:-4.503972px;}
.ws86{word-spacing:-4.503904px;}
.ws89{word-spacing:-4.431840px;}
.ws59{word-spacing:-3.586536px;}
.ws9a{word-spacing:-3.526760px;}
.wsc5{word-spacing:-3.407209px;}
.wsb7{word-spacing:-3.108331px;}
.ws74{word-spacing:-3.038573px;}
.ws72{word-spacing:-3.038527px;}
.ws75{word-spacing:-2.989910px;}
.ws49{word-spacing:-2.988780px;}
.wsd7{word-spacing:-2.888706px;}
.ws3f{word-spacing:-2.869229px;}
.wsd6{word-spacing:-2.843256px;}
.wsd4{word-spacing:-2.843213px;}
.ws54{word-spacing:-2.806688px;}
.ws52{word-spacing:-2.762529px;}
.ws50{word-spacing:-2.762488px;}
.wseb{word-spacing:-2.749678px;}
.ws58{word-spacing:-2.630126px;}
.ws48{word-spacing:-2.570351px;}
.wsdd{word-spacing:-2.510575px;}
.ws2a{word-spacing:-2.450800px;}
.ws103{word-spacing:-2.426882px;}
.wsf6{word-spacing:-2.385040px;}
.ws9{word-spacing:-2.271473px;}
.ws41{word-spacing:-2.211697px;}
.wsf8{word-spacing:-2.175826px;}
.ws98{word-spacing:-2.151922px;}
.wsba{word-spacing:-1.853044px;}
.wsa0{word-spacing:-1.793268px;}
.ws2b{word-spacing:-1.733492px;}
.ws2c{word-spacing:-1.673717px;}
.wsa1{word-spacing:-1.613941px;}
.ws105{word-spacing:-1.464498px;}
.ws25{word-spacing:-1.434614px;}
.ws14{word-spacing:-1.374839px;}
.wsf9{word-spacing:-1.338970px;}
.wsd{word-spacing:-1.255288px;}
.ws99{word-spacing:-1.195512px;}
.ws106{word-spacing:-1.171598px;}
.wsfd{word-spacing:-1.129756px;}
.ws5{word-spacing:-1.075961px;}
.wsb8{word-spacing:-1.016185px;}
.wsf1{word-spacing:-0.878699px;}
.ws24{word-spacing:-0.777083px;}
.ws45{word-spacing:-0.717307px;}
.wsce{word-spacing:-0.657532px;}
.wsc9{word-spacing:-0.597756px;}
.ws1e{word-spacing:-0.537980px;}
.ws23{word-spacing:-0.478205px;}
.ws3{word-spacing:-0.298878px;}
.ws44{word-spacing:-0.239102px;}
.ws4a{word-spacing:-0.179327px;}
.wsf0{word-spacing:-0.125528px;}
.ws30{word-spacing:-0.119551px;}
.ws0{word-spacing:0.000000px;}
.ws4f{word-spacing:0.044159px;}
.ws71{word-spacing:0.048572px;}
.ws85{word-spacing:0.071996px;}
.wsac{word-spacing:0.084594px;}
.ws32{word-spacing:0.084647px;}
.wse2{word-spacing:0.084893px;}
.ws63{word-spacing:0.089200px;}
.ws9c{word-spacing:0.119551px;}
.ws62{word-spacing:0.179327px;}
.ws4d{word-spacing:0.239102px;}
.wsef{word-spacing:0.251057px;}
.wscd{word-spacing:0.298878px;}
.wsb{word-spacing:0.358654px;}
.ws15{word-spacing:0.382565px;}
.ws16{word-spacing:0.418429px;}
.ws95{word-spacing:0.478205px;}
.ws19{word-spacing:0.537980px;}
.ws5e{word-spacing:0.597756px;}
.wse1{word-spacing:0.657532px;}
.wsfc{word-spacing:0.669485px;}
.ws107{word-spacing:0.711328px;}
.ws1d{word-spacing:0.717307px;}
.wsf5{word-spacing:0.753170px;}
.wse{word-spacing:0.777083px;}
.ws21{word-spacing:0.836858px;}
.ws28{word-spacing:0.896634px;}
.ws2d{word-spacing:1.016185px;}
.wscc{word-spacing:1.135736px;}
.ws4b{word-spacing:1.315063px;}
.ws1f{word-spacing:1.374839px;}
.ws18{word-spacing:1.434614px;}
.wsb9{word-spacing:1.554166px;}
.ws9d{word-spacing:1.613941px;}
.wsf2{word-spacing:1.673712px;}
.ws27{word-spacing:1.673717px;}
.ws100{word-spacing:1.715555px;}
.ws7b{word-spacing:1.733492px;}
.ws7c{word-spacing:1.793268px;}
.ws101{word-spacing:1.799240px;}
.wsb6{word-spacing:1.853044px;}
.wsa{word-spacing:1.912819px;}
.wscf{word-spacing:1.972595px;}
.ws2{word-spacing:2.032370px;}
.ws80{word-spacing:2.092146px;}
.ws31{word-spacing:2.151922px;}
.ws8{word-spacing:2.211697px;}
.ws104{word-spacing:2.217668px;}
.ws84{word-spacing:2.271473px;}
.ws9e{word-spacing:2.331248px;}
.wsfb{word-spacing:2.385040px;}
.ws1b{word-spacing:2.450800px;}
.ws6b{word-spacing:2.510575px;}
.ws9f{word-spacing:2.570351px;}
.ws83{word-spacing:2.689902px;}
.ws4{word-spacing:2.749678px;}
.wsbb{word-spacing:2.809453px;}
.ws6{word-spacing:2.869229px;}
.wsa3{word-spacing:2.988780px;}
.wsca{word-spacing:3.048556px;}
.wsdc{word-spacing:3.168107px;}
.ws40{word-spacing:3.227882px;}
.ws6c{word-spacing:3.287658px;}
.wsf7{word-spacing:3.514795px;}
.ws4e{word-spacing:3.586536px;}
.ws7e{word-spacing:3.646312px;}
.ws102{word-spacing:3.765852px;}
.wsc6{word-spacing:3.825638px;}
.wsd1{word-spacing:3.885414px;}
.wsfe{word-spacing:3.933223px;}
.ws26{word-spacing:3.945190px;}
.wsfa{word-spacing:3.975066px;}
.ws2f{word-spacing:4.004965px;}
.wsff{word-spacing:4.058752px;}
.ws6f{word-spacing:4.064741px;}
.ws46{word-spacing:4.124516px;}
.wsdf{word-spacing:4.244068px;}
.ws91{word-spacing:4.303843px;}
.ws43{word-spacing:4.423394px;}
.wsf3{word-spacing:4.477180px;}
.wsab{word-spacing:4.483170px;}
.ws81{word-spacing:4.662497px;}
.wsd2{word-spacing:4.722272px;}
.ws13{word-spacing:4.782048px;}
.ws6d{word-spacing:4.841824px;}
.ws5c{word-spacing:5.021150px;}
.ws60{word-spacing:5.080926px;}
.ws61{word-spacing:5.140702px;}
.wsc0{word-spacing:5.144728px;}
.wsd0{word-spacing:5.200477px;}
.ws36{word-spacing:5.210783px;}
.wsbd{word-spacing:5.228381px;}
.ws17{word-spacing:5.260253px;}
.ws33{word-spacing:5.295510px;}
.ws92{word-spacing:5.320028px;}
.ws51{word-spacing:5.469780px;}
.ws9b{word-spacing:5.499355px;}
.ws53{word-spacing:5.525031px;}
.ws55{word-spacing:5.525073px;}
.wsee{word-spacing:5.559131px;}
.wsc7{word-spacing:5.618906px;}
.wsd5{word-spacing:5.629619px;}
.wsd3{word-spacing:5.686484px;}
.wsd8{word-spacing:5.686527px;}
.ws82{word-spacing:5.738458px;}
.ws5d{word-spacing:5.798233px;}
.wsf4{word-spacing:5.816149px;}
.ws2e{word-spacing:5.917784px;}
.wsde{word-spacing:5.977560px;}
.ws73{word-spacing:6.016344px;}
.ws76{word-spacing:6.028544px;}
.ws4c{word-spacing:6.216662px;}
.ws7a{word-spacing:6.276438px;}
.ws97{word-spacing:6.395989px;}
.ws96{word-spacing:6.515540px;}
.ws1c{word-spacing:6.575316px;}
.ws22{word-spacing:6.635092px;}
.ws90{word-spacing:6.754643px;}
.ws42{word-spacing:6.874194px;}
.wscb{word-spacing:6.933970px;}
.ws7f{word-spacing:7.053521px;}
.ws8f{word-spacing:7.232848px;}
.ws1a{word-spacing:7.292623px;}
.wse0{word-spacing:7.471950px;}
.ws94{word-spacing:8.009930px;}
.ws70{word-spacing:8.069706px;}
.ws3b{word-spacing:8.189257px;}
.ws12{word-spacing:8.249033px;}
.wsb5{word-spacing:8.308808px;}
.ws20{word-spacing:8.787013px;}
.wsc{word-spacing:8.906564px;}
.ws87{word-spacing:8.917819px;}
.ws8a{word-spacing:8.935903px;}
.ws3d{word-spacing:9.757648px;}
.wsbe{word-spacing:10.351987px;}
.wsbc{word-spacing:10.456553px;}
.wsc1{word-spacing:10.456632px;}
.wsae{word-spacing:10.478272px;}
.ws34{word-spacing:10.484900px;}
.wsa9{word-spacing:10.506161px;}
.wse4{word-spacing:10.515376px;}
.wse7{word-spacing:10.536699px;}
.wsb0{word-spacing:10.584113px;}
.wsb2{word-spacing:10.584193px;}
.wsa6{word-spacing:10.590808px;}
.ws37{word-spacing:10.590888px;}
.ws65{word-spacing:11.048862px;}
.ws5b{word-spacing:11.058486px;}
.ws68{word-spacing:11.071267px;}
.ws1{word-spacing:11.907329px;}
.ws3a{word-spacing:16.772534px;}
.ws8d{word-spacing:16.778534px;}
.ws11{word-spacing:17.932800px;}
.ws7{word-spacing:19.921966px;}
.ws29{word-spacing:20.185966px;}
.wsa4{word-spacing:20.191966px;}
.ws5f{word-spacing:20.767966px;}
.ws10{word-spacing:21.519300px;}
.wsc8{word-spacing:21.841966px;}
.ws7d{word-spacing:24.163966px;}
.wsea{word-spacing:24.211966px;}
.ws47{word-spacing:24.319966px;}
.ws93{word-spacing:24.997966px;}
.wsf{word-spacing:37.001096px;}
.ws57{word-spacing:52.488058px;}
.wsda{word-spacing:54.021870px;}
.ws78{word-spacing:57.732888px;}
.wsdb{word-spacing:80.581633px;}
.ws8c{word-spacing:85.575466px;}
.ws5a{word-spacing:93.444984px;}
.wsc3{word-spacing:99.337752px;}
.wsb4{word-spacing:100.549583px;}
.ws39{word-spacing:100.613184px;}
.wse9{word-spacing:100.905636px;}
.ws6a{word-spacing:106.024968px;}
.wsec{word-spacing:242.661868px;}
.ws6e{word-spacing:472.241439px;}
.ws79{word-spacing:619.786150px;}
.wsaa{word-spacing:672.803883px;}
.wsc4{word-spacing:761.920889px;}
.ws3e{word-spacing:832.939076px;}
.ws8e{word-spacing:863.234924px;}
._63{margin-left:-7.412916px;}
._c{margin-left:-5.678683px;}
._5{margin-left:-3.945190px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._17{width:2.001047px;}
._18{width:3.551737px;}
._10{width:4.681161px;}
._11{width:5.909738px;}
._6d{width:9.235247px;}
._6a{width:10.759524px;}
._6c{width:12.253925px;}
._1a{width:13.748387px;}
._7{width:15.685150px;}
._69{width:16.856719px;}
._4{width:17.968550px;}
._2{width:19.427069px;}
._b{width:20.742133px;}
._19{width:21.877869px;}
._9{width:23.049476px;}
._e{width:24.089567px;}
._3{width:25.882835px;}
._6b{width:27.269465px;}
._33{width:28.453186px;}
._f{width:29.887800px;}
._34{width:30.963761px;}
._3e{width:32.613572px;}
._2b{width:33.832990px;}
._d{width:35.865600px;}
._a{width:38.387900px;}
._58{width:39.392120px;}
._3d{width:40.743055px;}
._6{width:43.468826px;}
._2a{width:44.712149px;}
._27{width:67.737220px;}
._60{width:69.952888px;}
._20{width:82.323857px;}
._5c{width:84.667940px;}
._1b{width:89.340199px;}
._39{width:90.546069px;}
._59{width:91.950909px;}
._1f{width:95.417764px;}
._35{width:98.267453px;}
._22{width:103.097595px;}
._38{width:104.952314px;}
._5d{width:106.110325px;}
._28{width:109.119909px;}
._62{width:112.243726px;}
._3a{width:113.399547px;}
._1e{width:116.910242px;}
._3b{width:120.145179px;}
._25{width:123.043057px;}
._5e{width:127.433792px;}
._37{width:128.592413px;}
._23{width:130.722889px;}
._5b{width:133.747732px;}
._3c{width:135.338045px;}
._29{width:136.800454px;}
._5f{width:138.476360px;}
._61{width:140.551893px;}
._1d{width:144.535536px;}
._26{width:147.519068px;}
._53{width:154.681515px;}
._21{width:161.442215px;}
._40{width:168.088232px;}
._14{width:171.148322px;}
._67{width:172.297197px;}
._13{width:176.827004px;}
._30{width:180.354051px;}
._56{width:181.476090px;}
._50{width:182.663631px;}
._24{width:189.067509px;}
._42{width:193.130315px;}
._52{width:194.882806px;}
._47{width:197.625475px;}
._65{width:198.774350px;}
._2f{width:208.255358px;}
._4a{width:209.381331px;}
._46{width:215.206305px;}
._4b{width:217.430386px;}
._44{width:224.102629px;}
._32{width:232.585298px;}
._2d{width:236.156666px;}
._64{width:238.880817px;}
._45{width:243.907540px;}
._2c{width:248.210030px;}
._66{width:250.564627px;}
._12{width:252.909772px;}
._43{width:259.370198px;}
._2e{width:260.486606px;}
._4e{width:262.335639px;}
._15{width:264.559720px;}
._4d{width:270.384694px;}
._68{width:278.113695px;}
._49{width:285.847351px;}
._31{width:288.387913px;}
._16{width:290.890582px;}
._48{width:296.861847px;}
._4c{width:312.324505px;}
._55{width:372.017703px;}
._54{width:389.480234px;}
._51{width:403.362590px;}
._3f{width:419.319785px;}
._57{width:424.300731px;}
._41{width:429.228523px;}
._4f{width:456.283423px;}
._36{width:501.118063px;}
._5a{width:535.214849px;}
._1c{width:578.416075px;}
._8{width:1106.329574px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs1c{font-size:41.842800px;}
.fsb{font-size:44.200581px;}
.fs3{font-size:44.233800px;}
.fs17{font-size:45.492215px;}
.fs2{font-size:47.820600px;}
.fsf{font-size:48.617291px;}
.fsa{font-size:55.250587px;}
.fs16{font-size:56.865126px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.771461px;}
.fs19{font-size:67.858388px;}
.fs4{font-size:71.731200px;}
.fs11{font-size:72.063731px;}
.fs9{font-size:78.690710px;}
.fs15{font-size:83.653054px;}
.fs13{font-size:84.673545px;}
.fs7{font-size:84.727104px;}
.fs18{font-size:84.822772px;}
.fs1b{font-size:84.973381px;}
.fs0{font-size:86.077200px;}
.fsd{font-size:89.284408px;}
.fs10{font-size:90.079438px;}
.fs8{font-size:98.363141px;}
.fs14{font-size:104.566055px;}
.fs12{font-size:105.841666px;}
.fs6{font-size:105.908615px;}
.fs1a{font-size:106.216459px;}
.fsc{font-size:111.605229px;}
.y0{bottom:0.000000px;}
.y21{bottom:134.047500px;}
.y78{bottom:178.879500px;}
.y112{bottom:178.924500px;}
.y47{bottom:180.411000px;}
.y62{bottom:180.528000px;}
.y19d{bottom:181.237500px;}
.yf7{bottom:183.664500px;}
.ydd{bottom:190.647000px;}
.y8a{bottom:190.797000px;}
.y173{bottom:192.003000px;}
.y20{bottom:193.149000px;}
.y19c{bottom:194.686500px;}
.y77{bottom:196.812000px;}
.y111{bottom:196.857000px;}
.yc8{bottom:197.571000px;}
.y46{bottom:198.343500px;}
.y61{bottom:198.460500px;}
.yf6{bottom:201.598500px;}
.y19b{bottom:208.135500px;}
.ydc{bottom:208.579500px;}
.y89{bottom:208.729500px;}
.y172{bottom:209.935500px;}
.y1f{bottom:211.686000px;}
.y76{bottom:214.744500px;}
.y110{bottom:214.789500px;}
.y45{bottom:216.276000px;}
.y60{bottom:216.393000px;}
.y14d{bottom:219.118500px;}
.yf5{bottom:219.531000px;}
.y19a{bottom:221.586000px;}
.y1e{bottom:222.060000px;}
.ydb{bottom:226.513500px;}
.y88{bottom:226.662000px;}
.y171{bottom:227.868000px;}
.y75{bottom:232.677000px;}
.y44{bottom:234.210000px;}
.y12c{bottom:234.298500px;}
.y5f{bottom:234.325500px;}
.y14c{bottom:237.052500px;}
.yf4{bottom:237.463500px;}
.y1d{bottom:240.597000px;}
.y10f{bottom:242.809500px;}
.ya7{bottom:243.243000px;}
.yda{bottom:244.446000px;}
.y87{bottom:244.594500px;}
.y170{bottom:245.802000px;}
.y199{bottom:246.990000px;}
.yc7{bottom:249.302217px;}
.y186{bottom:250.609500px;}
.y43{bottom:252.142500px;}
.y5e{bottom:252.258000px;}
.y14b{bottom:254.985000px;}
.y198{bottom:260.440500px;}
.y74{bottom:260.697000px;}
.yd9{bottom:262.378500px;}
.y86{bottom:262.527000px;}
.y16f{bottom:263.734500px;}
.y42{bottom:270.075000px;}
.y5d{bottom:270.192000px;}
.y14a{bottom:272.917500px;}
.yc6{bottom:278.810863px;}
.yd8{bottom:280.311000px;}
.y16e{bottom:281.667000px;}
.y10e{bottom:282.598500px;}
.y185{bottom:284.010000px;}
.yf3{bottom:284.883000px;}
.y197{bottom:285.844500px;}
.y1c{bottom:286.045500px;}
.y12b{bottom:286.650099px;}
.y41{bottom:288.007500px;}
.y5c{bottom:288.124500px;}
.y85{bottom:290.547000px;}
.y149{bottom:290.850000px;}
.ya6{bottom:294.974217px;}
.yd7{bottom:298.243500px;}
.y196{bottom:299.295000px;}
.y16d{bottom:299.599500px;}
.y10d{bottom:300.531000px;}
.y1b{bottom:303.978000px;}
.y40{bottom:305.940000px;}
.y5b{bottom:306.057000px;}
.y148{bottom:308.782500px;}
.yc5{bottom:309.304364px;}
.y16c{bottom:317.532000px;}
.y12a{bottom:318.019600px;}
.y73{bottom:318.553500px;}
.y1a{bottom:321.910500px;}
.y3f{bottom:323.872500px;}
.y5a{bottom:323.989500px;}
.ya5{bottom:324.482863px;}
.y195{bottom:324.699000px;}
.yd6{bottom:326.263500px;}
.y147{bottom:326.715000px;}
.y84{bottom:330.336000px;}
.y184{bottom:333.478500px;}
.y16b{bottom:335.464500px;}
.y10c{bottom:335.749500px;}
.yf2{bottom:337.369517px;}
.y194{bottom:338.148000px;}
.y3e{bottom:341.806500px;}
.y59{bottom:341.922000px;}
.y146{bottom:344.649000px;}
.yc4{bottom:347.305500px;}
.y83{bottom:348.268500px;}
.y129{bottom:349.389102px;}
.y19{bottom:349.930500px;}
.y183{bottom:351.412500px;}
.y16a{bottom:353.398500px;}
.ya4{bottom:354.976364px;}
.y3d{bottom:359.739000px;}
.y58{bottom:359.854500px;}
.y145{bottom:362.581500px;}
.y193{bottom:363.553500px;}
.yc3{bottom:365.238000px;}
.yd5{bottom:366.052500px;}
.yf1{bottom:369.144440px;}
.y72{bottom:370.284717px;}
.y169{bottom:371.331000px;}
.y1bd{bottom:374.644500px;}
.y192{bottom:377.002500px;}
.y57{bottom:377.788500px;}
.y144{bottom:380.514000px;}
.y128{bottom:380.758603px;}
.y82{bottom:383.487000px;}
.yd4{bottom:383.985000px;}
.y18{bottom:386.319000px;}
.y182{bottom:387.546000px;}
.y3c{bottom:387.759000px;}
.y1bc{bottom:388.095000px;}
.y10b{bottom:388.226522px;}
.y168{bottom:389.263500px;}
.ya3{bottom:394.806000px;}
.y56{bottom:395.721000px;}
.y143{bottom:398.446500px;}
.yc2{bottom:398.628000px;}
.y71{bottom:399.793363px;}
.yf0{bottom:400.916706px;}
.yd3{bottom:401.917500px;}
.y167{bottom:407.196000px;}
.y191{bottom:407.413500px;}
.ya2{bottom:412.738500px;}
.y127{bottom:413.175067px;}
.y1bb{bottom:413.499000px;}
.y55{bottom:413.653500px;}
.y3b{bottom:415.779000px;}
.y142{bottom:416.379000px;}
.yd2{bottom:419.850000px;}
.y10a{bottom:419.981359px;}
.y166{bottom:425.128500px;}
.y1ba{bottom:426.949500px;}
.y70{bottom:430.286864px;}
.yef{bottom:432.688971px;}
.y141{bottom:434.313000px;}
.y81{bottom:436.543508px;}
.yd1{bottom:437.782500px;}
.y181{bottom:440.063113px;}
.y54{bottom:441.673500px;}
.y165{bottom:443.061000px;}
.y17{bottom:443.460000px;}
.y126{bottom:444.544569px;}
.ya1{bottom:447.957000px;}
.yc1{bottom:449.530336px;}
.y190{bottom:449.779500px;}
.y109{bottom:451.733540px;}
.y3a{bottom:452.167500px;}
.y140{bottom:452.245500px;}
.y1b9{bottom:452.353500px;}
.yd0{bottom:455.716500px;}
.y164{bottom:460.995000px;}
.y16{bottom:461.392500px;}
.yee{bottom:464.461237px;}
.y1b8{bottom:465.802500px;}
.y6f{bottom:469.281000px;}
.y80{bottom:470.024741px;}
.y13f{bottom:470.178000px;}
.y180{bottom:471.927731px;}
.ycf{bottom:473.649000px;}
.yc0{bottom:476.553896px;}
.y125{bottom:476.961032px;}
.y163{bottom:478.927500px;}
.y108{bottom:483.485721px;}
.y6e{bottom:487.213500px;}
.y13e{bottom:488.110500px;}
.y15{bottom:489.801000px;}
.y1b7{bottom:491.208000px;}
.yce{bottom:491.581500px;}
.ya0{bottom:495.929100px;}
.yed{bottom:496.233503px;}
.y162{bottom:496.860000px;}
.y18f{bottom:500.215500px;}
.y53{bottom:500.742000px;}
.y39{bottom:502.602000px;}
.y7f{bottom:503.505974px;}
.y17f{bottom:503.792349px;}
.ybf{bottom:504.479372px;}
.y1b6{bottom:504.657000px;}
.y13d{bottom:506.043000px;}
.y14{bottom:507.733500px;}
.ycd{bottom:509.514000px;}
.y9f{bottom:514.161880px;}
.y161{bottom:514.792500px;}
.y107{bottom:515.237902px;}
.y124{bottom:517.722000px;}
.y1b5{bottom:518.107500px;}
.y38{bottom:520.536000px;}
.y6d{bottom:521.595000px;}
.y13c{bottom:523.975500px;}
.y13{bottom:525.666000px;}
.ycc{bottom:527.446500px;}
.yec{bottom:528.005768px;}
.ybe{bottom:531.502932px;}
.y9e{bottom:532.393136px;}
.y160{bottom:532.725000px;}
.y18e{bottom:533.616000px;}
.y123{bottom:535.656000px;}
.y17e{bottom:535.656967px;}
.y7e{bottom:536.987207px;}
.y37{bottom:538.468500px;}
.y13b{bottom:541.909500px;}
.y1b4{bottom:543.511500px;}
.y12{bottom:543.598500px;}
.ycb{bottom:545.379000px;}
.y106{bottom:546.990084px;}
.y15f{bottom:550.659000px;}
.y9d{bottom:551.231337px;}
.y52{bottom:552.473217px;}
.y122{bottom:553.588500px;}
.y36{bottom:556.401000px;}
.y1b3{bottom:556.962000px;}
.ybd{bottom:559.428408px;}
.yeb{bottom:559.780691px;}
.y13a{bottom:559.842000px;}
.y11{bottom:561.531000px;}
.yca{bottom:563.313000px;}
.y17d{bottom:567.524250px;}
.y6c{bottom:569.016118px;}
.y9c{bottom:569.464118px;}
.y7d{bottom:570.468440px;}
.y121{bottom:571.521000px;}
.y35{bottom:574.333500px;}
.y139{bottom:577.774500px;}
.y15e{bottom:578.677500px;}
.y10{bottom:579.463500px;}
.y105{bottom:579.801999px;}
.yc9{bottom:581.245500px;}
.y51{bottom:581.981863px;}
.y1b2{bottom:582.366000px;}
.y18d{bottom:584.050500px;}
.y6b{bottom:585.591128px;}
.y9b{bottom:588.302319px;}
.y120{bottom:589.453500px;}
.yea{bottom:591.552957px;}
.y34{bottom:592.266000px;}
.y138{bottom:595.707000px;}
.y1b1{bottom:595.815000px;}
.yf{bottom:597.397500px;}
.ybc{bottom:599.178000px;}
.y17c{bottom:599.388868px;}
.y18c{bottom:601.984500px;}
.y6a{bottom:602.166137px;}
.y7c{bottom:603.949672px;}
.y11f{bottom:607.386000px;}
.y33{bottom:610.198500px;}
.y104{bottom:611.554180px;}
.y50{bottom:612.475364px;}
.y137{bottom:613.639500px;}
.ye{bottom:615.330000px;}
.ybb{bottom:617.110500px;}
.y69{bottom:618.741147px;}
.y1b0{bottom:621.220500px;}
.y9a{bottom:623.727000px;}
.ye9{bottom:624.382969px;}
.y11e{bottom:625.318500px;}
.y15d{bottom:626.098500px;}
.y17b{bottom:631.253486px;}
.y136{bottom:631.572000px;}
.yd{bottom:633.262500px;}
.y1af{bottom:634.669500px;}
.yba{bottom:635.043000px;}
.y68{bottom:635.317543px;}
.y18b{bottom:635.383500px;}
.y32{bottom:638.218500px;}
.y7b{bottom:638.548346px;}
.y99{bottom:641.659500px;}
.y11d{bottom:643.252500px;}
.y103{bottom:644.366095px;}
.y135{bottom:649.506000px;}
.yc{bottom:651.195000px;}
.y67{bottom:651.892553px;}
.y4f{bottom:652.305000px;}
.yb9{bottom:652.975500px;}
.ye8{bottom:657.215639px;}
.y98{bottom:659.592000px;}
.y1ae{bottom:660.075000px;}
.y11c{bottom:661.185000px;}
.y17a{bottom:663.118104px;}
.y134{bottom:667.438500px;}
.y66{bottom:668.467563px;}
.yb{bottom:669.127500px;}
.y4e{bottom:670.237500px;}
.yb8{bottom:670.909500px;}
.y7a{bottom:672.029579px;}
.y1ad{bottom:673.524000px;}
.y15c{bottom:676.476777px;}
.y97{bottom:677.526000px;}
.y11b{bottom:679.117500px;}
.y31{bottom:680.995500px;}
.y133{bottom:685.371000px;}
.y65{bottom:685.595766px;}
.y18a{bottom:685.819500px;}
.y1ac{bottom:686.974500px;}
.ya{bottom:687.060000px;}
.yb7{bottom:688.842000px;}
.ye7{bottom:688.987904px;}
.y102{bottom:689.254500px;}
.y179{bottom:694.982722px;}
.y96{bottom:695.458500px;}
.y11a{bottom:697.050000px;}
.y30{bottom:698.929500px;}
.y15b{bottom:701.923353px;}
.y64{bottom:702.170776px;}
.y132{bottom:703.303500px;}
.y189{bottom:703.752000px;}
.y9{bottom:704.994000px;}
.y4d{bottom:705.456000px;}
.y79{bottom:706.628253px;}
.yb6{bottom:706.774500px;}
.y101{bottom:707.187000px;}
.y1ab{bottom:712.378500px;}
.y95{bottom:713.391000px;}
.y119{bottom:714.982500px;}
.y2f{bottom:716.862000px;}
.y63{bottom:719.297593px;}
.ye6{bottom:720.760170px;}
.y131{bottom:721.236000px;}
.y8{bottom:722.926500px;}
.yb5{bottom:724.707000px;}
.y100{bottom:725.119500px;}
.y1aa{bottom:725.827500px;}
.y178{bottom:726.850005px;}
.y15a{bottom:728.217084px;}
.y94{bottom:731.323500px;}
.y118{bottom:732.915000px;}
.y2e{bottom:734.794500px;}
.y188{bottom:737.152500px;}
.y130{bottom:739.168500px;}
.y7{bottom:740.859000px;}
.yb4{bottom:742.639500px;}
.yff{bottom:743.053500px;}
.y93{bottom:749.256000px;}
.y117{bottom:750.849000px;}
.y1a9{bottom:751.233000px;}
.ye5{bottom:752.535093px;}
.y2d{bottom:752.727000px;}
.y12f{bottom:757.102500px;}
.y4c{bottom:757.942203px;}
.y177{bottom:758.714623px;}
.yb3{bottom:760.573500px;}
.yfe{bottom:760.986000px;}
.y1a8{bottom:764.682000px;}
.y92{bottom:767.188500px;}
.y6{bottom:767.758500px;}
.y159{bottom:768.046500px;}
.y116{bottom:768.781500px;}
.y2c{bottom:770.659500px;}
.y12e{bottom:775.035000px;}
.y1a7{bottom:778.132500px;}
.yb2{bottom:778.506000px;}
.ye4{bottom:784.307359px;}
.y91{bottom:785.122500px;}
.y115{bottom:786.714000px;}
.y187{bottom:787.587000px;}
.y2b{bottom:788.592000px;}
.y4b{bottom:789.714469px;}
.y176{bottom:791.640062px;}
.y12d{bottom:792.967500px;}
.yb1{bottom:796.438500px;}
.y90{bottom:803.055000px;}
.y1a6{bottom:803.536500px;}
.y114{bottom:804.646500px;}
.y2a{bottom:806.526000px;}
.yfd{bottom:808.405500px;}
.yb0{bottom:814.371000px;}
.y158{bottom:815.627044px;}
.ye3{bottom:816.079624px;}
.y1a5{bottom:816.987000px;}
.y8f{bottom:820.987500px;}
.y4a{bottom:822.547139px;}
.y113{bottom:822.579000px;}
.y175{bottom:823.507345px;}
.y29{bottom:824.458500px;}
.yaf{bottom:832.303500px;}
.y157{bottom:832.687837px;}
.y28{bottom:842.391000px;}
.ye2{bottom:847.851890px;}
.y156{bottom:849.747204px;}
.yae{bottom:850.236000px;}
.y49{bottom:854.319404px;}
.y1a4{bottom:855.840000px;}
.y174{bottom:856.432784px;}
.yfc{bottom:860.136877px;}
.y27{bottom:860.323500px;}
.y155{bottom:866.806570px;}
.y5{bottom:867.796500px;}
.yad{bottom:868.170000px;}
.y8e{bottom:868.407000px;}
.y1a3{bottom:869.290500px;}
.y26{bottom:878.256000px;}
.ye1{bottom:879.624155px;}
.y154{bottom:883.865937px;}
.yac{bottom:886.102500px;}
.y48{bottom:887.152074px;}
.yfb{bottom:889.645523px;}
.y4{bottom:890.959500px;}
.y1a2{bottom:894.694500px;}
.y25{bottom:896.188500px;}
.y153{bottom:900.925303px;}
.yab{bottom:904.035000px;}
.y1a1{bottom:908.145000px;}
.ye0{bottom:912.456825px;}
.y3{bottom:914.122500px;}
.y152{bottom:917.984670px;}
.y8d{bottom:920.138217px;}
.yfa{bottom:920.139025px;}
.yaa{bottom:921.967500px;}
.y24{bottom:932.055000px;}
.y1a0{bottom:933.549000px;}
.y151{bottom:935.045464px;}
.ya9{bottom:939.900000px;}
.ydf{bottom:944.229091px;}
.y19f{bottom:946.998000px;}
.y8c{bottom:949.646863px;}
.yf9{bottom:949.647671px;}
.y23{bottom:949.987500px;}
.y150{bottom:952.672762px;}
.ya8{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y22{bottom:967.920000px;}
.y14f{bottom:969.732129px;}
.y19e{bottom:972.403500px;}
.yde{bottom:977.061760px;}
.y8b{bottom:980.140364px;}
.yf8{bottom:980.141172px;}
.y1{bottom:985.852500px;}
.y14e{bottom:987.360854px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h1b{height:28.787846px;}
.h1c{height:28.991846px;}
.h1d{height:30.963672px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h11{height:38.012404px;}
.h18{height:39.123207px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hc{height:41.484266px;}
.h13{height:41.810766px;}
.hf{height:41.961802px;}
.hb{height:44.233944px;}
.h7{height:49.637990px;}
.h5{height:52.040387px;}
.hd{height:52.046387px;}
.h15{height:52.128854px;}
.h19{height:58.358067px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.h14{height:61.974653px;}
.h10{height:67.673841px;}
.h17{height:71.941446px;}
.h16{height:72.819066px;}
.he{height:72.865127px;}
.h1a{height:73.076924px;}
.h12{height:76.784398px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x14{left:204.105647px;}
.x2e{left:205.954168px;}
.xe{left:207.272219px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.x1e{left:220.358516px;}
.x8{left:222.172500px;}
.xc{left:223.821436px;}
.x18{left:225.067674px;}
.x1{left:233.044500px;}
.x27{left:238.153708px;}
.x1d{left:247.797997px;}
.x20{left:251.598000px;}
.x2d{left:254.697505px;}
.xb{left:256.082710px;}
.x17{left:259.064218px;}
.x10{left:262.077000px;}
.x23{left:263.404500px;}
.x2{left:266.614500px;}
.x16{left:267.720000px;}
.x26{left:270.006019px;}
.x1f{left:271.491000px;}
.x30{left:276.327000px;}
.xf{left:278.980500px;}
.x22{left:280.308000px;}
.x2c{left:282.969000px;}
.x15{left:284.623500px;}
.x4{left:293.067000px;}
.x1c{left:304.557194px;}
.x5{left:307.503000px;}
.x13{left:311.236638px;}
.x2b{left:314.453886px;}
.x1b{left:332.633785px;}
.x2a{left:341.123862px;}
.x12{left:342.901770px;}
.x1a{left:351.145638px;}
.x29{left:358.445790px;}
.x11{left:359.733273px;}
.x3{left:405.975000px;}
.x19{left:410.081242px;}
.xd{left:417.024982px;}
.x2f{left:423.547068px;}
.x21{left:427.323395px;}
.x25{left:450.964500px;}
.xa{left:454.699500px;}
.x24{left:458.058473px;}
.x28{left:461.153997px;}
.x31{left:649.009500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:2.406470pt;}
.lsc{letter-spacing:2.435943pt;}
.lsd{letter-spacing:2.455582pt;}
.lse{letter-spacing:2.475233pt;}
.ls35{letter-spacing:2.476792pt;}
.ls34{letter-spacing:2.507127pt;}
.ls33{letter-spacing:2.527339pt;}
.ls32{letter-spacing:2.547564pt;}
.ls1b{letter-spacing:2.646935pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls19{letter-spacing:2.679353pt;}
.ls1a{letter-spacing:2.700954pt;}
.ls1c{letter-spacing:2.722568pt;}
.ls37{letter-spacing:3.739751pt;}
.ls20{letter-spacing:3.923460pt;}
.ls1e{letter-spacing:3.971512pt;}
.ls1f{letter-spacing:4.003531pt;}
.ls21{letter-spacing:4.035569pt;}
.lsb{letter-spacing:4.406680pt;}
.ls30{letter-spacing:4.554433pt;}
.ls3d{letter-spacing:4.574813pt;}
.ls28{letter-spacing:4.609993pt;}
.ls2f{letter-spacing:4.610213pt;}
.ls7{letter-spacing:4.612909pt;}
.ls3a{letter-spacing:4.626317pt;}
.ls2e{letter-spacing:4.647380pt;}
.ls25{letter-spacing:4.666453pt;}
.ls4{letter-spacing:4.669405pt;}
.ls38{letter-spacing:4.682977pt;}
.ls2d{letter-spacing:4.684571pt;}
.ls26{letter-spacing:4.704074pt;}
.ls5{letter-spacing:4.707050pt;}
.ls39{letter-spacing:4.720732pt;}
.ls27{letter-spacing:4.741719pt;}
.ls6{letter-spacing:4.744718pt;}
.ls3b{letter-spacing:4.758509pt;}
.ls16{letter-spacing:4.861028pt;}
.ls14{letter-spacing:4.920563pt;}
.ls15{letter-spacing:4.960232pt;}
.ls17{letter-spacing:4.999927pt;}
.ls3{letter-spacing:6.535466pt;}
.ls12{letter-spacing:8.820222pt;}
.ls2b{letter-spacing:9.936033pt;}
.ls13{letter-spacing:10.042301pt;}
.ls11{letter-spacing:10.095435pt;}
.ls24{letter-spacing:10.307970pt;}
.ls2c{letter-spacing:11.264380pt;}
.ls2a{letter-spacing:11.317514pt;}
.ls23{letter-spacing:11.689451pt;}
.lsa{letter-spacing:11.742585pt;}
.ls9{letter-spacing:13.283467pt;}
.ls10{letter-spacing:14.684378pt;}
.ls36{letter-spacing:15.113487pt;}
.ls1d{letter-spacing:16.151704pt;}
.ls22{letter-spacing:23.941113pt;}
.ls31{letter-spacing:27.791334pt;}
.ls29{letter-spacing:28.130363pt;}
.ls8{letter-spacing:28.148156pt;}
.ls3c{letter-spacing:28.229974pt;}
.ls18{letter-spacing:29.662190pt;}
.ws69{word-spacing:-29.761395pt;}
.wse8{word-spacing:-28.324389pt;}
.ws38{word-spacing:-28.242297pt;}
.wsb3{word-spacing:-28.224444pt;}
.wsc2{word-spacing:-27.884281pt;}
.ws8b{word-spacing:-24.021184pt;}
.wsed{word-spacing:-19.128267pt;}
.ws77{word-spacing:-16.205723pt;}
.wsd9{word-spacing:-15.164034pt;}
.ws56{word-spacing:-14.733490pt;}
.ws3c{word-spacing:-13.283467pt;}
.wsa2{word-spacing:-9.829733pt;}
.ws66{word-spacing:-4.960232pt;}
.ws64{word-spacing:-4.960158pt;}
.ws67{word-spacing:-4.880794pt;}
.wsa7{word-spacing:-4.782292pt;}
.wsb1{word-spacing:-4.779269pt;}
.wse5{word-spacing:-4.720732pt;}
.wse3{word-spacing:-4.720660pt;}
.ws35{word-spacing:-4.707050pt;}
.wsa5{word-spacing:-4.706979pt;}
.wsaf{word-spacing:-4.704074pt;}
.wsad{word-spacing:-4.704003pt;}
.wsbf{word-spacing:-4.647380pt;}
.wse6{word-spacing:-4.645129pt;}
.wsa8{word-spacing:-4.631666pt;}
.ws88{word-spacing:-4.003531pt;}
.ws86{word-spacing:-4.003470pt;}
.ws89{word-spacing:-3.939414pt;}
.ws59{word-spacing:-3.188032pt;}
.ws9a{word-spacing:-3.134898pt;}
.wsc5{word-spacing:-3.028630pt;}
.wsb7{word-spacing:-2.762961pt;}
.ws74{word-spacing:-2.700954pt;}
.ws72{word-spacing:-2.700913pt;}
.ws75{word-spacing:-2.657698pt;}
.ws49{word-spacing:-2.656693pt;}
.wsd7{word-spacing:-2.567738pt;}
.ws3f{word-spacing:-2.550426pt;}
.wsd6{word-spacing:-2.527339pt;}
.wsd4{word-spacing:-2.527301pt;}
.ws54{word-spacing:-2.494834pt;}
.ws52{word-spacing:-2.455582pt;}
.ws50{word-spacing:-2.455545pt;}
.wseb{word-spacing:-2.444158pt;}
.ws58{word-spacing:-2.337890pt;}
.ws48{word-spacing:-2.284756pt;}
.wsdd{word-spacing:-2.231622pt;}
.ws2a{word-spacing:-2.178489pt;}
.ws103{word-spacing:-2.157229pt;}
.wsf6{word-spacing:-2.120035pt;}
.ws9{word-spacing:-2.019087pt;}
.ws41{word-spacing:-1.965953pt;}
.wsf8{word-spacing:-1.934067pt;}
.ws98{word-spacing:-1.912819pt;}
.wsba{word-spacing:-1.647150pt;}
.wsa0{word-spacing:-1.594016pt;}
.ws2b{word-spacing:-1.540882pt;}
.ws2c{word-spacing:-1.487748pt;}
.wsa1{word-spacing:-1.434614pt;}
.ws105{word-spacing:-1.301776pt;}
.ws25{word-spacing:-1.275213pt;}
.ws14{word-spacing:-1.222079pt;}
.wsf9{word-spacing:-1.190195pt;}
.wsd{word-spacing:-1.115811pt;}
.ws99{word-spacing:-1.062677pt;}
.ws106{word-spacing:-1.041421pt;}
.wsfd{word-spacing:-1.004227pt;}
.ws5{word-spacing:-0.956410pt;}
.wsb8{word-spacing:-0.903276pt;}
.wsf1{word-spacing:-0.781066pt;}
.ws24{word-spacing:-0.690740pt;}
.ws45{word-spacing:-0.637606pt;}
.wsce{word-spacing:-0.584473pt;}
.wsc9{word-spacing:-0.531339pt;}
.ws1e{word-spacing:-0.478205pt;}
.ws23{word-spacing:-0.425071pt;}
.ws3{word-spacing:-0.265669pt;}
.ws44{word-spacing:-0.212535pt;}
.ws4a{word-spacing:-0.159402pt;}
.wsf0{word-spacing:-0.111581pt;}
.ws30{word-spacing:-0.106268pt;}
.ws0{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.039252pt;}
.ws71{word-spacing:0.043175pt;}
.ws85{word-spacing:0.063996pt;}
.wsac{word-spacing:0.075195pt;}
.ws32{word-spacing:0.075242pt;}
.wse2{word-spacing:0.075461pt;}
.ws63{word-spacing:0.079289pt;}
.ws9c{word-spacing:0.106268pt;}
.ws62{word-spacing:0.159402pt;}
.ws4d{word-spacing:0.212535pt;}
.wsef{word-spacing:0.223162pt;}
.wscd{word-spacing:0.265669pt;}
.wsb{word-spacing:0.318803pt;}
.ws15{word-spacing:0.340058pt;}
.ws16{word-spacing:0.371937pt;}
.ws95{word-spacing:0.425071pt;}
.ws19{word-spacing:0.478205pt;}
.ws5e{word-spacing:0.531339pt;}
.wse1{word-spacing:0.584473pt;}
.wsfc{word-spacing:0.595098pt;}
.ws107{word-spacing:0.632291pt;}
.ws1d{word-spacing:0.637606pt;}
.wsf5{word-spacing:0.669485pt;}
.wse{word-spacing:0.690740pt;}
.ws21{word-spacing:0.743874pt;}
.ws28{word-spacing:0.797008pt;}
.ws2d{word-spacing:0.903276pt;}
.wscc{word-spacing:1.009543pt;}
.ws4b{word-spacing:1.168945pt;}
.ws1f{word-spacing:1.222079pt;}
.ws18{word-spacing:1.275213pt;}
.wsb9{word-spacing:1.381481pt;}
.ws9d{word-spacing:1.434614pt;}
.wsf2{word-spacing:1.487744pt;}
.ws27{word-spacing:1.487748pt;}
.ws100{word-spacing:1.524938pt;}
.ws7b{word-spacing:1.540882pt;}
.ws7c{word-spacing:1.594016pt;}
.ws101{word-spacing:1.599325pt;}
.wsb6{word-spacing:1.647150pt;}
.wsa{word-spacing:1.700284pt;}
.wscf{word-spacing:1.753418pt;}
.ws2{word-spacing:1.806551pt;}
.ws80{word-spacing:1.859685pt;}
.ws31{word-spacing:1.912819pt;}
.ws8{word-spacing:1.965953pt;}
.ws104{word-spacing:1.971261pt;}
.ws84{word-spacing:2.019087pt;}
.ws9e{word-spacing:2.072221pt;}
.wsfb{word-spacing:2.120035pt;}
.ws1b{word-spacing:2.178489pt;}
.ws6b{word-spacing:2.231622pt;}
.ws9f{word-spacing:2.284756pt;}
.ws83{word-spacing:2.391024pt;}
.ws4{word-spacing:2.444158pt;}
.wsbb{word-spacing:2.497292pt;}
.ws6{word-spacing:2.550426pt;}
.wsa3{word-spacing:2.656693pt;}
.wsca{word-spacing:2.709827pt;}
.wsdc{word-spacing:2.816095pt;}
.ws40{word-spacing:2.869229pt;}
.ws6c{word-spacing:2.922363pt;}
.wsf7{word-spacing:3.124262pt;}
.ws4e{word-spacing:3.188032pt;}
.ws7e{word-spacing:3.241166pt;}
.ws102{word-spacing:3.347424pt;}
.wsc6{word-spacing:3.400567pt;}
.wsd1{word-spacing:3.453701pt;}
.wsfe{word-spacing:3.496198pt;}
.ws26{word-spacing:3.506835pt;}
.wsfa{word-spacing:3.533392pt;}
.ws2f{word-spacing:3.559969pt;}
.wsff{word-spacing:3.607779pt;}
.ws6f{word-spacing:3.613103pt;}
.ws46{word-spacing:3.666237pt;}
.wsdf{word-spacing:3.772505pt;}
.ws91{word-spacing:3.825638pt;}
.ws43{word-spacing:3.931906pt;}
.wsf3{word-spacing:3.979715pt;}
.wsab{word-spacing:3.985040pt;}
.ws81{word-spacing:4.144442pt;}
.wsd2{word-spacing:4.197575pt;}
.ws13{word-spacing:4.250709pt;}
.ws6d{word-spacing:4.303843pt;}
.ws5c{word-spacing:4.463245pt;}
.ws60{word-spacing:4.516379pt;}
.ws61{word-spacing:4.569513pt;}
.wsc0{word-spacing:4.573092pt;}
.wsd0{word-spacing:4.622646pt;}
.ws36{word-spacing:4.631807pt;}
.wsbd{word-spacing:4.647450pt;}
.ws17{word-spacing:4.675780pt;}
.ws33{word-spacing:4.707120pt;}
.ws92{word-spacing:4.728914pt;}
.ws51{word-spacing:4.862027pt;}
.ws9b{word-spacing:4.888316pt;}
.ws53{word-spacing:4.911139pt;}
.ws55{word-spacing:4.911176pt;}
.wsee{word-spacing:4.941450pt;}
.wsc7{word-spacing:4.994583pt;}
.wsd5{word-spacing:5.004106pt;}
.wsd3{word-spacing:5.054653pt;}
.wsd8{word-spacing:5.054691pt;}
.ws82{word-spacing:5.100851pt;}
.ws5d{word-spacing:5.153985pt;}
.wsf4{word-spacing:5.169910pt;}
.ws2e{word-spacing:5.260253pt;}
.wsde{word-spacing:5.313387pt;}
.ws73{word-spacing:5.347862pt;}
.ws76{word-spacing:5.358706pt;}
.ws4c{word-spacing:5.525922pt;}
.ws7a{word-spacing:5.579056pt;}
.ws97{word-spacing:5.685324pt;}
.ws96{word-spacing:5.791591pt;}
.ws1c{word-spacing:5.844725pt;}
.ws22{word-spacing:5.897859pt;}
.ws90{word-spacing:6.004127pt;}
.ws42{word-spacing:6.110395pt;}
.wscb{word-spacing:6.163529pt;}
.ws7f{word-spacing:6.269796pt;}
.ws8f{word-spacing:6.429198pt;}
.ws1a{word-spacing:6.482332pt;}
.wse0{word-spacing:6.641733pt;}
.ws94{word-spacing:7.119938pt;}
.ws70{word-spacing:7.173072pt;}
.ws3b{word-spacing:7.279340pt;}
.ws12{word-spacing:7.332474pt;}
.wsb5{word-spacing:7.385607pt;}
.ws20{word-spacing:7.810678pt;}
.wsc{word-spacing:7.916946pt;}
.ws87{word-spacing:7.926950pt;}
.ws8a{word-spacing:7.943025pt;}
.ws3d{word-spacing:8.673465pt;}
.wsbe{word-spacing:9.201766pt;}
.wsbc{word-spacing:9.294714pt;}
.wsc1{word-spacing:9.294784pt;}
.wsae{word-spacing:9.314019pt;}
.ws34{word-spacing:9.319911pt;}
.wsa9{word-spacing:9.338810pt;}
.wse4{word-spacing:9.347001pt;}
.wse7{word-spacing:9.365955pt;}
.wsb0{word-spacing:9.408101pt;}
.wsb2{word-spacing:9.408172pt;}
.wsa6{word-spacing:9.414052pt;}
.ws37{word-spacing:9.414123pt;}
.ws65{word-spacing:9.821210pt;}
.ws5b{word-spacing:9.829765pt;}
.ws68{word-spacing:9.841126pt;}
.ws1{word-spacing:10.584293pt;}
.ws3a{word-spacing:14.908919pt;}
.ws8d{word-spacing:14.914253pt;}
.ws11{word-spacing:15.940267pt;}
.ws7{word-spacing:17.708414pt;}
.ws29{word-spacing:17.943081pt;}
.wsa4{word-spacing:17.948414pt;}
.ws5f{word-spacing:18.460414pt;}
.ws10{word-spacing:19.128267pt;}
.wsc8{word-spacing:19.415081pt;}
.ws7d{word-spacing:21.479081pt;}
.wsea{word-spacing:21.521748pt;}
.ws47{word-spacing:21.617748pt;}
.ws93{word-spacing:22.220414pt;}
.wsf{word-spacing:32.889863pt;}
.ws57{word-spacing:46.656051pt;}
.wsda{word-spacing:48.019440pt;}
.ws78{word-spacing:51.318123pt;}
.wsdb{word-spacing:71.628119pt;}
.ws8c{word-spacing:76.067081pt;}
.ws5a{word-spacing:83.062208pt;}
.wsc3{word-spacing:88.300224pt;}
.wsb4{word-spacing:89.377407pt;}
.ws39{word-spacing:89.433941pt;}
.wse9{word-spacing:89.693899pt;}
.ws6a{word-spacing:94.244416pt;}
.wsec{word-spacing:215.699439pt;}
.ws6e{word-spacing:419.770168pt;}
.ws79{word-spacing:550.921023pt;}
.wsaa{word-spacing:598.047896pt;}
.wsc4{word-spacing:677.263012pt;}
.ws3e{word-spacing:740.390290pt;}
.ws8e{word-spacing:767.319932pt;}
._63{margin-left:-6.589258pt;}
._c{margin-left:-5.047718pt;}
._5{margin-left:-3.506836pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._17{width:1.778708pt;}
._18{width:3.157099pt;}
._10{width:4.161032pt;}
._11{width:5.253101pt;}
._6d{width:8.209108pt;}
._6a{width:9.564021pt;}
._6c{width:10.892378pt;}
._1a{width:12.220789pt;}
._7{width:13.942355pt;}
._69{width:14.983750pt;}
._4{width:15.972045pt;}
._2{width:17.268506pt;}
._b{width:18.437452pt;}
._19{width:19.446995pt;}
._9{width:20.488423pt;}
._e{width:21.412948pt;}
._3{width:23.006964pt;}
._6b{width:24.239524pt;}
._33{width:25.291721pt;}
._f{width:26.566933pt;}
._34{width:27.523343pt;}
._3e{width:28.989842pt;}
._2b{width:30.073769pt;}
._d{width:31.880533pt;}
._a{width:34.122578pt;}
._58{width:35.015218pt;}
._3d{width:36.216049pt;}
._6{width:38.638957pt;}
._2a{width:39.744132pt;}
._27{width:60.210862pt;}
._60{width:62.180345pt;}
._20{width:73.176762pt;}
._5c{width:75.260391pt;}
._1b{width:79.413510pt;}
._39{width:80.485395pt;}
._59{width:81.734141pt;}
._1f{width:84.815790pt;}
._35{width:87.348847pt;}
._22{width:91.642307pt;}
._38{width:93.290946pt;}
._5d{width:94.320289pt;}
._28{width:96.995475pt;}
._62{width:99.772201pt;}
._3a{width:100.799597pt;}
._1e{width:103.920215pt;}
._3b{width:106.795715pt;}
._25{width:109.371607pt;}
._5e{width:113.274482pt;}
._37{width:114.304367pt;}
._23{width:116.198124pt;}
._5b{width:118.886873pt;}
._3c{width:120.300484pt;}
._29{width:121.600403pt;}
._5f{width:123.090098pt;}
._61{width:124.935016pt;}
._1d{width:128.476032pt;}
._26{width:131.128060pt;}
._53{width:137.494680pt;}
._21{width:143.504192pt;}
._40{width:149.411761pt;}
._14{width:152.131841pt;}
._67{width:153.153064pt;}
._13{width:157.179559pt;}
._30{width:160.314712pt;}
._56{width:161.312080pt;}
._50{width:162.367672pt;}
._24{width:168.060008pt;}
._42{width:171.671392pt;}
._52{width:173.229161pt;}
._47{width:175.667089pt;}
._65{width:176.688311pt;}
._2f{width:185.115874pt;}
._4a{width:186.116739pt;}
._46{width:191.294494pt;}
._4b{width:193.271454pt;}
._44{width:199.202337pt;}
._32{width:206.742487pt;}
._2d{width:209.917036pt;}
._64{width:212.338504pt;}
._45{width:216.806702pt;}
._2c{width:220.631138pt;}
._66{width:222.724113pt;}
._12{width:224.808686pt;}
._43{width:230.551287pt;}
._2e{width:231.543649pt;}
._4e{width:233.187235pt;}
._15{width:235.164195pt;}
._4d{width:240.341950pt;}
._68{width:247.212173pt;}
._49{width:254.086535pt;}
._31{width:256.344812pt;}
._16{width:258.569406pt;}
._48{width:263.877198pt;}
._4c{width:277.621782pt;}
._55{width:330.682403pt;}
._54{width:346.204653pt;}
._51{width:358.544524pt;}
._3f{width:372.728698pt;}
._57{width:377.156205pt;}
._41{width:381.536465pt;}
._4f{width:405.585265pt;}
._36{width:445.438278pt;}
._5a{width:475.746533pt;}
._1c{width:514.147622pt;}
._8{width:983.404066pt;}
.fs5{font-size:31.880533pt;}
.fs1c{font-size:37.193600pt;}
.fsb{font-size:39.289405pt;}
.fs3{font-size:39.318933pt;}
.fs17{font-size:40.437524pt;}
.fs2{font-size:42.507200pt;}
.fsf{font-size:43.215370pt;}
.fsa{font-size:49.111633pt;}
.fs16{font-size:50.546779pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:54.019077pt;}
.fs19{font-size:60.318567pt;}
.fs4{font-size:63.761067pt;}
.fs11{font-size:64.056650pt;}
.fs9{font-size:69.947298pt;}
.fs15{font-size:74.358270pt;}
.fs13{font-size:75.265374pt;}
.fs7{font-size:75.312982pt;}
.fs18{font-size:75.398019pt;}
.fs1b{font-size:75.531894pt;}
.fs0{font-size:76.513067pt;}
.fsd{font-size:79.363918pt;}
.fs10{font-size:80.070612pt;}
.fs8{font-size:87.433903pt;}
.fs14{font-size:92.947604pt;}
.fs12{font-size:94.081481pt;}
.fs6{font-size:94.140991pt;}
.fs1a{font-size:94.414630pt;}
.fsc{font-size:99.204648pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:119.153333pt;}
.y78{bottom:159.004000pt;}
.y112{bottom:159.044000pt;}
.y47{bottom:160.365333pt;}
.y62{bottom:160.469333pt;}
.y19d{bottom:161.100000pt;}
.yf7{bottom:163.257333pt;}
.ydd{bottom:169.464000pt;}
.y8a{bottom:169.597333pt;}
.y173{bottom:170.669333pt;}
.y20{bottom:171.688000pt;}
.y19c{bottom:173.054667pt;}
.y77{bottom:174.944000pt;}
.y111{bottom:174.984000pt;}
.yc8{bottom:175.618667pt;}
.y46{bottom:176.305333pt;}
.y61{bottom:176.409333pt;}
.yf6{bottom:179.198667pt;}
.y19b{bottom:185.009333pt;}
.ydc{bottom:185.404000pt;}
.y89{bottom:185.537333pt;}
.y172{bottom:186.609333pt;}
.y1f{bottom:188.165333pt;}
.y76{bottom:190.884000pt;}
.y110{bottom:190.924000pt;}
.y45{bottom:192.245333pt;}
.y60{bottom:192.349333pt;}
.y14d{bottom:194.772000pt;}
.yf5{bottom:195.138667pt;}
.y19a{bottom:196.965333pt;}
.y1e{bottom:197.386667pt;}
.ydb{bottom:201.345333pt;}
.y88{bottom:201.477333pt;}
.y171{bottom:202.549333pt;}
.y75{bottom:206.824000pt;}
.y44{bottom:208.186667pt;}
.y12c{bottom:208.265333pt;}
.y5f{bottom:208.289333pt;}
.y14c{bottom:210.713333pt;}
.yf4{bottom:211.078667pt;}
.y1d{bottom:213.864000pt;}
.y10f{bottom:215.830667pt;}
.ya7{bottom:216.216000pt;}
.yda{bottom:217.285333pt;}
.y87{bottom:217.417333pt;}
.y170{bottom:218.490667pt;}
.y199{bottom:219.546667pt;}
.yc7{bottom:221.601970pt;}
.y186{bottom:222.764000pt;}
.y43{bottom:224.126667pt;}
.y5e{bottom:224.229333pt;}
.y14b{bottom:226.653333pt;}
.y198{bottom:231.502667pt;}
.y74{bottom:231.730667pt;}
.yd9{bottom:233.225333pt;}
.y86{bottom:233.357333pt;}
.y16f{bottom:234.430667pt;}
.y42{bottom:240.066667pt;}
.y5d{bottom:240.170667pt;}
.y14a{bottom:242.593333pt;}
.yc6{bottom:247.831878pt;}
.yd8{bottom:249.165333pt;}
.y16e{bottom:250.370667pt;}
.y10e{bottom:251.198667pt;}
.y185{bottom:252.453333pt;}
.yf3{bottom:253.229333pt;}
.y197{bottom:254.084000pt;}
.y1c{bottom:254.262667pt;}
.y12b{bottom:254.800088pt;}
.y41{bottom:256.006667pt;}
.y5c{bottom:256.110667pt;}
.y85{bottom:258.264000pt;}
.y149{bottom:258.533333pt;}
.ya6{bottom:262.199304pt;}
.yd7{bottom:265.105333pt;}
.y196{bottom:266.040000pt;}
.y16d{bottom:266.310667pt;}
.y10d{bottom:267.138667pt;}
.y1b{bottom:270.202667pt;}
.y40{bottom:271.946667pt;}
.y5b{bottom:272.050667pt;}
.y148{bottom:274.473333pt;}
.yc5{bottom:274.937213pt;}
.y16c{bottom:282.250667pt;}
.y12a{bottom:282.684089pt;}
.y73{bottom:283.158667pt;}
.y1a{bottom:286.142667pt;}
.y3f{bottom:287.886667pt;}
.y5a{bottom:287.990667pt;}
.ya5{bottom:288.429211pt;}
.y195{bottom:288.621333pt;}
.yd6{bottom:290.012000pt;}
.y147{bottom:290.413333pt;}
.y84{bottom:293.632000pt;}
.y184{bottom:296.425333pt;}
.y16b{bottom:298.190667pt;}
.y10c{bottom:298.444000pt;}
.yf2{bottom:299.884015pt;}
.y194{bottom:300.576000pt;}
.y3e{bottom:303.828000pt;}
.y59{bottom:303.930667pt;}
.y146{bottom:306.354667pt;}
.yc4{bottom:308.716000pt;}
.y83{bottom:309.572000pt;}
.y129{bottom:310.568091pt;}
.y19{bottom:311.049333pt;}
.y183{bottom:312.366667pt;}
.y16a{bottom:314.132000pt;}
.ya4{bottom:315.534546pt;}
.y3d{bottom:319.768000pt;}
.y58{bottom:319.870667pt;}
.y145{bottom:322.294667pt;}
.y193{bottom:323.158667pt;}
.yc3{bottom:324.656000pt;}
.yd5{bottom:325.380000pt;}
.yf1{bottom:328.128391pt;}
.y72{bottom:329.141970pt;}
.y169{bottom:330.072000pt;}
.y1bd{bottom:333.017333pt;}
.y192{bottom:335.113333pt;}
.y57{bottom:335.812000pt;}
.y144{bottom:338.234667pt;}
.y128{bottom:338.452092pt;}
.y82{bottom:340.877333pt;}
.yd4{bottom:341.320000pt;}
.y18{bottom:343.394667pt;}
.y182{bottom:344.485333pt;}
.y3c{bottom:344.674667pt;}
.y1bc{bottom:344.973333pt;}
.y10b{bottom:345.090242pt;}
.y168{bottom:346.012000pt;}
.ya3{bottom:350.938667pt;}
.y56{bottom:351.752000pt;}
.y143{bottom:354.174667pt;}
.yc2{bottom:354.336000pt;}
.y71{bottom:355.371878pt;}
.yf0{bottom:356.370405pt;}
.yd3{bottom:357.260000pt;}
.y167{bottom:361.952000pt;}
.y191{bottom:362.145333pt;}
.ya2{bottom:366.878667pt;}
.y127{bottom:367.266726pt;}
.y1bb{bottom:367.554667pt;}
.y55{bottom:367.692000pt;}
.y3b{bottom:369.581333pt;}
.y142{bottom:370.114667pt;}
.yd2{bottom:373.200000pt;}
.y10a{bottom:373.316764pt;}
.y166{bottom:377.892000pt;}
.y1ba{bottom:379.510667pt;}
.y70{bottom:382.477213pt;}
.yef{bottom:384.612419pt;}
.y141{bottom:386.056000pt;}
.y81{bottom:388.038674pt;}
.yd1{bottom:389.140000pt;}
.y181{bottom:391.167212pt;}
.y54{bottom:392.598667pt;}
.y165{bottom:393.832000pt;}
.y17{bottom:394.186667pt;}
.y126{bottom:395.150728pt;}
.ya1{bottom:398.184000pt;}
.yc1{bottom:399.582521pt;}
.y190{bottom:399.804000pt;}
.y109{bottom:401.540925pt;}
.y3a{bottom:401.926667pt;}
.y140{bottom:401.996000pt;}
.y1b9{bottom:402.092000pt;}
.yd0{bottom:405.081333pt;}
.y164{bottom:409.773333pt;}
.y16{bottom:410.126667pt;}
.yee{bottom:412.854433pt;}
.y1b8{bottom:414.046667pt;}
.y6f{bottom:417.138667pt;}
.y80{bottom:417.799770pt;}
.y13f{bottom:417.936000pt;}
.y180{bottom:419.491316pt;}
.ycf{bottom:421.021333pt;}
.yc0{bottom:423.603463pt;}
.y125{bottom:423.965362pt;}
.y163{bottom:425.713333pt;}
.y108{bottom:429.765086pt;}
.y6e{bottom:433.078667pt;}
.y13e{bottom:433.876000pt;}
.y15{bottom:435.378667pt;}
.y1b7{bottom:436.629333pt;}
.yce{bottom:436.961333pt;}
.ya0{bottom:440.825867pt;}
.yed{bottom:441.096447pt;}
.y162{bottom:441.653333pt;}
.y18f{bottom:444.636000pt;}
.y53{bottom:445.104000pt;}
.y39{bottom:446.757333pt;}
.y7f{bottom:447.560866pt;}
.y17f{bottom:447.815421pt;}
.ybf{bottom:448.426108pt;}
.y1b6{bottom:448.584000pt;}
.y13d{bottom:449.816000pt;}
.y14{bottom:451.318667pt;}
.ycd{bottom:452.901333pt;}
.y9f{bottom:457.032783pt;}
.y161{bottom:457.593333pt;}
.y107{bottom:457.989247pt;}
.y124{bottom:460.197333pt;}
.y1b5{bottom:460.540000pt;}
.y38{bottom:462.698667pt;}
.y6d{bottom:463.640000pt;}
.y13c{bottom:465.756000pt;}
.y13{bottom:467.258667pt;}
.ycc{bottom:468.841333pt;}
.yec{bottom:469.338460pt;}
.ybe{bottom:472.447050pt;}
.y9e{bottom:473.238343pt;}
.y160{bottom:473.533333pt;}
.y18e{bottom:474.325333pt;}
.y123{bottom:476.138667pt;}
.y17e{bottom:476.139526pt;}
.y7e{bottom:477.321962pt;}
.y37{bottom:478.638667pt;}
.y13b{bottom:481.697333pt;}
.y1b4{bottom:483.121333pt;}
.y12{bottom:483.198667pt;}
.ycb{bottom:484.781333pt;}
.y106{bottom:486.213408pt;}
.y15f{bottom:489.474667pt;}
.y9d{bottom:489.983411pt;}
.y52{bottom:491.087304pt;}
.y122{bottom:492.078667pt;}
.y36{bottom:494.578667pt;}
.y1b3{bottom:495.077333pt;}
.ybd{bottom:497.269696pt;}
.yeb{bottom:497.582837pt;}
.y13a{bottom:497.637333pt;}
.y11{bottom:499.138667pt;}
.yca{bottom:500.722667pt;}
.y17d{bottom:504.466000pt;}
.y6c{bottom:505.792105pt;}
.y9c{bottom:506.190327pt;}
.y7d{bottom:507.083057pt;}
.y121{bottom:508.018667pt;}
.y35{bottom:510.518667pt;}
.y139{bottom:513.577333pt;}
.y15e{bottom:514.380000pt;}
.y10{bottom:515.078667pt;}
.y105{bottom:515.379554pt;}
.yc9{bottom:516.662667pt;}
.y51{bottom:517.317211pt;}
.y1b2{bottom:517.658667pt;}
.y18d{bottom:519.156000pt;}
.y6b{bottom:520.525447pt;}
.y9b{bottom:522.935395pt;}
.y120{bottom:523.958667pt;}
.yea{bottom:525.824850pt;}
.y34{bottom:526.458667pt;}
.y138{bottom:529.517333pt;}
.y1b1{bottom:529.613333pt;}
.yf{bottom:531.020000pt;}
.ybc{bottom:532.602667pt;}
.y17c{bottom:532.790105pt;}
.y18c{bottom:535.097333pt;}
.y6a{bottom:535.258789pt;}
.y7c{bottom:536.844153pt;}
.y11f{bottom:539.898667pt;}
.y33{bottom:542.398667pt;}
.y104{bottom:543.603715pt;}
.y50{bottom:544.422546pt;}
.y137{bottom:545.457333pt;}
.ye{bottom:546.960000pt;}
.ybb{bottom:548.542667pt;}
.y69{bottom:549.992131pt;}
.y1b0{bottom:552.196000pt;}
.y9a{bottom:554.424000pt;}
.ye9{bottom:555.007084pt;}
.y11e{bottom:555.838667pt;}
.y15d{bottom:556.532000pt;}
.y17b{bottom:561.114210pt;}
.y136{bottom:561.397333pt;}
.yd{bottom:562.900000pt;}
.y1af{bottom:564.150667pt;}
.yba{bottom:564.482667pt;}
.y68{bottom:564.726705pt;}
.y18b{bottom:564.785333pt;}
.y32{bottom:567.305333pt;}
.y7b{bottom:567.598530pt;}
.y99{bottom:570.364000pt;}
.y11d{bottom:571.780000pt;}
.y103{bottom:572.769862pt;}
.y135{bottom:577.338667pt;}
.yc{bottom:578.840000pt;}
.y67{bottom:579.460047pt;}
.y4f{bottom:579.826667pt;}
.yb9{bottom:580.422667pt;}
.ye8{bottom:584.191679pt;}
.y98{bottom:586.304000pt;}
.y1ae{bottom:586.733333pt;}
.y11c{bottom:587.720000pt;}
.y17a{bottom:589.438314pt;}
.y134{bottom:593.278667pt;}
.y66{bottom:594.193389pt;}
.yb{bottom:594.780000pt;}
.y4e{bottom:595.766667pt;}
.yb8{bottom:596.364000pt;}
.y7a{bottom:597.359626pt;}
.y1ad{bottom:598.688000pt;}
.y15c{bottom:601.312691pt;}
.y97{bottom:602.245333pt;}
.y11b{bottom:603.660000pt;}
.y31{bottom:605.329333pt;}
.y133{bottom:609.218667pt;}
.y65{bottom:609.418459pt;}
.y18a{bottom:609.617333pt;}
.y1ac{bottom:610.644000pt;}
.ya{bottom:610.720000pt;}
.yb7{bottom:612.304000pt;}
.ye7{bottom:612.433693pt;}
.y102{bottom:612.670667pt;}
.y179{bottom:617.762419pt;}
.y96{bottom:618.185333pt;}
.y11a{bottom:619.600000pt;}
.y30{bottom:621.270667pt;}
.y15b{bottom:623.931869pt;}
.y64{bottom:624.151801pt;}
.y132{bottom:625.158667pt;}
.y189{bottom:625.557333pt;}
.y9{bottom:626.661333pt;}
.y4d{bottom:627.072000pt;}
.y79{bottom:628.114003pt;}
.yb6{bottom:628.244000pt;}
.y101{bottom:628.610667pt;}
.y1ab{bottom:633.225333pt;}
.y95{bottom:634.125333pt;}
.y119{bottom:635.540000pt;}
.y2f{bottom:637.210667pt;}
.y63{bottom:639.375638pt;}
.ye6{bottom:640.675707pt;}
.y131{bottom:641.098667pt;}
.y8{bottom:642.601333pt;}
.yb5{bottom:644.184000pt;}
.y100{bottom:644.550667pt;}
.y1aa{bottom:645.180000pt;}
.y178{bottom:646.088893pt;}
.y15a{bottom:647.304075pt;}
.y94{bottom:650.065333pt;}
.y118{bottom:651.480000pt;}
.y2e{bottom:653.150667pt;}
.y188{bottom:655.246667pt;}
.y130{bottom:657.038667pt;}
.y7{bottom:658.541333pt;}
.yb4{bottom:660.124000pt;}
.yff{bottom:660.492000pt;}
.y93{bottom:666.005333pt;}
.y117{bottom:667.421333pt;}
.y1a9{bottom:667.762667pt;}
.ye5{bottom:668.920083pt;}
.y2d{bottom:669.090667pt;}
.y12f{bottom:672.980000pt;}
.y4c{bottom:673.726403pt;}
.y177{bottom:674.412998pt;}
.yb3{bottom:676.065333pt;}
.yfe{bottom:676.432000pt;}
.y1a8{bottom:679.717333pt;}
.y92{bottom:681.945333pt;}
.y6{bottom:682.452000pt;}
.y159{bottom:682.708000pt;}
.y116{bottom:683.361333pt;}
.y2c{bottom:685.030667pt;}
.y12e{bottom:688.920000pt;}
.y1a7{bottom:691.673333pt;}
.yb2{bottom:692.005333pt;}
.ye4{bottom:697.162097pt;}
.y91{bottom:697.886667pt;}
.y115{bottom:699.301333pt;}
.y187{bottom:700.077333pt;}
.y2b{bottom:700.970667pt;}
.y4b{bottom:701.968417pt;}
.y176{bottom:703.680055pt;}
.y12d{bottom:704.860000pt;}
.yb1{bottom:707.945333pt;}
.y90{bottom:713.826667pt;}
.y1a6{bottom:714.254667pt;}
.y114{bottom:715.241333pt;}
.y2a{bottom:716.912000pt;}
.yfd{bottom:718.582667pt;}
.yb0{bottom:723.885333pt;}
.y158{bottom:725.001817pt;}
.ye3{bottom:725.404110pt;}
.y1a5{bottom:726.210667pt;}
.y8f{bottom:729.766667pt;}
.y4a{bottom:731.153012pt;}
.y113{bottom:731.181333pt;}
.y175{bottom:732.006529pt;}
.y29{bottom:732.852000pt;}
.yaf{bottom:739.825333pt;}
.y157{bottom:740.166966pt;}
.y28{bottom:748.792000pt;}
.ye2{bottom:753.646124pt;}
.y156{bottom:755.330848pt;}
.yae{bottom:755.765333pt;}
.y49{bottom:759.395026pt;}
.y1a4{bottom:760.746667pt;}
.y174{bottom:761.273586pt;}
.yfc{bottom:764.566113pt;}
.y27{bottom:764.732000pt;}
.y155{bottom:770.494729pt;}
.y5{bottom:771.374667pt;}
.yad{bottom:771.706667pt;}
.y8e{bottom:771.917333pt;}
.y1a3{bottom:772.702667pt;}
.y26{bottom:780.672000pt;}
.ye1{bottom:781.888138pt;}
.y154{bottom:785.658611pt;}
.yac{bottom:787.646667pt;}
.y48{bottom:788.579622pt;}
.yfb{bottom:790.796020pt;}
.y4{bottom:791.964000pt;}
.y1a2{bottom:795.284000pt;}
.y25{bottom:796.612000pt;}
.y153{bottom:800.822492pt;}
.yab{bottom:803.586667pt;}
.y1a1{bottom:807.240000pt;}
.ye0{bottom:811.072733pt;}
.y3{bottom:812.553333pt;}
.y152{bottom:815.986373pt;}
.y8d{bottom:817.900637pt;}
.yfa{bottom:817.901355pt;}
.yaa{bottom:819.526667pt;}
.y24{bottom:828.493333pt;}
.y1a0{bottom:829.821333pt;}
.y151{bottom:831.151523pt;}
.ya9{bottom:835.466667pt;}
.ydf{bottom:839.314747pt;}
.y19f{bottom:841.776000pt;}
.y8c{bottom:844.130545pt;}
.yf9{bottom:844.131263pt;}
.y23{bottom:844.433333pt;}
.y150{bottom:846.820233pt;}
.ya8{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y22{bottom:860.373333pt;}
.y14f{bottom:861.984115pt;}
.y19e{bottom:864.358667pt;}
.yde{bottom:868.499343pt;}
.y8b{bottom:871.235879pt;}
.yf8{bottom:871.236598pt;}
.y1{bottom:876.313333pt;}
.y14e{bottom:877.654093pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h1b{height:25.589197pt;}
.h1c{height:25.770530pt;}
.h1d{height:27.523264pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h11{height:33.788803pt;}
.h18{height:34.776184pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hc{height:36.874903pt;}
.h13{height:37.165125pt;}
.hf{height:37.299379pt;}
.hb{height:39.319061pt;}
.h7{height:44.122658pt;}
.h5{height:46.258122pt;}
.hd{height:46.263455pt;}
.h15{height:46.336759pt;}
.h19{height:51.873837pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.h14{height:55.088581pt;}
.h10{height:60.154525pt;}
.h17{height:63.947952pt;}
.h16{height:64.728059pt;}
.he{height:64.769002pt;}
.h1a{height:64.957266pt;}
.h12{height:68.252798pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x14{left:181.427242pt;}
.x2e{left:183.070372pt;}
.xe{left:184.241972pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.x1e{left:195.874236pt;}
.x8{left:197.486667pt;}
.xc{left:198.952388pt;}
.x18{left:200.060155pt;}
.x1{left:207.150667pt;}
.x27{left:211.692185pt;}
.x1d{left:220.264886pt;}
.x20{left:223.642667pt;}
.x2d{left:226.397782pt;}
.xb{left:227.629076pt;}
.x17{left:230.279305pt;}
.x10{left:232.957333pt;}
.x23{left:234.137333pt;}
.x2{left:236.990667pt;}
.x16{left:237.973333pt;}
.x26{left:240.005350pt;}
.x1f{left:241.325333pt;}
.x30{left:245.624000pt;}
.xf{left:247.982667pt;}
.x22{left:249.162667pt;}
.x2c{left:251.528000pt;}
.x15{left:252.998667pt;}
.x4{left:260.504000pt;}
.x1c{left:270.717505pt;}
.x5{left:273.336000pt;}
.x13{left:276.654790pt;}
.x2b{left:279.514565pt;}
.x1b{left:295.674475pt;}
.x2a{left:303.221210pt;}
.x12{left:304.801573pt;}
.x1a{left:312.129456pt;}
.x29{left:318.618480pt;}
.x11{left:319.762909pt;}
.x3{left:360.866667pt;}
.x19{left:364.516659pt;}
.xd{left:370.688873pt;}
.x2f{left:376.486283pt;}
.x21{left:379.843018pt;}
.x25{left:400.857333pt;}
.xa{left:404.177333pt;}
.x24{left:407.163087pt;}
.x28{left:409.914664pt;}
.x31{left:576.897333pt;}
}




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