/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */

.ff0{font-family:sans-serif;visibility:hidden;}
.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;}
.ff2{font-family:ff2;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;}
.ff3{font-family:ff3;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,0),0 0.015em rgb(255,255,0),0.015em 0 rgb(255,255,0),0 -0.015em  rgb(255,255,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-12.192000px;}
._a{margin-left:-10.271800px;}
._e{margin-left:-8.984000px;}
._1{margin-left:-7.335200px;}
._2{margin-left:-5.788000px;}
._c{margin-left:-4.520000px;}
._3{margin-left:-2.691200px;}
._0{margin-left:-1.066000px;}
._4{width:1.035400px;}
._5{width:2.072600px;}
._9{width:3.096600px;}
._7{width:4.417400px;}
._10{width:5.485600px;}
._8{width:6.517600px;}
._b{width:7.952000px;}
._f{width:9.167800px;}
._6{width:36.541800px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(255,192,0);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:72.000000px;}
.fs0{font-size:80.200000px;}
.fs5{font-size:87.800000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:111.800000px;}
.fs4{font-size:128.200000px;}
.fs3{font-size:144.000000px;}
.y1{bottom:-101.550000px;}
.y0{bottom:0.000000px;}
.y47{bottom:28.100000px;}
.y57{bottom:33.700000px;}
.y3b{bottom:36.450000px;}
.y1b{bottom:45.650000px;}
.y64{bottom:46.100000px;}
.ye{bottom:52.850000px;}
.y58{bottom:57.896000px;}
.y25{bottom:63.750000px;}
.y46{bottom:66.500000px;}
.y1a{bottom:69.300000px;}
.y3a{bottom:72.500000px;}
.yd{bottom:74.850000px;}
.y63{bottom:84.500000px;}
.y56{bottom:90.850000px;}
.yc{bottom:98.850000px;}
.y2f{bottom:99.739000px;}
.y19{bottom:102.900000px;}
.y45{bottom:104.900000px;}
.y24{bottom:106.950000px;}
.y39{bottom:110.900000px;}
.y55{bottom:117.250000px;}
.yb{bottom:122.850000px;}
.y62{bottom:122.900000px;}
.y18{bottom:136.500000px;}
.y2e{bottom:138.139000px;}
.y44{bottom:143.300000px;}
.y54{bottom:143.650000px;}
.ya{bottom:146.850000px;}
.y38{bottom:149.300000px;}
.y23{bottom:150.150000px;}
.y61{bottom:161.300000px;}
.y53{bottom:170.050000px;}
.y17{bottom:170.100000px;}
.y2d{bottom:176.539000px;}
.y43{bottom:181.700000px;}
.y37{bottom:187.700000px;}
.y22{bottom:193.350000px;}
.y9{bottom:194.850000px;}
.y52{bottom:196.450000px;}
.y60{bottom:199.700000px;}
.y16{bottom:203.700000px;}
.y2c{bottom:214.939000px;}
.y8{bottom:218.850000px;}
.y42{bottom:220.100000px;}
.y51{bottom:222.850000px;}
.y36{bottom:226.100000px;}
.y21{bottom:236.550000px;}
.y15{bottom:237.300000px;}
.y5f{bottom:238.100000px;}
.y7{bottom:242.850000px;}
.y50{bottom:249.250000px;}
.y2b{bottom:253.339000px;}
.y41{bottom:258.500000px;}
.y35{bottom:264.500000px;}
.y14{bottom:270.900000px;}
.y4f{bottom:275.650000px;}
.y5e{bottom:276.500000px;}
.y20{bottom:279.750000px;}
.y6{bottom:290.850000px;}
.y2a{bottom:291.739000px;}
.y40{bottom:296.900000px;}
.y4e{bottom:302.050000px;}
.y34{bottom:302.900000px;}
.y13{bottom:304.500000px;}
.y5d{bottom:314.900000px;}
.y1f{bottom:322.950000px;}
.y4d{bottom:328.450000px;}
.y29{bottom:330.139000px;}
.y3f{bottom:335.300000px;}
.y12{bottom:338.100000px;}
.y5{bottom:338.850000px;}
.y33{bottom:341.300000px;}
.y5c{bottom:353.300000px;}
.y4c{bottom:354.850000px;}
.y1e{bottom:366.150000px;}
.y28{bottom:368.539000px;}
.y3e{bottom:373.700000px;}
.y32{bottom:379.700000px;}
.y4b{bottom:381.250000px;}
.y4{bottom:386.850000px;}
.y5b{bottom:391.700000px;}
.y11{bottom:393.300000px;}
.y27{bottom:406.939000px;}
.y4a{bottom:407.650000px;}
.y1d{bottom:409.350000px;}
.y3{bottom:410.850000px;}
.y3d{bottom:412.100000px;}
.y31{bottom:418.100000px;}
.y10{bottom:426.900000px;}
.y5a{bottom:430.100000px;}
.y49{bottom:434.050000px;}
.y2{bottom:436.500000px;}
.y26{bottom:445.339000px;}
.y3c{bottom:450.500000px;}
.y1c{bottom:452.550000px;}
.y30{bottom:456.500000px;}
.y48{bottom:460.450000px;}
.yf{bottom:460.500000px;}
.y59{bottom:468.500000px;}
.h3{height:52.417969px;}
.h1{height:58.387793px;}
.h6{height:63.920801px;}
.h7{height:69.890625px;}
.h2{height:81.393457px;}
.h5{height:93.333105px;}
.h4{height:104.835938px;}
.h0{height:540.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:49.200000px;}
.x8{left:55.200000px;}
.x6{left:61.200000px;}
.x7{left:67.200000px;}
.xa{left:73.200000px;}
.x5{left:76.200000px;}
.x2{left:79.200000px;}
.x1{left:85.200000px;}
.x3{left:106.200000px;}
.x9{left:133.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-16.256000pt;}
._a{margin-left:-13.695733pt;}
._e{margin-left:-11.978667pt;}
._1{margin-left:-9.780267pt;}
._2{margin-left:-7.717333pt;}
._c{margin-left:-6.026667pt;}
._3{margin-left:-3.588267pt;}
._0{margin-left:-1.421333pt;}
._4{width:1.380533pt;}
._5{width:2.763467pt;}
._9{width:4.128800pt;}
._7{width:5.889867pt;}
._10{width:7.314133pt;}
._8{width:8.690133pt;}
._b{width:10.602667pt;}
._f{width:12.223733pt;}
._6{width:48.722400pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:106.933333pt;}
.fs5{font-size:117.066667pt;}
.fs6{font-size:128.000000pt;}
.fs1{font-size:149.066667pt;}
.fs4{font-size:170.933333pt;}
.fs3{font-size:192.000000pt;}
.y1{bottom:-135.400000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:37.466667pt;}
.y57{bottom:44.933333pt;}
.y3b{bottom:48.600000pt;}
.y1b{bottom:60.866667pt;}
.y64{bottom:61.466667pt;}
.ye{bottom:70.466667pt;}
.y58{bottom:77.194667pt;}
.y25{bottom:85.000000pt;}
.y46{bottom:88.666667pt;}
.y1a{bottom:92.400000pt;}
.y3a{bottom:96.666667pt;}
.yd{bottom:99.800000pt;}
.y63{bottom:112.666667pt;}
.y56{bottom:121.133333pt;}
.yc{bottom:131.800000pt;}
.y2f{bottom:132.985333pt;}
.y19{bottom:137.200000pt;}
.y45{bottom:139.866667pt;}
.y24{bottom:142.600000pt;}
.y39{bottom:147.866667pt;}
.y55{bottom:156.333333pt;}
.yb{bottom:163.800000pt;}
.y62{bottom:163.866667pt;}
.y18{bottom:182.000000pt;}
.y2e{bottom:184.185333pt;}
.y44{bottom:191.066667pt;}
.y54{bottom:191.533333pt;}
.ya{bottom:195.800000pt;}
.y38{bottom:199.066667pt;}
.y23{bottom:200.200000pt;}
.y61{bottom:215.066667pt;}
.y53{bottom:226.733333pt;}
.y17{bottom:226.800000pt;}
.y2d{bottom:235.385333pt;}
.y43{bottom:242.266667pt;}
.y37{bottom:250.266667pt;}
.y22{bottom:257.800000pt;}
.y9{bottom:259.800000pt;}
.y52{bottom:261.933333pt;}
.y60{bottom:266.266667pt;}
.y16{bottom:271.600000pt;}
.y2c{bottom:286.585333pt;}
.y8{bottom:291.800000pt;}
.y42{bottom:293.466667pt;}
.y51{bottom:297.133333pt;}
.y36{bottom:301.466667pt;}
.y21{bottom:315.400000pt;}
.y15{bottom:316.400000pt;}
.y5f{bottom:317.466667pt;}
.y7{bottom:323.800000pt;}
.y50{bottom:332.333333pt;}
.y2b{bottom:337.785333pt;}
.y41{bottom:344.666667pt;}
.y35{bottom:352.666667pt;}
.y14{bottom:361.200000pt;}
.y4f{bottom:367.533333pt;}
.y5e{bottom:368.666667pt;}
.y20{bottom:373.000000pt;}
.y6{bottom:387.800000pt;}
.y2a{bottom:388.985333pt;}
.y40{bottom:395.866667pt;}
.y4e{bottom:402.733333pt;}
.y34{bottom:403.866667pt;}
.y13{bottom:406.000000pt;}
.y5d{bottom:419.866667pt;}
.y1f{bottom:430.600000pt;}
.y4d{bottom:437.933333pt;}
.y29{bottom:440.185333pt;}
.y3f{bottom:447.066667pt;}
.y12{bottom:450.800000pt;}
.y5{bottom:451.800000pt;}
.y33{bottom:455.066667pt;}
.y5c{bottom:471.066667pt;}
.y4c{bottom:473.133333pt;}
.y1e{bottom:488.200000pt;}
.y28{bottom:491.385333pt;}
.y3e{bottom:498.266667pt;}
.y32{bottom:506.266667pt;}
.y4b{bottom:508.333333pt;}
.y4{bottom:515.800000pt;}
.y5b{bottom:522.266667pt;}
.y11{bottom:524.400000pt;}
.y27{bottom:542.585333pt;}
.y4a{bottom:543.533333pt;}
.y1d{bottom:545.800000pt;}
.y3{bottom:547.800000pt;}
.y3d{bottom:549.466667pt;}
.y31{bottom:557.466667pt;}
.y10{bottom:569.200000pt;}
.y5a{bottom:573.466667pt;}
.y49{bottom:578.733333pt;}
.y2{bottom:582.000000pt;}
.y26{bottom:593.785333pt;}
.y3c{bottom:600.666667pt;}
.y1c{bottom:603.400000pt;}
.y30{bottom:608.666667pt;}
.y48{bottom:613.933333pt;}
.yf{bottom:614.000000pt;}
.y59{bottom:624.666667pt;}
.h3{height:69.890625pt;}
.h1{height:77.850391pt;}
.h6{height:85.227734pt;}
.h7{height:93.187500pt;}
.h2{height:108.524609pt;}
.h5{height:124.444141pt;}
.h4{height:139.781250pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:65.600000pt;}
.x8{left:73.600000pt;}
.x6{left:81.600000pt;}
.x7{left:89.600000pt;}
.xa{left:97.600000pt;}
.x5{left:101.600000pt;}
.x2{left:105.600000pt;}
.x1{left:113.600000pt;}
.x3{left:141.600000pt;}
.x9{left:177.600000pt;}
}

