
    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_a352990ed2820bba8e9b932d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_9ec692216f411146517dd1a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.103027;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_0085921507912f874f483286.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000003px;}
.ls7{letter-spacing:20.003906px;}
.ls5{letter-spacing:24.503906px;}
.ls3{letter-spacing:29.003906px;}
.ls2{letter-spacing:33.490882px;}
.ls1{letter-spacing:33.503906px;}
.ls6{letter-spacing:84.023438px;}
.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;}
}
.wsc1{word-spacing:-42.046875px;}
.wsb{word-spacing:-41.999999px;}
.wsc7{word-spacing:-40.042968px;}
.ws3{word-spacing:-38.575340px;}
.ws4{word-spacing:-38.575217px;}
.ws66{word-spacing:-38.542970px;}
.ws1{word-spacing:-36.777427px;}
.ws2{word-spacing:-36.777359px;}
.ws1c{word-spacing:-36.000000px;}
.ws6{word-spacing:-33.064469px;}
.ws7{word-spacing:-33.064461px;}
.ws8{word-spacing:-33.064448px;}
.ws5{word-spacing:-33.064441px;}
.ws0{word-spacing:-29.415267px;}
.ws48{word-spacing:-22.043002px;}
.ws67{word-spacing:-22.043001px;}
.ws2e{word-spacing:-22.042991px;}
.ws42{word-spacing:-22.042981px;}
.ws6c{word-spacing:-22.042979px;}
.ws5c{word-spacing:-22.042971px;}
.ws1d{word-spacing:-22.042970px;}
.ws1f{word-spacing:-22.042969px;}
.ws52{word-spacing:-22.042967px;}
.ws43{word-spacing:-22.042966px;}
.wsc9{word-spacing:-22.042965px;}
.ws49{word-spacing:-22.042958px;}
.ws55{word-spacing:-22.042957px;}
.ws75{word-spacing:-22.042945px;}
.ws16{word-spacing:-20.255549px;}
.ws15{word-spacing:-20.255545px;}
.ws13{word-spacing:-20.255542px;}
.ws1a{word-spacing:-20.255538px;}
.ws14{word-spacing:-20.252933px;}
.wsf{word-spacing:-20.250364px;}
.ws10{word-spacing:-20.250348px;}
.ws17{word-spacing:-20.250345px;}
.ws86{word-spacing:-20.250337px;}
.ws11{word-spacing:-20.250324px;}
.ws98{word-spacing:-20.245152px;}
.ws85{word-spacing:-20.245151px;}
.wsd{word-spacing:-20.245149px;}
.wsa5{word-spacing:-20.245148px;}
.wsa9{word-spacing:-20.245146px;}
.wsba{word-spacing:-20.242517px;}
.ws19{word-spacing:-20.232104px;}
.wse{word-spacing:-20.232102px;}
.wsa8{word-spacing:-20.229494px;}
.wsd1{word-spacing:-20.039061px;}
.wsc0{word-spacing:-20.039051px;}
.ws70{word-spacing:-20.039039px;}
.wsa{word-spacing:-18.408151px;}
.wsd8{word-spacing:-18.388702px;}
.wsd7{word-spacing:-18.388659px;}
.wsd3{word-spacing:-18.388614px;}
.ws26{word-spacing:-17.543002px;}
.ws31{word-spacing:-17.542991px;}
.ws1e{word-spacing:-17.542980px;}
.ws69{word-spacing:-17.542971px;}
.ws23{word-spacing:-17.542969px;}
.ws3c{word-spacing:-17.542968px;}
.ws51{word-spacing:-17.542966px;}
.ws20{word-spacing:-17.542957px;}
.ws4c{word-spacing:-17.542946px;}
.wsbf{word-spacing:-17.542934px;}
.wsbd{word-spacing:-16.718755px;}
.ws68{word-spacing:-16.718735px;}
.ws5e{word-spacing:-16.718693px;}
.wsd6{word-spacing:-15.996115px;}
.wsd9{word-spacing:-15.996114px;}
.ws4b{word-spacing:-15.996105px;}
.wsd4{word-spacing:-15.996104px;}
.ws45{word-spacing:-15.996097px;}
.wsd5{word-spacing:-15.996095px;}
.ws44{word-spacing:-15.996094px;}
.ws27{word-spacing:-15.996092px;}
.ws41{word-spacing:-15.996091px;}
.ws8d{word-spacing:-15.745173px;}
.wsa4{word-spacing:-15.745167px;}
.ws80{word-spacing:-15.745151px;}
.wsa0{word-spacing:-15.745149px;}
.ws7d{word-spacing:-15.742517px;}
.ws12{word-spacing:-14.709964px;}
.ws18{word-spacing:-14.689134px;}
.ws3a{word-spacing:-14.589843px;}
.ws56{word-spacing:-13.043002px;}
.ws54{word-spacing:-13.042991px;}
.ws6a{word-spacing:-13.042990px;}
.ws2c{word-spacing:-13.042980px;}
.ws3b{word-spacing:-13.042979px;}
.ws21{word-spacing:-13.042969px;}
.ws3f{word-spacing:-13.042967px;}
.ws37{word-spacing:-13.042957px;}
.ws74{word-spacing:-11.496116px;}
.ws58{word-spacing:-11.496094px;}
.ws9a{word-spacing:-11.245168px;}
.ws8b{word-spacing:-11.245165px;}
.wsaf{word-spacing:-11.245155px;}
.ws9f{word-spacing:-11.245153px;}
.ws9c{word-spacing:-11.245152px;}
.ws87{word-spacing:-11.245150px;}
.wsb7{word-spacing:-11.242538px;}
.ws65{word-spacing:-8.543002px;}
.ws5d{word-spacing:-8.543001px;}
.ws40{word-spacing:-8.542991px;}
.ws2b{word-spacing:-8.542980px;}
.wsbe{word-spacing:-8.542978px;}
.ws4e{word-spacing:-8.542971px;}
.ws22{word-spacing:-8.542969px;}
.ws33{word-spacing:-8.542967px;}
.ws24{word-spacing:-8.542966px;}
.ws29{word-spacing:-8.542957px;}
.ws30{word-spacing:-8.542945px;}
.ws53{word-spacing:-6.996093px;}
.ws72{word-spacing:-6.996091px;}
.wsb4{word-spacing:-6.745152px;}
.ws92{word-spacing:-6.745151px;}
.ws8c{word-spacing:-6.745149px;}
.ws7f{word-spacing:-6.745145px;}
.wsd0{word-spacing:-6.539063px;}
.ws9{word-spacing:-4.892583px;}
.ws71{word-spacing:-4.176109px;}
.ws5b{word-spacing:-4.043002px;}
.ws25{word-spacing:-4.042969px;}
.ws34{word-spacing:-4.042967px;}
.ws35{word-spacing:-4.042957px;}
.ws79{word-spacing:-4.042956px;}
.ws47{word-spacing:-4.042946px;}
.ws77{word-spacing:-2.496105px;}
.ws57{word-spacing:-2.496094px;}
.ws6f{word-spacing:-2.496091px;}
.ws7e{word-spacing:-2.245150px;}
.ws7c{word-spacing:-2.245149px;}
.ws1b{word-spacing:0.000000px;}
.ws39{word-spacing:0.456998px;}
.wscd{word-spacing:0.457008px;}
.ws64{word-spacing:0.457020px;}
.ws28{word-spacing:0.457031px;}
.ws3e{word-spacing:0.457033px;}
.ws5f{word-spacing:0.457043px;}
.ws60{word-spacing:0.457054px;}
.ws4d{word-spacing:2.003906px;}
.ws99{word-spacing:2.254833px;}
.wsb6{word-spacing:2.254848px;}
.wsbc{word-spacing:2.254872px;}
.wsa2{word-spacing:2.270505px;}
.wscf{word-spacing:2.460905px;}
.wsce{word-spacing:2.460915px;}
.wsc4{word-spacing:2.460950px;}
.wsc{word-spacing:3.634757px;}
.ws2f{word-spacing:4.007813px;}
.ws6b{word-spacing:4.957020px;}
.ws59{word-spacing:4.957031px;}
.ws2a{word-spacing:4.957032px;}
.ws3d{word-spacing:4.957043px;}
.ws78{word-spacing:6.503873px;}
.ws5a{word-spacing:6.503906px;}
.ws76{word-spacing:6.503931px;}
.ws62{word-spacing:9.457021px;}
.ws4a{word-spacing:9.457029px;}
.ws46{word-spacing:9.457032px;}
.ws36{word-spacing:9.457043px;}
.ws6e{word-spacing:9.457065px;}
.ws61{word-spacing:11.003906px;}
.ws8a{word-spacing:11.254834px;}
.wsa6{word-spacing:11.254846px;}
.ws7b{word-spacing:11.254849px;}
.wsb3{word-spacing:11.254851px;}
.wsb2{word-spacing:11.257484px;}
.ws63{word-spacing:13.957022px;}
.ws6d{word-spacing:13.957031px;}
.wsc2{word-spacing:13.957033px;}
.ws32{word-spacing:13.957043px;}
.ws73{word-spacing:15.503906px;}
.ws9e{word-spacing:15.754848px;}
.wsa7{word-spacing:15.754850px;}
.ws9d{word-spacing:15.754854px;}
.ws50{word-spacing:18.457009px;}
.ws38{word-spacing:18.457032px;}
.ws90{word-spacing:20.254851px;}
.wsbb{word-spacing:20.257481px;}
.wsb1{word-spacing:20.257487px;}
.ws7a{word-spacing:22.956998px;}
.ws2d{word-spacing:22.957043px;}
.wsad{word-spacing:24.754827px;}
.wsa3{word-spacing:24.754864px;}
.ws4f{word-spacing:29.003907px;}
.ws97{word-spacing:29.254850px;}
.wsb9{word-spacing:33.754845px;}
.wsaa{word-spacing:33.754850px;}
.wsb0{word-spacing:33.754852px;}
.wsb8{word-spacing:38.254835px;}
.ws8f{word-spacing:38.254861px;}
.ws84{word-spacing:42.754850px;}
.ws83{word-spacing:42.757485px;}
.ws8e{word-spacing:42.767896px;}
.ws88{word-spacing:47.254848px;}
.ws81{word-spacing:47.478514px;}
.wsc8{word-spacing:54.457020px;}
.ws96{word-spacing:56.254850px;}
.wsb5{word-spacing:60.754849px;}
.ws95{word-spacing:60.754860px;}
.wsa1{word-spacing:65.257492px;}
.ws94{word-spacing:78.770508px;}
.ws82{word-spacing:96.754870px;}
.wscc{word-spacing:99.457031px;}
.wsac{word-spacing:101.257492px;}
.wsab{word-spacing:105.754851px;}
.ws89{word-spacing:114.754850px;}
.wsae{word-spacing:114.754852px;}
.ws9b{word-spacing:123.754864px;}
.ws91{word-spacing:128.254837px;}
.ws93{word-spacing:141.754869px;}
.wsca{word-spacing:180.457032px;}
.wscb{word-spacing:182.460915px;}
.wsc6{word-spacing:265.956998px;}
.wsc3{word-spacing:288.457009px;}
.wsd2{word-spacing:306.457021px;}
.wsc5{word-spacing:465.960916px;}
._57{margin-left:-9.281249px;}
._2c{margin-left:-7.980490px;}
._3{margin-left:-5.388694px;}
._0{margin-left:-4.007812px;}
._28{margin-left:-2.671836px;}
._1{margin-left:-1.016174px;}
._3b{width:18.026823px;}
._2a{width:20.003892px;}
._3e{width:22.505968px;}
._29{width:24.503907px;}
._2{width:27.144217px;}
._27{width:29.003906px;}
._3a{width:31.391368px;}
._51{width:32.443955px;}
._2b{width:33.503919px;}
._16{width:36.368964px;}
._2d{width:38.003920px;}
._38{width:40.007811px;}
._48{width:41.355898px;}
._2e{width:42.503914px;}
._45{width:45.052937px;}
._34{width:47.003908px;}
._4f{width:49.427780px;}
._30{width:51.503906px;}
._40{width:54.170216px;}
._32{width:56.003907px;}
._33{width:58.007816px;}
._4a{width:59.296082px;}
._31{width:60.503908px;}
._50{width:63.097153px;}
._36{width:65.003906px;}
._4b{width:67.542521px;}
._2f{width:69.503909px;}
._52{width:76.675409px;}
._43{width:81.118029px;}
._35{width:84.023438px;}
._39{width:86.021484px;}
._37{width:94.007839px;}
._47{width:99.190975px;}
._54{width:101.003908px;}
._42{width:103.719639px;}
._41{width:108.188387px;}
._46{width:121.651927px;}
._4e{width:135.845376px;}
._4d{width:144.118055px;}
._56{width:146.003909px;}
._4c{width:148.724872px;}
._3f{width:157.646685px;}
._49{width:166.680628px;}
._44{width:171.081544px;}
._3d{width:180.144129px;}
._3c{width:184.766555px;}
._55{width:227.003907px;}
._53{width:312.503910px;}
._58{width:353.003907px;}
._26{width:528.519733px;}
._22{width:554.187048px;}
._8{width:619.601827px;}
._1d{width:810.787007px;}
._21{width:829.287961px;}
._18{width:873.532601px;}
._23{width:876.981502px;}
._7{width:941.670319px;}
._1b{width:961.226782px;}
._1e{width:968.715044px;}
._19{width:1074.954322px;}
._9{width:1087.929278px;}
._1a{width:1089.649635px;}
._20{width:1122.772985px;}
._e{width:1130.020445px;}
._14{width:1137.567292px;}
._1f{width:1267.509338px;}
._1c{width:1276.731013px;}
._c{width:1278.174099px;}
._15{width:1287.688044px;}
._10{width:1306.260930px;}
._f{width:1386.977125px;}
._b{width:1408.863170px;}
._24{width:1445.472532px;}
._d{width:1447.327766px;}
._25{width:1482.369517px;}
._17{width:1537.444713px;}
._a{width:1777.422072px;}
._5{width:1797.652920px;}
._6{width:1907.564679px;}
._4{width:1909.391178px;}
._12{width:1927.708859px;}
._11{width:1960.676632px;}
._13{width:2125.612182px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(17,84,204);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:83.999997px;}
.fs0{font-size:96.000003px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:119.999997px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y188{bottom:11.689453px;}
.y1b3{bottom:11.689460px;}
.y1e6{bottom:11.689465px;}
.y36{bottom:14.978577px;}
.yd{bottom:14.978760px;}
.y1e2{bottom:20.857178px;}
.y18e{bottom:20.858646px;}
.y1b7{bottom:20.860106px;}
.y1da{bottom:20.860107px;}
.y202{bottom:20.860124px;}
.y1e5{bottom:32.387695px;}
.y1b2{bottom:32.387705px;}
.y212{bottom:32.860107px;}
.y4d{bottom:36.278321px;}
.yd2{bottom:36.279786px;}
.y264{bottom:36.349365px;}
.y224{bottom:36.352295px;}
.y104{bottom:36.353760px;}
.ye5{bottom:36.354494px;}
.y35{bottom:36.797975px;}
.yc{bottom:36.798158px;}
.y1ad{bottom:38.858637px;}
.y1e1{bottom:49.317623px;}
.y18d{bottom:49.317636px;}
.y1d9{bottom:49.319082px;}
.y201{bottom:49.319099px;}
.y1b6{bottom:49.320566px;}
.y1b1{bottom:53.085935px;}
.y4c{bottom:58.097901px;}
.yd1{bottom:58.098633px;}
.y263{bottom:58.169678px;}
.y103{bottom:58.172607px;}
.ye4{bottom:58.173341px;}
.ycf{bottom:59.967044px;}
.y33{bottom:59.967584px;}
.y4a{bottom:59.967779px;}
.y223{bottom:59.968499px;}
.y211{bottom:61.319082px;}
.y1ac{bottom:67.317627px;}
.y1b0{bottom:73.784180px;}
.y1e0{bottom:77.776611px;}
.y1b5{bottom:77.779541px;}
.y1d8{bottom:77.779542px;}
.y18c{bottom:77.779551px;}
.y200{bottom:77.779559px;}
.y210{bottom:90.958004px;}
.y1ab{bottom:95.779542px;}
.y1d7{bottom:106.238517px;}
.y18b{bottom:106.238525px;}
.y1df{bottom:106.238526px;}
.y1ff{bottom:106.238534px;}
.y12d{bottom:111.969721px;}
.y26b{bottom:112.762210px;}
.y114{bottom:113.893066px;}
.y172{bottom:115.973730px;}
.y7e{bottom:116.507086px;}
.y26c{bottom:117.291505px;}
.yb3{bottom:119.358391px;}
.y20f{bottom:120.826902px;}
.y1aa{bottom:124.238532px;}
.y269{bottom:127.381345px;}
.yce{bottom:128.549566px;}
.y98{bottom:130.753411px;}
.y267{bottom:133.012210px;}
.y15a{bottom:133.759276px;}
.y1e7{bottom:133.957020px;}
.y222{bottom:134.241795px;}
.y1de{bottom:134.697510px;}
.y1d6{bottom:134.698962px;}
.y1fe{bottom:134.698979px;}
.ya{bottom:137.953771px;}
.y249{bottom:139.338871px;}
.y101{bottom:141.268066px;}
.y26d{bottom:142.012210px;}
.y12c{bottom:143.017096px;}
.y1b4{bottom:144.416013px;}
.y272{bottom:144.437980px;}
.y113{bottom:144.940426px;}
.y1af{bottom:147.004390px;}
.y7d{bottom:147.554446px;}
.y20e{bottom:149.285892px;}
.yb2{bottom:150.405766px;}
.y1b8{bottom:150.832036px;}
.y18a{bottom:151.214347px;}
.y1a9{bottom:152.700447px;}
.ye2{bottom:152.964841px;}
.y148{bottom:154.344721px;}
.y171{bottom:157.371675px;}
.y270{bottom:160.187980px;}
.y97{bottom:161.800786px;}
.y26e{bottom:162.999016px;}
.y1d5{bottom:163.157952px;}
.y1fd{bottom:163.157969px;}
.y1dd{bottom:163.159424px;}
.y159{bottom:164.806636px;}
.y26f{bottom:166.198246px;}
.y9{bottom:169.001131px;}
.y248{bottom:170.385345px;}
.y100{bottom:172.316010px;}
.y12b{bottom:174.064456px;}
.ycd{bottom:175.120606px;}
.y112{bottom:175.987786px;}
.y26a{bottom:177.060055px;}
.y20d{bottom:177.747792px;}
.y221{bottom:177.887701px;}
.y260{bottom:178.182130px;}
.y268{bottom:178.185055px;}
.y7c{bottom:178.601806px;}
.y261{bottom:178.759270px;}
.y1a8{bottom:181.159422px;}
.ye1{bottom:184.012201px;}
.y271{bottom:184.374016px;}
.y147{bottom:185.393551px;}
.y1dc{bottom:191.618409px;}
.y1d4{bottom:191.619867px;}
.y1fc{bottom:191.619884px;}
.y96{bottom:192.848146px;}
.yb1{bottom:196.976806px;}
.y170{bottom:198.768165px;}
.y8{bottom:200.048491px;}
.y12a{bottom:205.111816px;}
.ycc{bottom:206.167966px;}
.y20c{bottom:206.206782px;}
.y111{bottom:207.035161px;}
.y220{bottom:208.936516px;}
.y1ae{bottom:209.099118px;}
.y1a7{bottom:209.619882px;}
.y7b{bottom:209.649166px;}
.y25f{bottom:209.682130px;}
.yff{bottom:213.713386px;}
.y247{bottom:214.034176px;}
.y146{bottom:216.439456px;}
.y158{bottom:218.616211px;}
.y1d3{bottom:220.078857px;}
.y1fb{bottom:220.078874px;}
.yb0{bottom:228.024166px;}
.y95{bottom:232.895505px;}
.y32{bottom:234.410518px;}
.y20b{bottom:234.667227px;}
.y129{bottom:236.159176px;}
.ycb{bottom:237.215326px;}
.y1a6{bottom:238.078857px;}
.y110{bottom:238.082521px;}
.y21f{bottom:239.985346px;}
.y16f{bottom:240.167580px;}
.y7a{bottom:240.696526px;}
.ye0{bottom:243.746326px;}
.y246{bottom:245.083590px;}
.y18f{bottom:246.672362px;}
.y1d2{bottom:248.540772px;}
.y1fa{bottom:248.540789px;}
.y157{bottom:249.663571px;}
.y31{bottom:257.883913px;}
.yaf{bottom:259.071526px;}
.y7{bottom:262.143226px;}
.y189{bottom:262.356438px;}
.y145{bottom:263.011231px;}
.y20a{bottom:263.126217px;}
.y1a5{bottom:266.539302px;}
.y128{bottom:267.206536px;}
.y21e{bottom:271.031251px;}
.y79{bottom:271.743901px;}
.yfe{bottom:275.808106px;}
.y1d1{bottom:276.999747px;}
.y1f9{bottom:276.999764px;}
.y30{bottom:281.357293px;}
.y16e{bottom:281.564055px;}
.y10f{bottom:282.851080px;}
.yca{bottom:283.786381px;}
.y245{bottom:288.729496px;}
.y209{bottom:291.586662px;}
.y144{bottom:294.058591px;}
.y1a4{bottom:294.998292px;}
.y156{bottom:295.710931px;}
.yae{bottom:296.118902px;}
.y127{bottom:298.255081px;}
.y94{bottom:298.705081px;}
.y187{bottom:299.929683px;}
.y21d{bottom:302.077141px;}
.y78{bottom:302.791261px;}
.y2f{bottom:304.830688px;}
.y1d0{bottom:305.460207px;}
.y1f8{bottom:305.460224px;}
.yfd{bottom:306.855466px;}
.yc9{bottom:314.833741px;}
.y244{bottom:319.778326px;}
.y208{bottom:320.045651px;}
.y16d{bottom:322.961431px;}
.y1a3{bottom:323.460207px;}
.y6{bottom:324.237946px;}
.y155{bottom:326.758306px;}
.y2e{bottom:328.304083px;}
.y93{bottom:329.752441px;}
.y21c{bottom:333.125971px;}
.y77{bottom:333.838621px;}
.y1cf{bottom:333.919182px;}
.y1f7{bottom:333.919199px;}
.yfc{bottom:337.902826px;}
.y143{bottom:340.628911px;}
.y126{bottom:341.375970px;}
.yc8{bottom:345.881101px;}
.y10e{bottom:346.526371px;}
.y207{bottom:348.507566px;}
.y243{bottom:350.824216px;}
.y186{bottom:351.666511px;}
.y2d{bottom:351.777463px;}
.y1a2{bottom:351.919197px;}
.y154{bottom:357.805666px;}
.yad{bottom:358.927741px;}
.y1ce{bottom:362.379627px;}
.y1f6{bottom:362.379644px;}
.y25e{bottom:363.631345px;}
.y21b{bottom:364.172460px;}
.yfb{bottom:368.950201px;}
.y16c{bottom:370.180666px;}
.y142{bottom:371.677741px;}
.y2c{bottom:375.250858px;}
.y92{bottom:376.322761px;}
.yc7{bottom:376.928461px;}
.y206{bottom:376.966550px;}
.y1a1{bottom:380.381112px;}
.y242{bottom:381.870705px;}
.y76{bottom:382.023195px;}
.y153{bottom:388.853026px;}
.yac{bottom:389.975101px;}
.y1cd{bottom:390.838617px;}
.y1f5{bottom:390.838634px;}
.y2b{bottom:398.724238px;}
.y125{bottom:399.424801px;}
.y16b{bottom:401.227140px;}
.y141{bottom:402.723631px;}
.y61{bottom:403.626421px;}
.y205{bottom:405.428463px;}
.yfa{bottom:405.947761px;}
.y185{bottom:406.690426px;}
.y91{bottom:407.369970px;}
.y21a{bottom:407.821291px;}
.y1a0{bottom:408.840087px;}
.y1cc{bottom:419.300532px;}
.y1f4{bottom:419.300549px;}
.yab{bottom:421.022461px;}
.y2a{bottom:422.197633px;}
.y241{bottom:425.519536px;}
.yc6{bottom:429.499516px;}
.y124{bottom:430.470706px;}
.y140{bottom:433.772461px;}
.y204{bottom:433.887449px;}
.y25c{bottom:434.519536px;}
.y60{bottom:434.748781px;}
.y152{bottom:435.424801px;}
.y49{bottom:437.037601px;}
.y19f{bottom:437.300532px;}
.y184{bottom:437.737786px;}
.y219{bottom:438.867181px;}
.y16a{bottom:442.626555px;}
.y29{bottom:445.671013px;}
.y1cb{bottom:447.759522px;}
.y1f3{bottom:447.759539px;}
.y90{bottom:448.767331px;}
.yaa{bottom:452.069821px;}
.y240{bottom:456.565426px;}
.y75{bottom:458.593501px;}
.yc5{bottom:460.546876px;}
.y123{bottom:461.519536px;}
.y13f{bottom:464.818366px;}
.y5{bottom:465.163419px;}
.y25b{bottom:465.565426px;}
.y19e{bottom:465.759522px;}
.y151{bottom:466.470706px;}
.yf9{bottom:468.042481px;}
.y48{bottom:468.084961px;}
.y183{bottom:468.785161px;}
.y28{bottom:469.144408px;}
.y218{bottom:469.913086px;}
.y1ca{bottom:476.221437px;}
.y1f2{bottom:476.221454px;}
.y8f{bottom:479.815275px;}
.ya9{bottom:483.117181px;}
.y169{bottom:484.023045px;}
.y23f{bottom:487.611915px;}
.y74{bottom:489.640876px;}
.yc4{bottom:491.594236px;}
.y122{bottom:492.565426px;}
.y27{bottom:492.617803px;}
.y19d{bottom:494.219967px;}
.y25a{bottom:496.614256px;}
.y5f{bottom:497.368651px;}
.yf8{bottom:499.089841px;}
.y182{bottom:499.832521px;}
.y217{bottom:500.961916px;}
.y1c9{bottom:504.680412px;}
.y1f1{bottom:504.680429px;}
.y4{bottom:506.818629px;}
.y13e{bottom:511.390141px;}
.y150{bottom:513.042481px;}
.ya8{bottom:514.164556px;}
.y26{bottom:516.091183px;}
.y73{bottom:520.688236px;}
.y8e{bottom:521.212651px;}
.yc3{bottom:522.641596px;}
.y19c{bottom:522.678957px;}
.y121{bottom:523.614256px;}
.y168{bottom:525.419535px;}
.y259{bottom:527.660745px;}
.y5e{bottom:528.416011px;}
.y47{bottom:530.179681px;}
.y181{bottom:530.879881px;}
.y23e{bottom:531.260746px;}
.y216{bottom:532.010746px;}
.y1c8{bottom:533.140857px;}
.y1f0{bottom:533.140874px;}
.y25{bottom:539.564578px;}
.y13d{bottom:542.437501px;}
.y14f{bottom:544.089841px;}
.yf7{bottom:545.137201px;}
.y19b{bottom:551.140872px;}
.y72{bottom:551.735596px;}
.y8d{bottom:552.260011px;}
.yc2{bottom:553.688235px;}
.y120{bottom:554.660161px;}
.y5d{bottom:559.463386px;}
.ya7{bottom:560.735596px;}
.y46{bottom:561.227056px;}
.y1c7{bottom:561.599847px;}
.y1ef{bottom:561.599864px;}
.y180{bottom:561.927241px;}
.y23d{bottom:562.306636px;}
.y24{bottom:563.037958px;}
.y215{bottom:563.056636px;}
.y167{bottom:566.817480px;}
.y258{bottom:571.306636px;}
.yf6{bottom:576.184576px;}
.ydf{bottom:577.306636px;}
.y22d{bottom:578.062501px;}
.y19a{bottom:579.599862px;}
.y71{bottom:582.782956px;}
.y8c{bottom:583.307371px;}
.y11f{bottom:585.708991px;}
.y23{bottom:586.511353px;}
.y13c{bottom:589.007806px;}
.y1c6{bottom:590.060292px;}
.y1ee{bottom:590.060309px;}
.y5c{bottom:590.510746px;}
.y14e{bottom:590.660161px;}
.ya6{bottom:591.782956px;}
.y45{bottom:592.274416px;}
.y17f{bottom:592.974616px;}
.y23c{bottom:593.355466px;}
.y257{bottom:602.355466px;}
.y214{bottom:603.105465px;}
.yc1{bottom:606.259276px;}
.yf5{bottom:607.231936px;}
.y199{bottom:608.061762px;}
.y166{bottom:608.213970px;}
.y22c{bottom:609.108391px;}
.y22{bottom:609.984748px;}
.y11e{bottom:616.754881px;}
.y1c5{bottom:618.519282px;}
.y1ed{bottom:618.519299px;}
.y13b{bottom:620.056636px;}
.y5b{bottom:621.558106px;}
.y14d{bottom:621.708991px;}
.ya5{bottom:622.830316px;}
.y44{bottom:623.321776px;}
.yde{bottom:623.354011px;}
.y8b{bottom:623.354731px;}
.y17e{bottom:624.021976px;}
.y23b{bottom:624.404880px;}
.y3{bottom:627.240501px;}
.y70{bottom:628.830691px;}
.y256{bottom:633.401371px;}
.y21{bottom:633.458128px;}
.y265{bottom:635.110840px;}
.y198{bottom:636.520752px;}
.yc0{bottom:637.306636px;}
.yf4{bottom:638.279296px;}
.y22b{bottom:640.157221px;}
.y1c4{bottom:646.981197px;}
.y1ec{bottom:646.981214px;}
.y11d{bottom:647.803711px;}
.y165{bottom:649.611915px;}
.ya4{bottom:653.877691px;}
.y43{bottom:654.369136px;}
.ydd{bottom:654.401371px;}
.y17d{bottom:655.070506px;}
.y20{bottom:656.931523px;}
.y6f{bottom:659.878051px;}
.y213{bottom:661.791505px;}
.y255{bottom:664.450785px;}
.y197{bottom:664.981197px;}
.y13a{bottom:666.626956px;}
.y23a{bottom:668.050786px;}
.y5a{bottom:668.129146px;}
.y14c{bottom:668.279296px;}
.ybf{bottom:668.354011px;}
.y22a{bottom:671.203126px;}
.y1c3{bottom:675.440187px;}
.y1eb{bottom:675.440204px;}
.y203{bottom:676.986332px;}
.y1f{bottom:680.404903px;}
.yf3{bottom:684.326656px;}
.ya3{bottom:684.925051px;}
.ydc{bottom:685.448731px;}
.y11c{bottom:687.849615px;}
.y6e{bottom:690.925411px;}
.y164{bottom:691.009276px;}
.y196{bottom:693.440187px;}
.y139{bottom:697.674316px;}
.y17c{bottom:698.192865px;}
.y239{bottom:699.097260px;}
.y59{bottom:699.176521px;}
.y14b{bottom:699.326656px;}
.ybe{bottom:699.401371px;}
.y8a{bottom:699.925786px;}
.y42{bottom:700.940191px;}
.y229{bottom:702.251956px;}
.y1e{bottom:703.878298px;}
.y1c2{bottom:703.902087px;}
.y1ea{bottom:703.902104px;}
.y2{bottom:706.583811px;}
.y254{bottom:708.096676px;}
.yf2{bottom:715.374016px;}
.ya2{bottom:715.972411px;}
.ydb{bottom:716.496091px;}
.y195{bottom:721.900632px;}
.y6d{bottom:721.972771px;}
.y1d{bottom:727.351678px;}
.y138{bottom:728.721676px;}
.y58{bottom:730.223881px;}
.y14a{bottom:730.374016px;}
.ybd{bottom:730.448731px;}
.y89{bottom:730.973146px;}
.y41{bottom:731.987371px;}
.y1c1{bottom:732.361077px;}
.y1e9{bottom:732.361094px;}
.y228{bottom:733.297846px;}
.y253{bottom:739.143165px;}
.y163{bottom:740.167966px;}
.y238{bottom:742.743166px;}
.y11b{bottom:745.898431px;}
.yf1{bottom:746.421391px;}
.y194{bottom:750.359621px;}
.y1c{bottom:750.825073px;}
.y6c{bottom:753.020146px;}
.y17b{bottom:756.240241px;}
.y137{bottom:759.769036px;}
.y1c0{bottom:760.821522px;}
.y1e8{bottom:760.821539px;}
.y57{bottom:761.271241px;}
.y149{bottom:761.421391px;}
.y88{bottom:762.020506px;}
.ya1{bottom:762.543451px;}
.y40{bottom:763.034731px;}
.y227{bottom:764.346676px;}
.y162{bottom:771.215910px;}
.y237{bottom:773.791996px;}
.y1b{bottom:774.298468px;}
.y11a{bottom:776.944336px;}
.ybc{bottom:777.019771px;}
.yf0{bottom:777.468751px;}
.yda{bottom:778.067866px;}
.y193{bottom:778.821536px;}
.y252{bottom:782.791996px;}
.y1{bottom:783.620682px;}
.y6b{bottom:784.067506px;}
.y17a{bottom:787.286715px;}
.y1bf{bottom:789.280512px;}
.y136{bottom:790.816411px;}
.y56{bottom:792.318601px;}
.y87{bottom:793.067866px;}
.ya0{bottom:793.590826px;}
.y3f{bottom:794.082091px;}
.y226{bottom:795.392581px;}
.y1a{bottom:797.771848px;}
.y236{bottom:804.840826px;}
.y192{bottom:807.280520px;}
.y119{bottom:807.993166px;}
.ybb{bottom:808.067146px;}
.yd9{bottom:809.115241px;}
.y161{bottom:812.613286px;}
.y251{bottom:813.840826px;}
.y6a{bottom:815.114866px;}
.y1be{bottom:817.740957px;}
.y19{bottom:821.245243px;}
.y135{bottom:821.863771px;}
.yef{bottom:823.516111px;}
.y86{bottom:824.115241px;}
.y9f{bottom:824.638186px;}
.y225{bottom:826.439055px;}
.y179{bottom:828.686130px;}
.y191{bottom:835.742433px;}
.y235{bottom:835.887300px;}
.y55{bottom:838.889641px;}
.y118{bottom:839.039056px;}
.yba{bottom:839.114506px;}
.yd8{bottom:840.162601px;}
.y3e{bottom:840.728026px;}
.y18{bottom:844.718623px;}
.y250{bottom:844.886716px;}
.y69{bottom:846.162226px;}
.y1bd{bottom:846.199946px;}
.yee{bottom:854.563471px;}
.y85{bottom:855.162601px;}
.y9e{bottom:855.685546px;}
.y160{bottom:859.183591px;}
.y10d{bottom:859.737885px;}
.y1e4{bottom:860.983881px;}
.y190{bottom:864.201419px;}
.y17{bottom:868.192018px;}
.y54{bottom:869.937016px;}
.y178{bottom:870.082620px;}
.y117{bottom:870.087886px;}
.yb9{bottom:870.161866px;}
.yd7{bottom:871.209961px;}
.y3d{bottom:871.775386px;}
.y1bc{bottom:874.661861px;}
.y24f{bottom:875.936130px;}
.y134{bottom:878.784661px;}
.y234{bottom:879.536131px;}
.y1e3{bottom:881.682123px;}
.yed{bottom:885.610846px;}
.y84{bottom:886.209961px;}
.y9d{bottom:886.732906px;}
.y15f{bottom:890.232421px;}
.y16{bottom:891.665398px;}
.y68{bottom:892.209961px;}
.y53{bottom:900.984376px;}
.y10c{bottom:901.133791px;}
.yd6{bottom:902.257321px;}
.y3c{bottom:902.822821px;}
.y1bb{bottom:903.120845px;}
.y133{bottom:909.832621px;}
.y233{bottom:910.582036px;}
.y177{bottom:911.479095px;}
.y15{bottom:915.138793px;}
.yec{bottom:916.658206px;}
.yb8{bottom:916.732906px;}
.y83{bottom:917.257321px;}
.y9c{bottom:917.780266px;}
.y1db{bottom:919.255371px;}
.y24e{bottom:919.582036px;}
.y15e{bottom:921.278326px;}
.y67{bottom:923.257321px;}
.y1ba{bottom:931.582758px;}
.y52{bottom:932.031736px;}
.y10b{bottom:932.182621px;}
.y3b{bottom:933.945196px;}
.y14{bottom:938.612188px;}
.y232{bottom:941.628510px;}
.yeb{bottom:947.705566px;}
.yb7{bottom:947.780266px;}
.y82{bottom:948.304681px;}
.y9b{bottom:948.827641px;}
.y24d{bottom:950.630866px;}
.y132{bottom:951.228511px;}
.y15d{bottom:952.327141px;}
.y176{bottom:952.877055px;}
.y66{bottom:954.304681px;}
.y1b9{bottom:960.041744px;}
.y13{bottom:962.085568px;}
.y10a{bottom:963.228511px;}
.yea{bottom:978.752926px;}
.yb6{bottom:978.828376px;}
.y81{bottom:979.352056px;}
.y9a{bottom:979.875001px;}
.y24c{bottom:981.676756px;}
.y15c{bottom:983.373046px;}
.y231{bottom:985.277341px;}
.y65{bottom:985.352056px;}
.y12{bottom:985.558963px;}
.y51{bottom:994.126471px;}
.y175{bottom:994.273535px;}
.y109{bottom:994.277341px;}
.y3a{bottom:996.039917px;}
.y11{bottom:1009.032256px;}
.y116{bottom:1009.800293px;}
.yb5{bottom:1009.875733px;}
.y80{bottom:1010.399414px;}
.y24b{bottom:1012.725586px;}
.y230{bottom:1016.323241px;}
.y64{bottom:1016.399414px;}
.y99{bottom:1016.923097px;}
.y131{bottom:1017.562499px;}
.y50{bottom:1025.173902px;}
.y108{bottom:1025.323241px;}
.ye9{bottom:1025.323975px;}
.y39{bottom:1027.087354px;}
.y15b{bottom:1029.372069px;}
.y10{bottom:1032.505645px;}
.y174{bottom:1035.671484px;}
.y115{bottom:1040.847656px;}
.yb4{bottom:1040.923096px;}
.y24a{bottom:1043.772069px;}
.y22f{bottom:1047.372070px;}
.y63{bottom:1047.446777px;}
.y130{bottom:1048.609864px;}
.yf{bottom:1055.979034px;}
.ye8{bottom:1056.371338px;}
.y107{bottom:1056.372070px;}
.yd5{bottom:1056.446045px;}
.y7f{bottom:1056.446777px;}
.y25d{bottom:1067.663086px;}
.y173{bottom:1077.067968px;}
.y22e{bottom:1078.417969px;}
.y62{bottom:1078.494140px;}
.y12f{bottom:1079.657227px;}
.y106{bottom:1087.417969px;}
.ye7{bottom:1087.418701px;}
.yd4{bottom:1087.493408px;}
.y4f{bottom:1087.494140px;}
.y38{bottom:1089.257080px;}
.ye{bottom:1101.104334px;}
.y12e{bottom:1110.704590px;}
.ye6{bottom:1118.466064px;}
.y105{bottom:1118.466797px;}
.y266{bottom:1118.469727px;}
.yd3{bottom:1118.540771px;}
.y4e{bottom:1118.541503px;}
.y37{bottom:1120.304589px;}
.ye3{bottom:1135.349853px;}
.y102{bottom:1135.350586px;}
.y262{bottom:1135.353516px;}
.yd0{bottom:1135.424561px;}
.y4b{bottom:1135.425293px;}
.yb{bottom:1156.725036px;}
.y34{bottom:1156.725219px;}
.h15{height:36.448242px;}
.h11{height:53.554686px;}
.h1f{height:53.789061px;}
.h1c{height:57.146484px;}
.h6{height:58.910158px;}
.h9{height:59.167970px;}
.h8{height:59.715822px;}
.hd{height:64.546875px;}
.hc{height:65.144531px;}
.h7{height:76.001950px;}
.h1{height:86.062503px;}
.h4{height:96.820313px;}
.h18{height:98.542970px;}
.h19{height:101.131347px;}
.h21{height:105.896490px;}
.h13{height:105.899415px;}
.ha{height:105.899775px;}
.hf{height:105.974850px;}
.hb{height:106.274781px;}
.h5{height:106.274964px;}
.h2{height:107.578122px;}
.h3{height:112.957031px;}
.he{height:127.574707px;}
.h10{height:127.575439px;}
.h20{height:127.646484px;}
.h14{height:127.649414px;}
.h12{height:127.650147px;}
.h16{height:147.590333px;}
.h1b{height:214.970215px;}
.h1e{height:457.239255px;}
.h1d{height:784.173345px;}
.h17{height:887.553225px;}
.h1a{height:983.393550px;}
.h0{height:1263.000000px;}
.w2{width:143.999978px;}
.w3{width:223.875000px;}
.w4{width:275.625090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x18{left:6.750000px;}
.x1c{left:21.375000px;}
.x1b{left:33.750000px;}
.xe{left:96.075005px;}
.x4{left:127.811434px;}
.x10{left:135.450005px;}
.xf{left:137.576958px;}
.x8{left:144.021984px;}
.xb{left:154.575005px;}
.x11{left:162.450005px;}
.x17{left:170.325005px;}
.xc{left:181.575005px;}
.x12{left:189.450005px;}
.x13{left:207.907620px;}
.x5{left:234.577670px;}
.x2{left:249.768422px;}
.x19{left:273.824985px;}
.x9{left:279.140636px;}
.x3{left:304.773783px;}
.x1{left:342.425401px;}
.x6{left:349.633310px;}
.x7{left:353.562023px;}
.x15{left:364.427791px;}
.x23{left:428.083801px;}
.x21{left:432.249676px;}
.x20{left:434.332580px;}
.x1f{left:437.279798px;}
.x22{left:438.498455px;}
.x1d{left:467.783442px;}
.xa{left:474.165533px;}
.x25{left:476.870033px;}
.x1a{left:498.824985px;}
.x24{left:519.382310px;}
.x1e{left:586.953308px;}
.x14{left:746.998396px;}
.x16{left:748.223026px;}
.xd{left:756.168406px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000002pt;}
.ls7{letter-spacing:17.781250pt;}
.ls5{letter-spacing:21.781250pt;}
.ls3{letter-spacing:25.781250pt;}
.ls2{letter-spacing:29.769673pt;}
.ls1{letter-spacing:29.781250pt;}
.ls6{letter-spacing:74.687500pt;}
.wsc1{word-spacing:-37.375000pt;}
.wsb{word-spacing:-37.333332pt;}
.wsc7{word-spacing:-35.593750pt;}
.ws3{word-spacing:-34.289192pt;}
.ws4{word-spacing:-34.289082pt;}
.ws66{word-spacing:-34.260418pt;}
.ws1{word-spacing:-32.691046pt;}
.ws2{word-spacing:-32.690986pt;}
.ws1c{word-spacing:-32.000000pt;}
.ws6{word-spacing:-29.390639pt;}
.ws7{word-spacing:-29.390632pt;}
.ws8{word-spacing:-29.390620pt;}
.ws5{word-spacing:-29.390614pt;}
.ws0{word-spacing:-26.146904pt;}
.ws48{word-spacing:-19.593780pt;}
.ws67{word-spacing:-19.593779pt;}
.ws2e{word-spacing:-19.593770pt;}
.ws42{word-spacing:-19.593761pt;}
.ws6c{word-spacing:-19.593759pt;}
.ws5c{word-spacing:-19.593752pt;}
.ws1d{word-spacing:-19.593751pt;}
.ws1f{word-spacing:-19.593750pt;}
.ws52{word-spacing:-19.593748pt;}
.ws43{word-spacing:-19.593747pt;}
.wsc9{word-spacing:-19.593746pt;}
.ws49{word-spacing:-19.593741pt;}
.ws55{word-spacing:-19.593739pt;}
.ws75{word-spacing:-19.593729pt;}
.ws16{word-spacing:-18.004932pt;}
.ws15{word-spacing:-18.004929pt;}
.ws13{word-spacing:-18.004926pt;}
.ws1a{word-spacing:-18.004923pt;}
.ws14{word-spacing:-18.002607pt;}
.wsf{word-spacing:-18.000324pt;}
.ws10{word-spacing:-18.000309pt;}
.ws17{word-spacing:-18.000307pt;}
.ws86{word-spacing:-18.000300pt;}
.ws11{word-spacing:-18.000288pt;}
.ws98{word-spacing:-17.995691pt;}
.ws85{word-spacing:-17.995690pt;}
.wsd{word-spacing:-17.995688pt;}
.wsa5{word-spacing:-17.995687pt;}
.wsa9{word-spacing:-17.995686pt;}
.wsba{word-spacing:-17.993348pt;}
.ws19{word-spacing:-17.984092pt;}
.wse{word-spacing:-17.984090pt;}
.wsa8{word-spacing:-17.981772pt;}
.wsd1{word-spacing:-17.812499pt;}
.wsc0{word-spacing:-17.812490pt;}
.ws70{word-spacing:-17.812479pt;}
.wsa{word-spacing:-16.362801pt;}
.wsd8{word-spacing:-16.345513pt;}
.wsd7{word-spacing:-16.345475pt;}
.wsd3{word-spacing:-16.345435pt;}
.ws26{word-spacing:-15.593780pt;}
.ws31{word-spacing:-15.593770pt;}
.ws1e{word-spacing:-15.593760pt;}
.ws69{word-spacing:-15.593752pt;}
.ws23{word-spacing:-15.593751pt;}
.ws3c{word-spacing:-15.593749pt;}
.ws51{word-spacing:-15.593748pt;}
.ws20{word-spacing:-15.593740pt;}
.ws4c{word-spacing:-15.593730pt;}
.wsbf{word-spacing:-15.593719pt;}
.wsbd{word-spacing:-14.861115pt;}
.ws68{word-spacing:-14.861098pt;}
.ws5e{word-spacing:-14.861061pt;}
.wsd6{word-spacing:-14.218769pt;}
.wsd9{word-spacing:-14.218768pt;}
.ws4b{word-spacing:-14.218760pt;}
.wsd4{word-spacing:-14.218759pt;}
.ws45{word-spacing:-14.218753pt;}
.wsd5{word-spacing:-14.218751pt;}
.ws44{word-spacing:-14.218750pt;}
.ws27{word-spacing:-14.218748pt;}
.ws41{word-spacing:-14.218747pt;}
.ws8d{word-spacing:-13.995709pt;}
.wsa4{word-spacing:-13.995704pt;}
.ws80{word-spacing:-13.995690pt;}
.wsa0{word-spacing:-13.995688pt;}
.ws7d{word-spacing:-13.993348pt;}
.ws12{word-spacing:-13.075523pt;}
.ws18{word-spacing:-13.057008pt;}
.ws3a{word-spacing:-12.968749pt;}
.ws56{word-spacing:-11.593780pt;}
.ws54{word-spacing:-11.593770pt;}
.ws6a{word-spacing:-11.593769pt;}
.ws2c{word-spacing:-11.593760pt;}
.ws3b{word-spacing:-11.593759pt;}
.ws21{word-spacing:-11.593750pt;}
.ws3f{word-spacing:-11.593749pt;}
.ws37{word-spacing:-11.593740pt;}
.ws74{word-spacing:-10.218770pt;}
.ws58{word-spacing:-10.218750pt;}
.ws9a{word-spacing:-9.995705pt;}
.ws8b{word-spacing:-9.995702pt;}
.wsaf{word-spacing:-9.995694pt;}
.ws9f{word-spacing:-9.995692pt;}
.ws9c{word-spacing:-9.995690pt;}
.ws87{word-spacing:-9.995689pt;}
.wsb7{word-spacing:-9.993367pt;}
.ws65{word-spacing:-7.593780pt;}
.ws5d{word-spacing:-7.593779pt;}
.ws40{word-spacing:-7.593770pt;}
.ws2b{word-spacing:-7.593760pt;}
.wsbe{word-spacing:-7.593759pt;}
.ws4e{word-spacing:-7.593752pt;}
.ws22{word-spacing:-7.593750pt;}
.ws33{word-spacing:-7.593749pt;}
.ws24{word-spacing:-7.593747pt;}
.ws29{word-spacing:-7.593740pt;}
.ws30{word-spacing:-7.593729pt;}
.ws53{word-spacing:-6.218749pt;}
.ws72{word-spacing:-6.218747pt;}
.wsb4{word-spacing:-5.995691pt;}
.ws92{word-spacing:-5.995690pt;}
.ws8c{word-spacing:-5.995688pt;}
.ws7f{word-spacing:-5.995685pt;}
.wsd0{word-spacing:-5.812500pt;}
.ws9{word-spacing:-4.348962pt;}
.ws71{word-spacing:-3.712097pt;}
.ws5b{word-spacing:-3.593779pt;}
.ws25{word-spacing:-3.593750pt;}
.ws34{word-spacing:-3.593748pt;}
.ws35{word-spacing:-3.593740pt;}
.ws79{word-spacing:-3.593739pt;}
.ws47{word-spacing:-3.593730pt;}
.ws77{word-spacing:-2.218760pt;}
.ws57{word-spacing:-2.218750pt;}
.ws6f{word-spacing:-2.218747pt;}
.ws7e{word-spacing:-1.995689pt;}
.ws7c{word-spacing:-1.995688pt;}
.ws1b{word-spacing:0.000000pt;}
.ws39{word-spacing:0.406220pt;}
.wscd{word-spacing:0.406229pt;}
.ws64{word-spacing:0.406240pt;}
.ws28{word-spacing:0.406250pt;}
.ws3e{word-spacing:0.406251pt;}
.ws5f{word-spacing:0.406260pt;}
.ws60{word-spacing:0.406270pt;}
.ws4d{word-spacing:1.781250pt;}
.ws99{word-spacing:2.004296pt;}
.wsb6{word-spacing:2.004310pt;}
.wsbc{word-spacing:2.004330pt;}
.wsa2{word-spacing:2.018227pt;}
.wscf{word-spacing:2.187471pt;}
.wsce{word-spacing:2.187480pt;}
.wsc4{word-spacing:2.187511pt;}
.wsc{word-spacing:3.230895pt;}
.ws2f{word-spacing:3.562500pt;}
.ws6b{word-spacing:4.406240pt;}
.ws59{word-spacing:4.406250pt;}
.ws2a{word-spacing:4.406251pt;}
.ws3d{word-spacing:4.406260pt;}
.ws78{word-spacing:5.781220pt;}
.ws5a{word-spacing:5.781250pt;}
.ws76{word-spacing:5.781272pt;}
.ws62{word-spacing:8.406240pt;}
.ws4a{word-spacing:8.406248pt;}
.ws46{word-spacing:8.406250pt;}
.ws36{word-spacing:8.406261pt;}
.ws6e{word-spacing:8.406280pt;}
.ws61{word-spacing:9.781250pt;}
.ws8a{word-spacing:10.004297pt;}
.wsa6{word-spacing:10.004308pt;}
.ws7b{word-spacing:10.004310pt;}
.wsb3{word-spacing:10.004312pt;}
.wsb2{word-spacing:10.006653pt;}
.ws63{word-spacing:12.406242pt;}
.ws6d{word-spacing:12.406250pt;}
.wsc2{word-spacing:12.406252pt;}
.ws32{word-spacing:12.406260pt;}
.ws73{word-spacing:13.781250pt;}
.ws9e{word-spacing:14.004310pt;}
.wsa7{word-spacing:14.004311pt;}
.ws9d{word-spacing:14.004314pt;}
.ws50{word-spacing:16.406230pt;}
.ws38{word-spacing:16.406251pt;}
.ws90{word-spacing:18.004312pt;}
.wsbb{word-spacing:18.006649pt;}
.wsb1{word-spacing:18.006655pt;}
.ws7a{word-spacing:20.406220pt;}
.ws2d{word-spacing:20.406261pt;}
.wsad{word-spacing:22.004291pt;}
.wsa3{word-spacing:22.004324pt;}
.ws4f{word-spacing:25.781251pt;}
.ws97{word-spacing:26.004311pt;}
.wsb9{word-spacing:30.004306pt;}
.wsaa{word-spacing:30.004311pt;}
.wsb0{word-spacing:30.004313pt;}
.wsb8{word-spacing:34.004298pt;}
.ws8f{word-spacing:34.004321pt;}
.ws84{word-spacing:38.004311pt;}
.ws83{word-spacing:38.006653pt;}
.ws8e{word-spacing:38.015907pt;}
.ws88{word-spacing:42.004309pt;}
.ws81{word-spacing:42.203124pt;}
.wsc8{word-spacing:48.406240pt;}
.ws96{word-spacing:50.004311pt;}
.wsb5{word-spacing:54.004310pt;}
.ws95{word-spacing:54.004320pt;}
.wsa1{word-spacing:58.006660pt;}
.ws94{word-spacing:70.018229pt;}
.ws82{word-spacing:86.004329pt;}
.wscc{word-spacing:88.406250pt;}
.wsac{word-spacing:90.006659pt;}
.wsab{word-spacing:94.004312pt;}
.ws89{word-spacing:102.004311pt;}
.wsae{word-spacing:102.004313pt;}
.ws9b{word-spacing:110.004323pt;}
.ws91{word-spacing:114.004300pt;}
.ws93{word-spacing:126.004328pt;}
.wsca{word-spacing:160.406251pt;}
.wscb{word-spacing:162.187480pt;}
.wsc6{word-spacing:236.406220pt;}
.wsc3{word-spacing:256.406230pt;}
.wsd2{word-spacing:272.406241pt;}
.wsc5{word-spacing:414.187481pt;}
._57{margin-left:-8.249999pt;}
._2c{margin-left:-7.093769pt;}
._3{margin-left:-4.789950pt;}
._0{margin-left:-3.562499pt;}
._28{margin-left:-2.374965pt;}
._1{margin-left:-0.903266pt;}
._3b{width:16.023843pt;}
._2a{width:17.781238pt;}
._3e{width:20.005305pt;}
._29{width:21.781251pt;}
._2{width:24.128193pt;}
._27{width:25.781250pt;}
._3a{width:27.903439pt;}
._51{width:28.839071pt;}
._2b{width:29.781261pt;}
._16{width:32.327968pt;}
._2d{width:33.781262pt;}
._38{width:35.562498pt;}
._48{width:36.760798pt;}
._2e{width:37.781257pt;}
._45{width:40.047055pt;}
._34{width:41.781251pt;}
._4f{width:43.935805pt;}
._30{width:45.781250pt;}
._40{width:48.151303pt;}
._32{width:49.781250pt;}
._33{width:51.562503pt;}
._4a{width:52.707629pt;}
._31{width:53.781252pt;}
._50{width:56.086358pt;}
._36{width:57.781250pt;}
._4b{width:60.037796pt;}
._2f{width:61.781252pt;}
._52{width:68.155919pt;}
._43{width:72.104914pt;}
._35{width:74.687500pt;}
._39{width:76.463541pt;}
._37{width:83.562524pt;}
._47{width:88.169755pt;}
._54{width:89.781252pt;}
._42{width:92.195235pt;}
._41{width:96.167455pt;}
._46{width:108.135046pt;}
._4e{width:120.751445pt;}
._4d{width:128.104938pt;}
._56{width:129.781252pt;}
._4c{width:132.199887pt;}
._3f{width:140.130386pt;}
._49{width:148.160558pt;}
._44{width:152.072483pt;}
._3d{width:160.128115pt;}
._3c{width:164.236938pt;}
._55{width:201.781251pt;}
._53{width:277.781253pt;}
._58{width:313.781251pt;}
._26{width:469.795318pt;}
._22{width:492.610710pt;}
._8{width:550.757179pt;}
._1d{width:720.699561pt;}
._21{width:737.144854pt;}
._18{width:776.473423pt;}
._23{width:779.539113pt;}
._7{width:837.040284pt;}
._1b{width:854.423806pt;}
._1e{width:861.080039pt;}
._19{width:955.514953pt;}
._9{width:967.048247pt;}
._1a{width:968.577453pt;}
._20{width:998.020431pt;}
._e{width:1004.462618pt;}
._14{width:1011.170926pt;}
._1f{width:1126.674967pt;}
._1c{width:1134.872011pt;}
._c{width:1136.154755pt;}
._15{width:1144.611594pt;}
._10{width:1161.120826pt;}
._f{width:1232.868555pt;}
._b{width:1252.322818pt;}
._24{width:1284.864473pt;}
._d{width:1286.513570pt;}
._25{width:1317.661793pt;}
._17{width:1366.617522pt;}
._a{width:1579.930731pt;}
._5{width:1597.913707pt;}
._6{width:1695.613048pt;}
._4{width:1697.236603pt;}
._12{width:1713.518986pt;}
._11{width:1742.823673pt;}
._13{width:1889.433051pt;}
.fs7{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.666664pt;}
.fs0{font-size:85.333336pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:106.666664pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y188{bottom:10.390625pt;}
.y1b3{bottom:10.390631pt;}
.y1e6{bottom:10.390636pt;}
.y36{bottom:13.314291pt;}
.yd{bottom:13.314453pt;}
.y1e2{bottom:18.539713pt;}
.y18e{bottom:18.541019pt;}
.y1b7{bottom:18.542316pt;}
.y1da{bottom:18.542317pt;}
.y202{bottom:18.542332pt;}
.y1e5{bottom:28.789062pt;}
.y1b2{bottom:28.789072pt;}
.y212{bottom:29.208984pt;}
.y4d{bottom:32.247396pt;}
.yd2{bottom:32.248699pt;}
.y264{bottom:32.310547pt;}
.y224{bottom:32.313151pt;}
.y104{bottom:32.314453pt;}
.ye5{bottom:32.315105pt;}
.y35{bottom:32.709311pt;}
.yc{bottom:32.709473pt;}
.y1ad{bottom:34.541011pt;}
.y1e1{bottom:43.837887pt;}
.y18d{bottom:43.837899pt;}
.y1d9{bottom:43.839184pt;}
.y201{bottom:43.839199pt;}
.y1b6{bottom:43.840503pt;}
.y1b1{bottom:47.187498pt;}
.y4c{bottom:51.642579pt;}
.yd1{bottom:51.643229pt;}
.y263{bottom:51.706380pt;}
.y103{bottom:51.708984pt;}
.ye4{bottom:51.709636pt;}
.ycf{bottom:53.304039pt;}
.y33{bottom:53.304519pt;}
.y4a{bottom:53.304692pt;}
.y223{bottom:53.305332pt;}
.y211{bottom:54.505851pt;}
.y1ac{bottom:59.837891pt;}
.y1b0{bottom:65.585938pt;}
.y1e0{bottom:69.134765pt;}
.y1b5{bottom:69.137369pt;}
.y1d8{bottom:69.137371pt;}
.y18c{bottom:69.137379pt;}
.y200{bottom:69.137385pt;}
.y210{bottom:80.851559pt;}
.y1ab{bottom:85.137371pt;}
.y1d7{bottom:94.434237pt;}
.y18b{bottom:94.434245pt;}
.y1df{bottom:94.434245pt;}
.y1ff{bottom:94.434252pt;}
.y12d{bottom:99.528641pt;}
.y26b{bottom:100.233076pt;}
.y114{bottom:101.238281pt;}
.y172{bottom:103.087760pt;}
.y7e{bottom:103.561854pt;}
.y26c{bottom:104.259116pt;}
.yb3{bottom:106.096347pt;}
.y20f{bottom:107.401691pt;}
.y1aa{bottom:110.434251pt;}
.y269{bottom:113.227863pt;}
.yce{bottom:114.266281pt;}
.y98{bottom:116.225254pt;}
.y267{bottom:118.233076pt;}
.y15a{bottom:118.897134pt;}
.y1e7{bottom:119.072907pt;}
.y222{bottom:119.326040pt;}
.y1de{bottom:119.731120pt;}
.y1d6{bottom:119.732411pt;}
.y1fe{bottom:119.732425pt;}
.ya{bottom:122.625574pt;}
.y249{bottom:123.856774pt;}
.y101{bottom:125.571614pt;}
.y26d{bottom:126.233076pt;}
.y12c{bottom:127.126308pt;}
.y1b4{bottom:128.369789pt;}
.y272{bottom:128.389316pt;}
.y113{bottom:128.835934pt;}
.y1af{bottom:130.670569pt;}
.y7d{bottom:131.159508pt;}
.y20e{bottom:132.698571pt;}
.yb2{bottom:133.694014pt;}
.y1b8{bottom:134.072921pt;}
.y18a{bottom:134.412753pt;}
.y1a9{bottom:135.733731pt;}
.ye2{bottom:135.968747pt;}
.y148{bottom:137.195308pt;}
.y171{bottom:139.885933pt;}
.y270{bottom:142.389316pt;}
.y97{bottom:143.822921pt;}
.y26e{bottom:144.888014pt;}
.y1d5{bottom:145.029291pt;}
.y1fd{bottom:145.029305pt;}
.y1dd{bottom:145.030599pt;}
.y159{bottom:146.494788pt;}
.y26f{bottom:147.731774pt;}
.y9{bottom:150.223227pt;}
.y248{bottom:151.453640pt;}
.y100{bottom:153.169787pt;}
.y12b{bottom:154.723961pt;}
.ycd{bottom:155.662761pt;}
.y112{bottom:156.433588pt;}
.y26a{bottom:157.386716pt;}
.y20d{bottom:157.998037pt;}
.y221{bottom:158.122401pt;}
.y260{bottom:158.384116pt;}
.y268{bottom:158.386716pt;}
.y7c{bottom:158.757161pt;}
.y261{bottom:158.897129pt;}
.y1a8{bottom:161.030597pt;}
.ye1{bottom:163.566401pt;}
.y271{bottom:163.888014pt;}
.y147{bottom:164.794267pt;}
.y1dc{bottom:170.327475pt;}
.y1d4{bottom:170.328771pt;}
.y1fc{bottom:170.328785pt;}
.y96{bottom:171.420574pt;}
.yb1{bottom:175.090494pt;}
.y170{bottom:176.682813pt;}
.y8{bottom:177.820881pt;}
.y12a{bottom:182.321614pt;}
.ycc{bottom:183.260414pt;}
.y20c{bottom:183.294917pt;}
.y111{bottom:184.031254pt;}
.y220{bottom:185.721347pt;}
.y1ae{bottom:185.865883pt;}
.y1a7{bottom:186.328784pt;}
.y7b{bottom:186.354814pt;}
.y25f{bottom:186.384116pt;}
.yff{bottom:189.967454pt;}
.y247{bottom:190.252601pt;}
.y146{bottom:192.390628pt;}
.y158{bottom:194.325521pt;}
.y1d3{bottom:195.625651pt;}
.y1fb{bottom:195.625665pt;}
.yb0{bottom:202.688147pt;}
.y95{bottom:207.018227pt;}
.y32{bottom:208.364905pt;}
.y20b{bottom:208.593091pt;}
.y129{bottom:209.919268pt;}
.ycb{bottom:210.858067pt;}
.y1a6{bottom:211.625651pt;}
.y110{bottom:211.628908pt;}
.y21f{bottom:213.320307pt;}
.y16f{bottom:213.482293pt;}
.y7a{bottom:213.952467pt;}
.ye0{bottom:216.663401pt;}
.y246{bottom:217.852080pt;}
.y18f{bottom:219.264321pt;}
.y1d2{bottom:220.925131pt;}
.y1fa{bottom:220.925145pt;}
.y157{bottom:221.923174pt;}
.y31{bottom:229.230145pt;}
.yaf{bottom:230.285801pt;}
.y7{bottom:233.016201pt;}
.y189{bottom:233.205723pt;}
.y145{bottom:233.787761pt;}
.y20a{bottom:233.889971pt;}
.y1a5{bottom:236.923824pt;}
.y128{bottom:237.516921pt;}
.y21e{bottom:240.916668pt;}
.y79{bottom:241.550134pt;}
.yfe{bottom:245.162761pt;}
.y1d1{bottom:246.221997pt;}
.y1f9{bottom:246.222012pt;}
.y30{bottom:250.095371pt;}
.y16e{bottom:250.279160pt;}
.y10f{bottom:251.423182pt;}
.yca{bottom:252.254561pt;}
.y245{bottom:256.648441pt;}
.y209{bottom:259.188144pt;}
.y144{bottom:261.385414pt;}
.y1a4{bottom:262.220704pt;}
.y156{bottom:262.854161pt;}
.yae{bottom:263.216802pt;}
.y127{bottom:265.115627pt;}
.y94{bottom:265.515628pt;}
.y187{bottom:266.604163pt;}
.y21d{bottom:268.513014pt;}
.y78{bottom:269.147787pt;}
.y2f{bottom:270.960611pt;}
.y1d0{bottom:271.520184pt;}
.y1f8{bottom:271.520199pt;}
.yfd{bottom:272.760414pt;}
.yc9{bottom:279.852214pt;}
.y244{bottom:284.247401pt;}
.y208{bottom:284.485023pt;}
.y16d{bottom:287.076828pt;}
.y1a3{bottom:287.520184pt;}
.y6{bottom:288.211507pt;}
.y155{bottom:290.451828pt;}
.y2e{bottom:291.825851pt;}
.y93{bottom:293.113281pt;}
.y21c{bottom:296.111974pt;}
.y77{bottom:296.745441pt;}
.y1cf{bottom:296.817051pt;}
.y1f7{bottom:296.817065pt;}
.yfc{bottom:300.358067pt;}
.y143{bottom:302.781254pt;}
.y126{bottom:303.445307pt;}
.yc8{bottom:307.449867pt;}
.y10e{bottom:308.023441pt;}
.y207{bottom:309.784503pt;}
.y243{bottom:311.843748pt;}
.y186{bottom:312.592454pt;}
.y2d{bottom:312.691078pt;}
.y1a2{bottom:312.817064pt;}
.y154{bottom:318.049481pt;}
.yad{bottom:319.046881pt;}
.y1ce{bottom:322.115224pt;}
.y1f6{bottom:322.115239pt;}
.y25e{bottom:323.227863pt;}
.y21b{bottom:323.708853pt;}
.yfb{bottom:327.955734pt;}
.y16c{bottom:329.049481pt;}
.y142{bottom:330.380214pt;}
.y2c{bottom:333.556318pt;}
.y92{bottom:334.509121pt;}
.yc7{bottom:335.047521pt;}
.y206{bottom:335.081377pt;}
.y1a1{bottom:338.116544pt;}
.y242{bottom:339.440627pt;}
.y76{bottom:339.576174pt;}
.y153{bottom:345.647134pt;}
.yac{bottom:346.644534pt;}
.y1cd{bottom:347.412104pt;}
.y1f5{bottom:347.412119pt;}
.y2b{bottom:354.421545pt;}
.y125{bottom:355.044268pt;}
.y16b{bottom:356.646347pt;}
.y141{bottom:357.976561pt;}
.y61{bottom:358.779041pt;}
.y205{bottom:360.380856pt;}
.yfa{bottom:360.842454pt;}
.y185{bottom:361.502601pt;}
.y91{bottom:362.106640pt;}
.y21a{bottom:362.507814pt;}
.y1a0{bottom:363.413411pt;}
.y1cc{bottom:372.711584pt;}
.y1f4{bottom:372.711599pt;}
.yab{bottom:374.242188pt;}
.y2a{bottom:375.286785pt;}
.y241{bottom:378.239587pt;}
.yc6{bottom:381.777348pt;}
.y124{bottom:382.640627pt;}
.y140{bottom:385.575521pt;}
.y204{bottom:385.677732pt;}
.y25c{bottom:386.239587pt;}
.y60{bottom:386.443361pt;}
.y152{bottom:387.044268pt;}
.y49{bottom:388.477867pt;}
.y19f{bottom:388.711584pt;}
.y184{bottom:389.100254pt;}
.y219{bottom:390.104161pt;}
.y16a{bottom:393.445827pt;}
.y29{bottom:396.152011pt;}
.y1cb{bottom:398.008464pt;}
.y1f3{bottom:398.008479pt;}
.y90{bottom:398.904294pt;}
.yaa{bottom:401.839841pt;}
.y240{bottom:405.835934pt;}
.y75{bottom:407.638667pt;}
.yc5{bottom:409.375001pt;}
.y123{bottom:410.239587pt;}
.y13f{bottom:413.171881pt;}
.y5{bottom:413.478595pt;}
.y25b{bottom:413.835934pt;}
.y19e{bottom:414.008464pt;}
.y151{bottom:414.640627pt;}
.yf9{bottom:416.037761pt;}
.y48{bottom:416.075521pt;}
.y183{bottom:416.697921pt;}
.y28{bottom:417.017251pt;}
.y218{bottom:417.700521pt;}
.y1ca{bottom:423.307944pt;}
.y1f2{bottom:423.307959pt;}
.y8f{bottom:426.502467pt;}
.ya9{bottom:429.437494pt;}
.y169{bottom:430.242707pt;}
.y23f{bottom:433.432813pt;}
.y74{bottom:435.236334pt;}
.yc4{bottom:436.972654pt;}
.y122{bottom:437.835934pt;}
.y27{bottom:437.882491pt;}
.y19d{bottom:439.306637pt;}
.y25a{bottom:441.434894pt;}
.y5f{bottom:442.105467pt;}
.yf8{bottom:443.635414pt;}
.y182{bottom:444.295574pt;}
.y217{bottom:445.299481pt;}
.y1c9{bottom:448.604811pt;}
.y1f1{bottom:448.604825pt;}
.y4{bottom:450.505448pt;}
.y13e{bottom:454.569014pt;}
.y150{bottom:456.037761pt;}
.ya8{bottom:457.035161pt;}
.y26{bottom:458.747718pt;}
.y73{bottom:462.833987pt;}
.y8e{bottom:463.300134pt;}
.yc3{bottom:464.570308pt;}
.y19c{bottom:464.603517pt;}
.y121{bottom:465.434894pt;}
.y168{bottom:467.039587pt;}
.y259{bottom:469.031773pt;}
.y5e{bottom:469.703121pt;}
.y47{bottom:471.270827pt;}
.y181{bottom:471.893227pt;}
.y23e{bottom:472.231774pt;}
.y216{bottom:472.898441pt;}
.y1c8{bottom:473.902984pt;}
.y1f0{bottom:473.902999pt;}
.y25{bottom:479.612958pt;}
.y13d{bottom:482.166667pt;}
.y14f{bottom:483.635414pt;}
.yf7{bottom:484.566401pt;}
.y19b{bottom:489.902997pt;}
.y72{bottom:490.431641pt;}
.y8d{bottom:490.897787pt;}
.yc2{bottom:492.167320pt;}
.y120{bottom:493.031254pt;}
.y5d{bottom:497.300788pt;}
.ya7{bottom:498.431641pt;}
.y46{bottom:498.868494pt;}
.y1c7{bottom:499.199864pt;}
.y1ef{bottom:499.199879pt;}
.y180{bottom:499.490881pt;}
.y23d{bottom:499.828121pt;}
.y24{bottom:500.478185pt;}
.y215{bottom:500.494787pt;}
.y167{bottom:503.837760pt;}
.y258{bottom:507.828121pt;}
.yf6{bottom:512.164068pt;}
.ydf{bottom:513.161454pt;}
.y22d{bottom:513.833334pt;}
.y19a{bottom:515.199877pt;}
.y71{bottom:518.029294pt;}
.y8c{bottom:518.495441pt;}
.y11f{bottom:520.630214pt;}
.y23{bottom:521.343425pt;}
.y13c{bottom:523.562494pt;}
.y1c6{bottom:524.498037pt;}
.y1ee{bottom:524.498052pt;}
.y5c{bottom:524.898441pt;}
.y14e{bottom:525.031254pt;}
.ya6{bottom:526.029294pt;}
.y45{bottom:526.466148pt;}
.y17f{bottom:527.088548pt;}
.y23c{bottom:527.427081pt;}
.y257{bottom:535.427081pt;}
.y214{bottom:536.093747pt;}
.yc1{bottom:538.897134pt;}
.yf5{bottom:539.761721pt;}
.y199{bottom:540.499344pt;}
.y166{bottom:540.634640pt;}
.y22c{bottom:541.429681pt;}
.y22{bottom:542.208665pt;}
.y11e{bottom:548.226561pt;}
.y1c5{bottom:549.794917pt;}
.y1ed{bottom:549.794932pt;}
.y13b{bottom:551.161454pt;}
.y5b{bottom:552.496094pt;}
.y14d{bottom:552.630214pt;}
.ya5{bottom:553.626948pt;}
.y44{bottom:554.063801pt;}
.yde{bottom:554.092454pt;}
.y8b{bottom:554.093094pt;}
.y17e{bottom:554.686201pt;}
.y23b{bottom:555.026560pt;}
.y3{bottom:557.547112pt;}
.y70{bottom:558.960614pt;}
.y256{bottom:563.023441pt;}
.y21{bottom:563.073891pt;}
.y265{bottom:564.542969pt;}
.y198{bottom:565.796224pt;}
.yc0{bottom:566.494788pt;}
.yf4{bottom:567.359374pt;}
.y22b{bottom:569.028641pt;}
.y1c4{bottom:575.094397pt;}
.y1ec{bottom:575.094412pt;}
.y11d{bottom:575.825521pt;}
.y165{bottom:577.432813pt;}
.ya4{bottom:581.224614pt;}
.y43{bottom:581.661454pt;}
.ydd{bottom:581.690108pt;}
.y17d{bottom:582.284894pt;}
.y20{bottom:583.939131pt;}
.y6f{bottom:586.558267pt;}
.y213{bottom:588.259116pt;}
.y255{bottom:590.622920pt;}
.y197{bottom:591.094397pt;}
.y13a{bottom:592.557294pt;}
.y23a{bottom:593.822921pt;}
.y5a{bottom:593.892574pt;}
.y14c{bottom:594.026041pt;}
.ybf{bottom:594.092454pt;}
.y22a{bottom:596.625001pt;}
.y1c3{bottom:600.391277pt;}
.y1eb{bottom:600.391292pt;}
.y203{bottom:601.765628pt;}
.y1f{bottom:604.804358pt;}
.yf3{bottom:608.290361pt;}
.ya3{bottom:608.822267pt;}
.ydc{bottom:609.287761pt;}
.y11c{bottom:611.421880pt;}
.y6e{bottom:614.155921pt;}
.y164{bottom:614.230467pt;}
.y196{bottom:616.391277pt;}
.y139{bottom:620.154948pt;}
.y17c{bottom:620.615880pt;}
.y239{bottom:621.419787pt;}
.y59{bottom:621.490241pt;}
.y14b{bottom:621.623694pt;}
.ybe{bottom:621.690108pt;}
.y8a{bottom:622.156254pt;}
.y42{bottom:623.057947pt;}
.y229{bottom:624.223961pt;}
.y1e{bottom:625.669598pt;}
.y1c2{bottom:625.690744pt;}
.y1ea{bottom:625.690759pt;}
.y2{bottom:628.074499pt;}
.y254{bottom:629.419267pt;}
.yf2{bottom:635.888014pt;}
.ya2{bottom:636.419921pt;}
.ydb{bottom:636.885414pt;}
.y195{bottom:641.689451pt;}
.y6d{bottom:641.753574pt;}
.y1d{bottom:646.534825pt;}
.y138{bottom:647.752601pt;}
.y58{bottom:649.087894pt;}
.y14a{bottom:649.221347pt;}
.ybd{bottom:649.287761pt;}
.y89{bottom:649.753908pt;}
.y41{bottom:650.655441pt;}
.y1c1{bottom:650.987624pt;}
.y1e9{bottom:650.987639pt;}
.y228{bottom:651.820308pt;}
.y253{bottom:657.016147pt;}
.y163{bottom:657.927081pt;}
.y238{bottom:660.216148pt;}
.y11b{bottom:663.020827pt;}
.yf1{bottom:663.485681pt;}
.y194{bottom:666.986329pt;}
.y1c{bottom:667.400065pt;}
.y6c{bottom:669.351241pt;}
.y17b{bottom:672.213547pt;}
.y137{bottom:675.350254pt;}
.y1c0{bottom:676.285797pt;}
.y1e8{bottom:676.285812pt;}
.y57{bottom:676.685547pt;}
.y149{bottom:676.819014pt;}
.y88{bottom:677.351561pt;}
.ya1{bottom:677.816401pt;}
.y40{bottom:678.253094pt;}
.y227{bottom:679.419267pt;}
.y162{bottom:685.525253pt;}
.y237{bottom:687.815107pt;}
.y1b{bottom:688.265305pt;}
.y11a{bottom:690.617188pt;}
.ybc{bottom:690.684241pt;}
.yf0{bottom:691.083334pt;}
.yda{bottom:691.615881pt;}
.y193{bottom:692.285809pt;}
.y252{bottom:695.815107pt;}
.y1{bottom:696.551717pt;}
.y6b{bottom:696.948894pt;}
.y17a{bottom:699.810413pt;}
.y1bf{bottom:701.582677pt;}
.y136{bottom:702.947921pt;}
.y56{bottom:704.283201pt;}
.y87{bottom:704.949214pt;}
.ya0{bottom:705.414067pt;}
.y3f{bottom:705.850747pt;}
.y226{bottom:707.015628pt;}
.y1a{bottom:709.130531pt;}
.y236{bottom:715.414067pt;}
.y192{bottom:717.582684pt;}
.y119{bottom:718.216148pt;}
.ybb{bottom:718.281907pt;}
.yd9{bottom:719.213547pt;}
.y161{bottom:722.322921pt;}
.y251{bottom:723.414067pt;}
.y6a{bottom:724.546547pt;}
.y1be{bottom:726.880851pt;}
.y19{bottom:729.995771pt;}
.y135{bottom:730.545574pt;}
.yef{bottom:732.014321pt;}
.y86{bottom:732.546881pt;}
.y9f{bottom:733.011721pt;}
.y225{bottom:734.612493pt;}
.y179{bottom:736.609893pt;}
.y191{bottom:742.882163pt;}
.y235{bottom:743.010933pt;}
.y55{bottom:745.679681pt;}
.y118{bottom:745.812494pt;}
.yba{bottom:745.879561pt;}
.yd8{bottom:746.811201pt;}
.y3e{bottom:747.313801pt;}
.y18{bottom:750.860998pt;}
.y250{bottom:751.010414pt;}
.y69{bottom:752.144201pt;}
.y1bd{bottom:752.177729pt;}
.yee{bottom:759.611974pt;}
.y85{bottom:760.144534pt;}
.y9e{bottom:760.609374pt;}
.y160{bottom:763.718747pt;}
.y10d{bottom:764.211453pt;}
.y1e4{bottom:765.319005pt;}
.y190{bottom:768.179039pt;}
.y17{bottom:771.726238pt;}
.y54{bottom:773.277347pt;}
.y178{bottom:773.406773pt;}
.y117{bottom:773.411454pt;}
.yb9{bottom:773.477214pt;}
.yd7{bottom:774.408854pt;}
.y3d{bottom:774.911454pt;}
.y1bc{bottom:777.477209pt;}
.y24f{bottom:778.609893pt;}
.y134{bottom:781.141921pt;}
.y234{bottom:781.809894pt;}
.y1e3{bottom:783.717443pt;}
.yed{bottom:787.209641pt;}
.y84{bottom:787.742188pt;}
.y9d{bottom:788.207027pt;}
.y15f{bottom:791.317707pt;}
.y16{bottom:792.591465pt;}
.y68{bottom:793.075521pt;}
.y53{bottom:800.875001pt;}
.y10c{bottom:801.007814pt;}
.yd6{bottom:802.006507pt;}
.y3c{bottom:802.509174pt;}
.y1bb{bottom:802.774084pt;}
.y133{bottom:808.740107pt;}
.y233{bottom:809.406254pt;}
.y177{bottom:810.203640pt;}
.y15{bottom:813.456705pt;}
.yec{bottom:814.807294pt;}
.yb8{bottom:814.873694pt;}
.y83{bottom:815.339841pt;}
.y9c{bottom:815.804681pt;}
.y1db{bottom:817.115885pt;}
.y24e{bottom:817.406254pt;}
.y15e{bottom:818.914067pt;}
.y67{bottom:820.673174pt;}
.y1ba{bottom:828.073563pt;}
.y52{bottom:828.472654pt;}
.y10b{bottom:828.606774pt;}
.y3b{bottom:830.173508pt;}
.y14{bottom:834.321945pt;}
.y232{bottom:837.003120pt;}
.yeb{bottom:842.404947pt;}
.yb7{bottom:842.471347pt;}
.y82{bottom:842.937494pt;}
.y9b{bottom:843.402347pt;}
.y24d{bottom:845.005214pt;}
.y132{bottom:845.536454pt;}
.y15d{bottom:846.513014pt;}
.y176{bottom:847.001827pt;}
.y66{bottom:848.270827pt;}
.y1b9{bottom:853.370439pt;}
.y13{bottom:855.187171pt;}
.y10a{bottom:856.203121pt;}
.yea{bottom:870.002601pt;}
.yb6{bottom:870.069667pt;}
.y81{bottom:870.535161pt;}
.y9a{bottom:871.000001pt;}
.y24c{bottom:872.601561pt;}
.y15c{bottom:874.109374pt;}
.y231{bottom:875.802081pt;}
.y65{bottom:875.868494pt;}
.y12{bottom:876.052411pt;}
.y51{bottom:883.667974pt;}
.y175{bottom:883.798697pt;}
.y109{bottom:883.802081pt;}
.y3a{bottom:885.368815pt;}
.y11{bottom:896.917561pt;}
.y116{bottom:897.600261pt;}
.yb5{bottom:897.667318pt;}
.y80{bottom:898.132813pt;}
.y24b{bottom:900.200521pt;}
.y230{bottom:903.398437pt;}
.y64{bottom:903.466146pt;}
.y99{bottom:903.931642pt;}
.y131{bottom:904.499999pt;}
.y50{bottom:911.265690pt;}
.y108{bottom:911.398437pt;}
.ye9{bottom:911.399089pt;}
.y39{bottom:912.966537pt;}
.y15b{bottom:914.997395pt;}
.y10{bottom:917.782795pt;}
.y174{bottom:920.596875pt;}
.y115{bottom:925.197917pt;}
.yb4{bottom:925.264974pt;}
.y24a{bottom:927.797395pt;}
.y22f{bottom:930.997395pt;}
.y63{bottom:931.063802pt;}
.y130{bottom:932.097657pt;}
.yf{bottom:938.648030pt;}
.ye8{bottom:938.996745pt;}
.y107{bottom:938.997395pt;}
.yd5{bottom:939.063152pt;}
.y7f{bottom:939.063802pt;}
.y25d{bottom:949.033854pt;}
.y173{bottom:957.393749pt;}
.y22e{bottom:958.593750pt;}
.y62{bottom:958.661458pt;}
.y12f{bottom:959.695313pt;}
.y106{bottom:966.593750pt;}
.ye7{bottom:966.594401pt;}
.yd4{bottom:966.660807pt;}
.y4f{bottom:966.661458pt;}
.y38{bottom:968.228515pt;}
.ye{bottom:978.759408pt;}
.y12e{bottom:987.292969pt;}
.ye6{bottom:994.192057pt;}
.y105{bottom:994.192709pt;}
.y266{bottom:994.195313pt;}
.yd3{bottom:994.258464pt;}
.y4e{bottom:994.259114pt;}
.y37{bottom:995.826302pt;}
.ye3{bottom:1009.199869pt;}
.y102{bottom:1009.200521pt;}
.y262{bottom:1009.203125pt;}
.yd0{bottom:1009.266276pt;}
.y4b{bottom:1009.266927pt;}
.yb{bottom:1028.200032pt;}
.y34{bottom:1028.200195pt;}
.h15{height:32.398437pt;}
.h11{height:47.604165pt;}
.h1f{height:47.812499pt;}
.h1c{height:50.796875pt;}
.h6{height:52.364585pt;}
.h9{height:52.593751pt;}
.h8{height:53.080730pt;}
.hd{height:57.375000pt;}
.hc{height:57.906250pt;}
.h7{height:67.557289pt;}
.h1{height:76.500002pt;}
.h4{height:86.062500pt;}
.h18{height:87.593751pt;}
.h19{height:89.894531pt;}
.h21{height:94.130213pt;}
.h13{height:94.132813pt;}
.ha{height:94.133133pt;}
.hf{height:94.199867pt;}
.hb{height:94.466472pt;}
.h5{height:94.466635pt;}
.h2{height:95.624998pt;}
.h3{height:100.406250pt;}
.he{height:113.399740pt;}
.h10{height:113.400391pt;}
.h20{height:113.463541pt;}
.h14{height:113.466145pt;}
.h12{height:113.466797pt;}
.h16{height:131.191407pt;}
.h1b{height:191.084636pt;}
.h1e{height:406.434893pt;}
.h1d{height:697.042973pt;}
.h17{height:788.936200pt;}
.h1a{height:874.127600pt;}
.h0{height:1122.666667pt;}
.w2{width:127.999980pt;}
.w3{width:199.000000pt;}
.w4{width:245.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x18{left:6.000000pt;}
.x1c{left:19.000000pt;}
.x1b{left:30.000000pt;}
.xe{left:85.400004pt;}
.x4{left:113.610163pt;}
.x10{left:120.400004pt;}
.xf{left:122.290629pt;}
.x8{left:128.019541pt;}
.xb{left:137.400004pt;}
.x11{left:144.400004pt;}
.x17{left:151.400004pt;}
.xc{left:161.400004pt;}
.x12{left:168.400004pt;}
.x13{left:184.806773pt;}
.x5{left:208.513484pt;}
.x2{left:222.016375pt;}
.x19{left:243.399987pt;}
.x9{left:248.125010pt;}
.x3{left:270.910029pt;}
.x1{left:304.378134pt;}
.x6{left:310.785164pt;}
.x7{left:314.277354pt;}
.x15{left:323.935814pt;}
.x23{left:380.518934pt;}
.x21{left:384.221934pt;}
.x20{left:386.073404pt;}
.x1f{left:388.693154pt;}
.x22{left:389.776404pt;}
.x1d{left:415.807504pt;}
.xa{left:421.480474pt;}
.x25{left:423.884474pt;}
.x1a{left:443.399987pt;}
.x24{left:461.673164pt;}
.x1e{left:521.736274pt;}
.x14{left:663.998574pt;}
.x16{left:665.087134pt;}
.xd{left:672.149694pt;}
}




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